:root {
    /* Telecom Industry Color Scheme - Based on typical telecom branding */
    --primary-color: #0052cc;
    /* Deep blue - Telecom trust */
    --secondary-color: #00a8ff;
    /* Bright blue - Communication */
    --accent-color: #7b61ff;
    /* Purple accent - Innovation */
    --dark-color: #0a2463;
    /* Navy blue - Professional */
    --light-color: #f8fafc;
    --gradient-primary: linear-gradient(135deg, #0052cc 0%, #00a8ff 100%);
    /* Blue gradient */
    --gradient-secondary: linear-gradient(135deg, #7b61ff 0%, #00a8ff 100%);
    /* Purple to blue */
    --gradient-accent: linear-gradient(135deg, #00a8ff 0%, #00d4ff 100%);
    /* Light blue gradient */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --bg-color: #f8fafc;
    --text-color: #334155;
    --card-bg: #ffffff;
    --footer-bg: #0a2463;
    --header-bg: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
}

.dark-mode {
    --bg-color: #0f172a;
    --text-color: #cbd5e1;
    --card-bg: #1e293b;
    --footer-bg: #020617;
    --header-bg: rgba(15, 23, 42, 0.95);
    --border-color: #334155;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dark-mode .hero-bg-image {
    background: linear-gradient(135deg, var(--bg-color) 0%, #1e293b 50%, #0f172a 100%);
}

.dark-mode .hero-badge {
    background: rgba(0, 168, 255, 0.15);
    border-color: rgba(0, 168, 255, 0.3);
    color: #38bdf8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--text-color);
}

.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* Dark/Light Mode Toggle */
.theme-toggle {
    position: fixed;
    top: 120px;
    right: 20px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    border: none;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: rotate(30deg) scale(1.1);
}

/* Custom Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-top {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-voice {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: -5px;
}

.logo-telecom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark-color);
    letter-spacing: 1px;
    margin-top: -3px;
}

.dark-mode .logo-telecom {
    color: #cbd5e1;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Modern Header */
.header-nav {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.header-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

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

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

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

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

.nav-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-left: 10px;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-color) 0%, #eef5ff 50%, #f0f9ff 100%);
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 70% 40% at 90% 10%, rgba(0, 168, 255, 0.12), transparent),
        radial-gradient(ellipse 60% 35% at 10% 80%, rgba(123, 97, 255, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 70% 90%, rgba(0, 82, 204, 0.08), transparent);
    z-index: 1;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 82, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    z-index: 1;
    animation: heroShapeFloat 15s ease-in-out infinite;
}

.hero-bg-shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -200px;
    right: -100px;
}

.hero-bg-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.hero-bg-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    opacity: 0.2;
    animation-delay: -10s;
    animation-name: heroShapeFloatCenter;
}

@keyframes heroShapeFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.95);
    }
}

@keyframes heroShapeFloatCenter {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    33% {
        transform: translate(calc(-50% + 20px), calc(-50% - 15px)) scale(1.08);
    }

    66% {
        transform: translate(calc(-50% - 15px), calc(-50% + 10px)) scale(0.92);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(0, 82, 204, 0.08);
    border: 1px solid rgba(0, 82, 204, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    animation: heroBadgePulse 3s ease-in-out infinite;
}

.hero-badge i {
    animation: heroStarSpin 4s ease-in-out infinite;
}

@keyframes heroBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes heroStarSpin {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(8deg);
    }
}

.hero-title {
    font-size: 3.25rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #0052cc, #00a8ff, #7b61ff, #00a8ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroTitleGradient 8s ease infinite;
}

@keyframes heroTitleGradient {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-hero-primary {
    padding: 14px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 82, 204, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 82, 204, 0.4);
    color: white !important;
}

.btn-hero-primary .bi-arrow-right {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .bi-arrow-right {
    transform: translateX(4px);
}

.btn-hero-outline {
    padding: 14px 28px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: var(--primary-color) !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
}

.btn-hero-outline .bi-play-circle {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-hero-outline:hover .bi-play-circle {
    transform: scale(1.15);
}

.hero-stats {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-4px);
}

.hero-stat:hover .hero-stat-number {
    animation: heroStatPulse 0.5s ease;
}

@keyframes heroStatPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    display: inline-block;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

/* Hero Image */
.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    animation: heroImageFloat 6s ease-in-out infinite;
}

.hero-image-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.15), rgba(123, 97, 255, 0.1));
    border-radius: 24px;
    filter: blur(40px);
    opacity: 0.8;
    animation: heroGlowPulse 4s ease-in-out infinite;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image-wrapper:hover .hero-image-frame {
    transform: scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 82, 204, 0.25);
}

.hero-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-image-frame img {
    transform: scale(1.05);
}

@keyframes heroImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes heroGlowPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hero-image-container {
    position: relative;
    z-index: 3;
}

.hero-image {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    overflow: hidden;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.floating-element {
    animation: floating 6s ease-in-out infinite;
}

/* Telecom-themed Card Animations */
.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-secondary);
}

.service-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card .card-text {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
}

.service-card .card-list {
    list-style: none;
    padding: 0;
}

.service-card .card-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

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

/* Telecom Feature Cards */
.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--border-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    color: white;
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-text {
    color: white;
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.feature-card .feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.feature-card .feature-text {
    color: var(--text-color);
    opacity: 0.8;
    transition: color 0.5s ease;
}

/* Stats Section with Telecom Colors */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -150px;
    right: -150px;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -100px;
    left: -100px;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Telecom Team Cards */
.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.team-card .team-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-card .team-content {
    padding: 25px 20px;
}

.team-card .team-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-card .team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.team-card .team-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.team-card .team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, color-mix(in srgb, var(--bg-color) 90%, #000) 100%);
}

.contact-form-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--card-bg);
    color: var(--text-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-control::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

/* Telecom Footer */
.main-footer {
    background: var(--footer-bg);
    color: #cbd5e1;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.footer-wave .shape-fill {
    fill: var(--bg-color);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-bottom: 20px;
}

.footer-logo-top {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(90deg, #00a8ff, #7b61ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo-voice {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    background: linear-gradient(90deg, #7b61ff, #00a8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: -10px;
}

.footer-logo-telecom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 1px;
    margin-top: -5px;
}

.footer-about {
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

.footer-newsletter .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.footer-newsletter .form-control {
    border-radius: 50px 0 0 50px;
    border: none;
    padding-left: 20px;
    background-color: #1e293b;
    color: white;
}

.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    background: var(--gradient-primary);
    border: none;
    padding: 12px 25px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    color: #94a3b8;
}

/* Call Button - Telecom Style */
.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    z-index: 1000;
    box-shadow: var(--shadow-xl);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 82, 204, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 204, 0);
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

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

.section-title p {
    color: var(--text-color);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Telecom Progress Bar Animation */
.progress-section {
    padding: 80px 0;
    background: var(--card-bg);
}

.progress-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.skill-item {
    margin-bottom: 30px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name span {
    font-weight: 600;
    color: var(--text-color);
}

.skill-bar {
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.skill-per {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 5px;
    position: relative;
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* Telecom-themed gradient text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    .theme-toggle {
        top: 90px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .logo-top {
        font-size: 1.5rem;
    }

    .logo-voice {
        font-size: 1.8rem;
    }

    .logo-telecom {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }
}


/* Projects Section - Service Cards Style */
.project-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.project-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, rgba(0, 82, 204, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    transition: height 0.4s ease;
    z-index: -1;
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.project-card:hover::before {
    height: 100%;
}

.project-logo {
    height: 65px;
    width: auto;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left center;
}

.project-card:hover .project-logo {
    transform: scale(1.1);
}

.project-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.project-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e2e8f0;
    transition: width 0.3s ease, background-color 0.3s ease;
    border-radius: 2px;
}

.project-card:hover .project-title::after {
    width: 100%;
}

.project-card:hover .title-du::after {
    background-color: #00add5;
}

.project-card:hover .title-etisalat::after {
    background-color: #719e19;
}

.title-du {
    color: #00add5;
}

.title-etisalat {
    color: #719e19;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.project-list li:hover {
    transform: translateX(5px);
}

.project-list li i {
    margin-right: 12px;
    font-size: 1.2rem;
    margin-top: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover .project-list li i {
    transform: scale(1.2);
}

.icon-du {
    color: #00add5;
}

.icon-etisalat {
    color: #719e19;
}