/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #071c38;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =========================================
   CONTAINER
========================================= */

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

/* =========================================
   HEADER
========================================= */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    background: rgba(3, 21, 44, 0.95);

    backdrop-filter: blur(8px);

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 18px 8%;

    z-index: 1000;
}

.logo img {

    height: 60px;

    width: auto;
}

/* =========================================
   NAVBAR
========================================= */

.navbar ul {

    display: flex;

    gap: 30px;

    list-style: none;
}

.navbar a {

    color: white;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.navbar a:hover {

    color: #00d9ff;
}

/* =========================================
   HERO
========================================= */

.hero {

    position: relative;

    min-height: 100vh;

    background:
    linear-gradient(rgba(0,0,0,0.55),
    rgba(0,0,0,0.70)),
    url('images/Datacenter.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 120px 20px 80px;
}

.hero-content {

    max-width: 1000px;

    z-index: 2;
}

.hero-content h1 {

    font-size: 64px;

    margin-bottom: 25px;

    font-weight: 700;
}

.hero-content p {

    font-size: 22px;

    line-height: 1.8;

    margin-bottom: 35px;
}

/* =========================================
   PAGE HERO
========================================= */

.page-hero {

    background:
    linear-gradient(rgba(0,0,0,0.6),
    rgba(0,0,0,0.75)),
    url('images/Datacenter.jpg');

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    min-height: 60vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 140px 20px 80px;
}

.page-hero-content {

    max-width: 900px;
}

.page-hero-content h1 {

    font-size: 58px;

    margin-bottom: 25px;
}

.page-hero-content p {

    font-size: 22px;

    line-height: 1.8;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {

    margin-top: 30px;
}

.hero-buttons a {

    display: inline-block;

    padding: 14px 32px;

    margin: 10px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s ease;
}

.btn-primary {

    background: #00a8ff;

    color: white;
}

.btn-primary:hover {

    background: #0088cc;

    transform: translateY(-3px);
}

.btn-secondary {

    border: 2px solid white;

    color: white;
}

.btn-secondary:hover {

    background: white;

    color: #071c38;

    transform: translateY(-3px);
}

/* =========================================
   SECTION
========================================= */

section {

    padding: 90px 8%;
}

/* =========================================
   TITLES
========================================= */

.section-title {

    text-align: center;

    font-size: 52px;

    margin-bottom: 60px;

    color: white;
}

/* =========================================
   INDUSTRIES
========================================= */

.industries {

    background: #071c38;
}

.industries-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(250px, 1fr));

    gap: 25px;
}

.industry-box {

    background: #102b52;

    padding: 35px;

    border-radius: 15px;

    text-align: center;

    font-size: 22px;

    font-weight: bold;

    transition: 0.3s ease;
}

.industry-box:hover {

    transform: translateY(-8px);

    background: #12386d;
}

/* =========================================
   WHY US
========================================= */

.why-us {

    background: #03152c;
}

.why-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.why-card {

    background: #102b52;

    padding: 40px;

    border-radius: 20px;

    text-align: center;

    transition: 0.3s ease;
}

.why-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 0 20px rgba(0,191,255,0.25);
}

.why-card h3 {

    color: #00d9ff;

    margin-bottom: 20px;
}

/* =========================================
   TECHNOLOGIES
========================================= */

.tech-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;
}

.tech-card {

    background: #102b57;

    padding: 25px;

    border-radius: 12px;

    text-align: center;

    font-weight: bold;

    transition: 0.3s ease;
}

.tech-card:hover {

    transform: translateY(-6px);

    background: #16c0ff;

    color: #001b44;
}

/* =========================================
   PROJECTS & SERVICES
========================================= */

.projects-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

.project-card {

    background: #102b52;

    border-radius: 18px;

    overflow: hidden;

    transition: 0.3s ease;
}

.project-card:hover {

    transform: translateY(-8px);
}

.project-card img {

    width: 100%;

    height: 190px;

    object-fit: cover;

    display: block;
}

.project-content {

    padding: 25px;
}

.project-content h3 {

    color: #00d9ff;

    margin-bottom: 15px;
}

/* =========================================
   MAINTENANCE PLANS
========================================= */

.maintenance-plans {

    background: #021b44;

    text-align: center;
}

.plans-description {

    max-width: 900px;

    margin: auto auto 60px;

    color: #dce6f5;

    line-height: 1.8;
}

.plans-container {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.plan-card {

    background: #0b2c63;

    border-radius: 20px;

    padding: 40px 30px;

    text-align: left;

    transition: 0.3s ease;
}

.plan-card:hover {

    transform: translateY(-8px);
}

.plan-card h3 {

    color: #00d8ff;

    margin-bottom: 10px;
}

.plan-card h4 {

    margin-bottom: 20px;
}

.plan-card ul {

    list-style: none;
}

.plan-card ul li {

    margin-bottom: 15px;

    padding-bottom: 10px;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* =========================================
   ABOUT
========================================= */

.about {

    background: #0a2447;

    text-align: center;
}

.about p {

    max-width: 1000px;

    margin: auto;

    font-size: 22px;

    color: #d8e0ea;
}

/* =========================================
   CONTACT
========================================= */

.contact-simple {

    background: #0b1f3a;

    border-radius: 20px;

    text-align: center;

    max-width: 800px;

    margin: auto;
}

.contact-info-box {

    margin: 30px 0;
}

.contact-info-box a {

    color: #00d9ff;

    text-decoration: none;

    font-weight: bold;
}

.contact-btn,
.cta-btn {

    display: inline-block;

    background: #00cfff;

    color: #001b44;

    padding: 14px 30px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: bold;

    transition: 0.3s ease;
}

.contact-btn:hover,
.cta-btn:hover {

    background: white;

    transform: translateY(-4px);
}

/* =========================================
   CTA SECTION
========================================= */

.cta-section {

    background: #03152c;

    text-align: center;
}

.cta-section h2 {

    font-size: 48px;

    margin-bottom: 25px;
}

.cta-section p {

    max-width: 900px;

    margin: auto auto 35px;

    line-height: 1.8;

    color: #dce6f5;
}

/* =========================================
   FOOTER
========================================= */

.footer {

    background: #010b18;

    padding-top: 70px;
}

.footer-container {

    display: grid;

    grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

    gap: 40px;

    padding: 0 8% 50px;
}

.footer-box h3 {

    color: #00d9ff;

    margin-bottom: 20px;
}

.footer-box p,
.footer-box a {

    color: #d7e6ff;

    text-decoration: none;
}

.footer-box ul {

    list-style: none;
}

.footer-box ul li {

    margin-bottom: 12px;
}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;

    padding: 25px;

    color: #9bb7d7;
}

/* =========================================
   FADE IN
========================================= */

.fade-in {

    opacity: 1;

    transform: translateY(0);

    transition: 0.6s ease;
}

.fade-in.active {

    opacity: 1;

    transform: translateY(0);
}

/* =========================================
   TOP BUTTON
========================================= */

#topBtn {

    display: none;

    position: fixed;

    bottom: 30px;
    right: 30px;

    z-index: 999;

    border: none;

    background: #00d9ff;

    color: #03152c;

    cursor: pointer;

    padding: 15px 18px;

    border-radius: 50%;

    font-size: 22px;

    transition: 0.3s ease;
}

#topBtn:hover {

    background: white;

    transform: translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .header {

        flex-direction: column;

        gap: 15px;

        padding: 15px 20px;
    }

    .navbar ul {

        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .hero-content h1,
    .page-hero-content h1 {

        font-size: 38px;
    }

    .hero-content p,
    .page-hero-content p {

        font-size: 18px;
    }

    .section-title {

        font-size: 36px;
    }

    .hero-buttons a,
    .cta-btn {

        display: block;

        width: fit-content;

        margin: 15px auto;
    }

    section {

        padding: 80px 6%;
    }

    .project-card img {

        height: 180px;
    }
}