/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #f4d03f;
    --text-color: #333;
    --light-text: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a2e;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Decorative Elements */
.decorative-circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.circle-bg:nth-child(1) {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-bg:nth-child(2) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-color) 0%, transparent 70%);
    bottom: 20%;
    left: -50px;
    animation-delay: -5s;
}

.circle-bg:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Hexagon Decorations */
.hexagon-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.hexagon {
    position: relative;
    width: 120px;
    height: 138px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hexagon:hover {
    transform: scale(1.1);
}

.hexagon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hexagon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3) 0%, rgba(244, 208, 63, 0.3) 100%);
    z-index: 1;
}

.hexagon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px solid var(--gold-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    z-index: 2;
}

/* Circular Image Decorations */
.circle-image-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.circle-image {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(244, 208, 63, 0.4);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, rgba(244, 208, 63, 0.2) 100%);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Navbar */
.header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid var(--gold-color);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: #63b3ed;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 26, 46, 0.85), rgba(22, 33, 62, 0.85)), url('assets/images/img1.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    padding: 2rem;
    color: var(--light-text);
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
    background: #9b2c2c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 48, 48, 0.3);
}

.hero-image {
    display: none;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-alt {
    background: var(--bg-light);
}

/* Full Background Sections */
.section-hero-bg {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.section-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
}

.section-hero-bg .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--light-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gold-color);
    margin-bottom: 3rem;
    font-weight: 500;
}

/* About Section */
.about-section {
    background: linear-gradient(rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9)), url('assets/images/img2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: white;
}

.about-image {
    display: none;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission and Vision */
.mv-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--light-text);
}

.mv-section .section-title {
    color: var(--light-text);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid rgba(244, 208, 63, 0.3);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold-color);
}

.mv-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.mv-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Values */
.values-section {
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95)), url('assets/images/img3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.values-section .section-title {
    color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid rgba(244, 208, 63, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--gold-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Services */
.services-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.services-section .section-title,
.services-section .section-subtitle {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.service-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: #555;
    margin-bottom: 1.5rem;
}

.service-btn {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.service-btn:hover {
    background: var(--primary-color);
}

/* Digital Section */
.digital-section {
    background: #0f172a; /* Slate 900 for premium dark mode digital look */
    color: white;
    padding: 6rem 0;
}

.digital-section .section-title {
    color: white;
}

.digital-section .section-subtitle {
    color: #94a3b8; /* Slate 400 */
}

.digital-slider-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 3rem;
    min-height: 500px;
}

.digital-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.digital-tab {
    padding: 1.25rem 1.5rem;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-size: cover;
    background-position: center;
}

.digital-tab i {
    font-size: 1.2rem;
    color: #64748b;
    transition: color 0.3s;
}

.digital-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateX(5px);
}

.digital-tab.active {
    color: #38bdf8; /* Light blue accent */
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.digital-tab.active i {
    color: #38bdf8;
}

.digital-slide-content {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 500px;
}

.digital-slide-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 3rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1;
}

.digital-slide-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Glassmorphism card matching modern UI/UX and prodigra.mx */
.digital-glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem;
    border-radius: 16px;
    max-width: 550px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.digital-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.digital-glass-card h3 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.digital-glass-card p {
    color: #cbd5e1; /* Slate 300 */
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.digital-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #e2e8f0; /* Slate 200 */
    font-weight: 500;
}

.feature-tag i {
    color: #38bdf8;
    font-size: 1rem;
}

/* Responsive Digital */
@media (max-width: 992px) {
    .digital-slider-container {
        grid-template-columns: 1fr;
    }
    
    .digital-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .digital-tab {
        white-space: nowrap;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .digital-slide-pane {
        padding: 1.5rem;
    }
    
    .digital-glass-card {
        padding: 2rem 1.5rem;
    }
    
    .digital-glass-card h3 {
        font-size: 1.75rem;
    }
    
    .digital-features {
        grid-template-columns: 1fr;
    }
}

/* Commitment */
.commitment-section {
    background: linear-gradient(rgba(44, 82, 130, 0.95), rgba(44, 82, 130, 0.95)), url('assets/images/img4.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.commitment-section .section-title {
    color: white;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.commitment-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: white;
}

.commitment-list i {
    color: #4fd1c5;
}

.commitment-image {
    display: none;
}

.commitment-list {
    list-style: none;
    margin-top: 1rem;
}

.commitment-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.commitment-list i {
    color: var(--accent-color);
}

.commitment-image {
    display: flex;
    justify-content: center;
}

.commitment-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Infrastructure Gallery */
.infrastructure-section {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.infrastructure-section .section-title,
.infrastructure-section .section-subtitle {
    color: white;
}

.infrastructure-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.15);
}

/* Clients */
.clients-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), url('assets/images/img5.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.clients-carousel {
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-wrapper {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.client-logo-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-logo-svg {
    width: 80px;
    height: 80px;
    transition: var(--transition);
}

.client-logo-wrapper:hover .client-logo-svg {
    stroke: var(--secondary-color);
    fill: var(--secondary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Certifications */
.certifications-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.certifications-section .section-title {
    color: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cert-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cert-card p {
    color: #666;
}

.cert-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cert-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cert-card p {
    color: #666;
}

/* Contact */
.contact-section {
    background: linear-gradient(rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.95)), url('assets/images/img6.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.contact-section .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-item p {
    font-size: 1.1rem;
    color: white;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--gold-color);
    color: var(--bg-dark);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-color);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #9b2c2c;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
}

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

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

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: #63b3ed;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-body h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        background-position: center center;
        background-size: cover;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .infrastructure-gallery {
        grid-template-columns: 1fr;
    }

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

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

    .about-content,
    .commitment-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .mv-grid,
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    /* Decorative elements responsive */
    .circle-bg {
        opacity: 0.05;
    }

    .circle-bg:nth-child(1) {
        width: 200px;
        height: 200px;
    }

    .circle-bg:nth-child(2) {
        width: 150px;
        height: 150px;
    }

    .circle-bg:nth-child(3) {
        width: 120px;
        height: 120px;
    }

    /* Hexagon container responsive */
    .hexagon-container {
        gap: 10px;
    }

    .hexagon {
        width: 80px;
        height: 92px;
    }

    /* Circle image container responsive */
    .circle-image-container {
        gap: 15px;
    }

    .circle-image {
        width: 100px;
        height: 100px;
    }

    /* Digital section responsive */
    .digital-slider-container {
        flex-direction: column;
    }

    .digital-tabs {
        flex-direction: column;
        overflow-y: auto;
        max-height: 400px;
        padding-right: 10px;
    }

    .digital-tab {
        min-width: 100%;
        padding: 1rem;
        font-size: 0.9rem;
        background-size: cover !important;
        background-position: center !important;
    }

    .digital-tab span {
        flex-direction: row;
        font-size: 0.9rem;
        justify-content: center;
    }

    .digital-tab i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Extra small screen adjustments */
    .hexagon-container {
        gap: 5px;
    }

    .hexagon {
        width: 60px;
        height: 69px;
    }

    .circle-image-container {
        gap: 10px;
    }

    .circle-image {
        width: 80px;
        height: 80px;
    }

    .digital-tab {
        min-width: 100px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .digital-tab span {
        font-size: 0.7rem;
    }
}
