/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #44a2ff;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

header img {
    height: 60px;
    margin-right: 1rem;
}

header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 500;
}

/* Nav */
nav {
    display: flex;
    justify-content: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: 500;
}

nav a:hover {
    background-color: #0056b3;
}

/* Menu icon */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Hero */
/* .hero {
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 7rem 2rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
}

.cta-button {
    background-color: #0056b3;
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    font-weight: 500;
    display: inline-block;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background-color: #003366;
} */

/* Main content */
main {
    padding: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    background-color: #fff;
    padding: 2.5rem 3rem;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
  }
  .hero .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 64, 128, 0.366);
  }
  .hero-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
  }
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .cta-btn {
    background: #004080;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    margin: 0 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  .cta-btn.secondary { background: #00aaff; }
  .cta-btn:hover { background: #002d66; }
  
  /* About */
  .about {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
  }
  .about-container {
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .about-image img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Services Preview */
  .services-preview {
    padding: 4rem 2rem;
    text-align: center;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
  }
  .service-card:hover {
    transform: translateY(-5px);
  }
  .service-card i {
    font-size: 2rem;
    color: #004080;
    margin-bottom: 1rem;
  }
  .center-btn { margin-top: 2rem; }
  
  /* Values */
  .values {
    background: #f7f9fc;
    padding: 4rem 2rem;
    text-align: center;
  }
  .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  .value-box {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .value-box i {
    font-size: 2rem;
    color: #00aaff;
    margin-bottom: 0.8rem;
  }
  
  /* Network */
  .network {
    position: relative;
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
    background-size: cover;
    background-position: center;
  }
  .network .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
  }
  .network-content {
    position: relative;
    max-width: 800px;
    margin: auto;
    z-index: 2;
  }
  .network-content ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    gap: 1rem;
  }
  
  /* CTA Section */
  .cta {
    text-align: center;
    padding: 4rem 2rem;
    background: #004080;
    color: #fff;
  }
  .cta h2 { margin-bottom: 1rem; }
  .cta p { margin-bottom: 2rem; }


  /* =========================
   MOBILE RESPONSIVE FIXES
   ========================= */

/* Tablets */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .about-container {
    grid-template-columns: 1fr; /* stack text + image */
    text-align: center;
  }
  .about-image img {
    max-width: 80%;
    margin: auto;
  }
  .services-grid {
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  }
}

/* Mobile Phones */
@media (max-width: 600px) {
  /* Hero */
  .hero {
    height: 70vh;
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  .cta-btn {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 14px;
    font-size: 1rem;
  }

  /* About */
  .about {
    padding: 2rem 1rem;
  }
  .about-text h2 {
    font-size: 1.6rem;
  }

  /* Services */
  .services-preview h2 {
    font-size: 1.6rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }

  /* Values */
  .values {
    padding: 2rem 1rem;
  }
  .value-box {
    padding: 1.2rem;
  }

  /* Network */
  .network {
    padding: 3rem 1rem;
  }
  .network-content ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  /* CTA */
  .cta {
    padding: 3rem 1rem;
  }
  .cta h2 {
    font-size: 1.6rem;
  }
  .cta p {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

  

/* Services Grid */
/* Services Section */
.services-section {
    padding: 70px 20px;
    background: #f4f7fb;
  }
  
  .services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
  }
  
  .services-header h2 {
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 15px;
  }
  
  .services-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
  }
  
  /* Service Grid */
  .services-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    gap: 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Service Card */
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
  }
  
  /* Icon */
  .service-icon {
    font-size: 3rem;
    color: #004080;
    margin-bottom: 20px;
  }
  
  /* Title */
  .service-card h3 {
    font-size: 1.5rem;
    color: #004080;
    margin-bottom: 15px;
  }
  
  /* Description */
  .service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  /* Learn More Link */
  .service-link {
    font-weight: 500;
    color: #004080;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }
  
  .service-link:hover {
    color: #0066cc;
  }

  /* Solutions Section */
.solutions-section {
    padding: 70px 20px;
    background: #fff;
  }
  
  .solutions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
  }
  
  .solutions-header h2 {
    font-size: 2.4rem;
    color: #004080;
    margin-bottom: 15px;
  }
  
  .solutions-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
  }
  
  /* Solutions Grid */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
  }
  
  .solution-card {
    background: #f8fbff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
  }
  
  .solution-card i {
    font-size: 2.5rem;
    color: #004080;
    margin-bottom: 15px;
  }
  
  .solution-card h3 {
    font-size: 1.3rem;
    color: #004080;
    margin-bottom: 12px;
  }
  
  .solution-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
  }
  

/* Lists */
ul { list-style: none; padding: 0; }
li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}
li:last-child { border-bottom: none; }

/* Tables */
.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}
table th, table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
table th {
    background-color: #f2f2f2;
    font-weight: 500;
}

/* Banner */
.banner {
    background-color: #f0f8ff;
    color: #004080;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Detail Page */
/* Banner (now global, not inside service-detail) */
.detail-banner {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    border-radius: 0; /* full-width hero style */
    overflow: hidden;
    margin-bottom: 2rem; /* spacing before service detail */
  }
  
  .detail-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .detail-banner p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 64, 128, 0.6);
    z-index: 0;
  }
  
  .detail-banner h2,
  .detail-banner p {
    position: relative;
    z-index: 1;
  }
  
  
  /* Service Detail stays clean */
  .service-detail {
    margin: 0 auto 4rem;
    max-width: 1000px;
    padding: 0 1rem;
  }

  /* Content */
    
  .detail-container {
    background: #fff;
    padding: 2.5rem;
  }
  
  .detail-text h3 {
    color: #004080;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0056b3;
    padding-left: 0.8rem;
  }
  
  .detail-text p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  
  .detail-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
  }
  
  .detail-text ul li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #444;
  }
  
  .detail-text ul li i {
    color: #0056b3;
    font-size: 1.2rem;
  }
  
  /* CTA */
  .cta-button {
    display: inline-block;
    margin-top: 1rem;
    background: #0056b3;
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .cta-button:hover {
    background: #003366;
  }
  
/* Contact */
/* General Section */
.contact-section {
    padding: 60px 20px;
    background: #f4f7fb;
  }
  
  .contact-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  /* Card Style (applies to form, info, map) */
  .card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    flex: 1 1 30%;
    min-width: 300px;
  }
  
  /* Contact Form */
  .contact-form h2 {
    margin-bottom: 20px;
    color: #004080;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    background: #004080;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
  }
  
  .contact-form button:hover {
    background: #0066cc;
  }
  
  /* Contact Info */
  .contact-info h2 {
    margin-bottom: 20px;
    color: #004080;
  }
  
  .contact-info p {
    margin: 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  .contact-info i {
    color: #004080;
    margin-right: 10px;
  }
  
  /* Social Links */
  .social-links {
    margin-top: 20px;
  }
  
  .social-links a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    background: #004080;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
  }
  
  .social-links a:hover {
    background: #0066cc;
  }
  
  /* Google Map */
  .contact-map iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    min-height: 300px;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .contact-container {
      flex-direction: column;
    }
  
    .card {
      flex: 1 1 100%;
    }
  }
  


  /* About Page */
.about-intro {
    padding: 4rem 2rem;
    background: #fff;
  }
  .about-intro .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
  }
  .about-intro .about-text {
    flex: 1;
  }
  .about-intro .about-image {
    flex: 1;
  }
  .about-intro img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .about-mvv {
    padding: 3rem 2rem;
    background: #f9f9f9;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .mvv-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .mvv-box {
    flex: 1 1 250px;
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .mvv-box i {
    font-size: 2rem;
    color: #005f99;
    margin-bottom: 1rem;
  }
  
  .why-choose {
    padding: 4rem 2rem;
  }
  .why-choose h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #003366;
  }
  .choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 1.5rem;
  }
  .choose-card {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  .choose-card:hover {
    transform: translateY(-5px);
  }
  .choose-card i {
    font-size: 2rem;
    color: #005f99;
    margin-bottom: 0.8rem;
  }
  
  .about-network {
    padding: 4rem 2rem;
    background: url('images/world-map.jpg') center/cover no-repeat;
    position: relative;
    text-align: center;
    color: #fff;
  }
  .about-network .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
  }
  .about-network .network-content {
    position: relative;
    z-index: 1;
  }
  .about-network ul {
    list-style: none;
    margin-top: 1rem;
  }
  .about-network li {
    margin: 0.5rem 0;
  }
  .about-network i {
    margin-right: 8px;
    color: #ffcc00;
  }

  
  /* 📱 Mobile Responsive Adjustments */
@media (max-width: 992px) {
    .about-intro .container {
      flex-direction: column;
      text-align: center;
    }
    .about-intro .about-text,
    .about-intro .about-image {
      flex: 1 1 100%;
    }
    .about-intro img {
      max-width: 90%;
      margin: 1rem auto;
    }
  
    .about-mvv {
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .mvv-box {
      margin-bottom: 1rem;
    }
  
    .choose-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .about-intro {
      padding: 2rem 1rem;
    }
    .about-intro .container {
      gap: 1rem;
    }
  
    .about-mvv {
      padding: 2rem 1rem;
    }
  
    .choose-grid {
      grid-template-columns: 1fr; /* ✅ Single column for small screens */
    }
  
    .choose-card {
      padding: 1.2rem;
    }
  
    .about-network {
      padding: 2.5rem 1rem;
    }
    .about-network h2 {
      font-size: 1.5rem;
    }
    .about-network p {
      font-size: 0.95rem;
    }
    .about-network ul li {
      font-size: 0.9rem;
    }
     .mvv-container {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  }
  

/* ===================
   Responsive Styles
=================== */

/* Tablet */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header h1 { font-size: 1.5rem; }

    nav { display: none; width: 100%; }
    nav.responsive { display: block; }
    nav a { display: block; margin: 0.5rem 0; }

    .menu-icon { display: block; }

    .combined-contact { grid-template-columns: 1fr; }
    .contact-details { text-align: center; }

    .hero { padding: 4rem 1rem; }
}

/* Mobile */
@media (max-width: 480px) {
    body { font-size: 14px; }
    header h1 { font-size: 1.2rem; }
    main { padding: 1rem; }
    section { padding: 1.5rem; }
    section.home-section { grid-template-columns: 1fr; }
    .home-section .section-image-container img { width: 100%; height: auto; }
}



.footer {
    background: #002147;
    color: #fff;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer h3, 
  .footer h4 {
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .footer p, 
  .footer a {
    color: #dcdcdc;
    text-decoration: none;
    line-height: 1.6;
  }
  
  .footer a:hover {
    color: #1e90ff;
  }
  
  .footer ul {
    list-style: none;
    padding: 0;
  }
  
  .footer ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: #bbb;
  }
  
  /* 📱 Mobile Responsive */
  @media (max-width: 992px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  
  
