* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f4f6f9;
    color: #1a1a1a;
}

/* ---------- HERO ---------- */

.hero {
    min-height: 100vh;
    background: linear-gradient(
        rgba(10, 30, 68, 0.85),
        rgba(10, 30, 68, 0.85)
    ),
    url("https://images.unsplash.com/photo-1518770660439-4636190af475") center/cover no-repeat;
    color: white;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 40px 60px;
}

.nav-tabs a.active {
    border-bottom: 2px solid #0d6efd;
    opacity: 1;
}


/* ---------- SERVICES EXPANDED ---------- */

.services-expanded {
    background: #ffffff;
    padding: 90px 60px;
}

.services-expanded-container {
    max-width: 900px;
    margin: auto;
}

.services-expanded-container h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #0a1e44;
}

.services-expanded-container h3 {
    margin-top: 30px;
    font-size: 1.4rem;
    color: #0d6efd;
}

.services-expanded-container p {
    margin-top: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* ---------- SERVICE IMAGES ---------- */

.service-image {
    margin: 25px 0 30px;
}

.service-image img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.services-expanded-container h3:nth-of-type(even) + .service-image img {
    transform: translateX(20px);
}


/* ---------- TESTIMONIALS ---------- */

.testimonials {
    background: #f4f6f9;
    padding: 90px 60px;
}

.testimonials-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #0a1e44;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial span {
    font-weight: 600;
    color: #0d6efd;
}

/* ---------- NAV TABS ---------- */

.nav-tabs {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.nav-tabs a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, opacity 0.3s;
}

.nav-tabs a:hover {
    border-color: #0d6efd;
    opacity: 0.9;
}

.logo {
    height: 300px; /* Bigger logo */
}

/* ---------- LOGO BACKDROP ---------- */

.logo-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 14px 26px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    height: 240px; /* or whatever size you prefer */
    display: block;
    max-width: 100%;
    height: auto;
}

.hero-content {
    max-width: 900px;
    margin: 120px auto 0;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ---------- BUTTONS ---------- */

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.primary {
    background: #0d6efd;
    color: white;
}

.secondary {
    background: white;
    color: #0d6efd;
}

/* ---------- SERVICES ---------- */

.services {
    padding: 80px 60px;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    height: 360px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.service-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ---------- SERVICE BACKGROUND IMAGES ---------- */

.ai {
    background-image: url("https://cdn.pixabay.com/photo/2023/05/23/12/35/ai-generated-8012676_640.jpg");
}

.managed {
    background-image: url("https://imperiumdynamics.com/img/blog/white-label-managed-it-services-support-guide.jpg");
}

.onsite {
    background-image: url("https://cdn.pixabay.com/photo/2023/07/04/16/38/business-8106631_1280.png");
}

.network {
    background-image: url("https://cdn.pixabay.com/photo/2023/09/28/13/39/server-room-8281620_1280.png");
}

/* ---------- CONTACT ---------- */

.contact {
    padding: 80px 60px;
    background: #f4f6f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

.contact-form h2 {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-info h3 {
    margin-bottom: 20px;
}

/* ---------- ABOUT US SECTION ---------- */

.about-us {
    background: #f4f6f9;
    padding: 90px 60px;
}

.about-us-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-us-container h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a1e44;
}

.about-us-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* ---------- AI GROWTH SECTION ---------- */

.ai-growth {
    background: #ffffff;
    padding: 90px 60px;
}

.ai-growth-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.ai-growth-container h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a1e44;
}

.ai-growth-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* ---------- FOOTER ---------- */

footer {
    background: #0a1e44;
    color: white;
    text-align: center;
    padding: 20px;
}
