* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #2c2c2c;
}

/* HEADER */
header {
  background: #1e73be;
  padding: 12px 0;
}
.header h1{
  color:wheat;
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:white;
}

.logo img {
  height: 45px;
}


nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* HERO */
.hero {
  background: #eaf4ff;
  padding: 70px 20px;
  text-align: center;
}

.hero h1 {
  color: #0b4f8a;
  margin-bottom: 10px;
}

/* SECTIONS */
.section {
  padding: 50px 0;
}

.section h1 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  border: 1px solid #dbe7f3;
  padding: 20px;
  border-radius: 6px;
  background: #fff;
}

.card a {
  color: #1e73be;
  font-weight: bold;
  text-decoration: none;
}

/* FORM */
form {
  background: #f9fbfd;
  padding: 25px;
  border-radius: 6px;
  margin-top: 25px;
}

form input,
form textarea,
form button {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

form button {
  background: #1e73be;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}




/* WORDPRESS-LIKE SERVICES SECTION */

.services-section {
  background: #f7faff;
}

.section-title {
  font-size: 28px;
  color: #0b4f8a;
  margin-bottom: 40px;
  text-align: center;
}

.wp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wp-service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.wp-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* ICON */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  font-size: 32px;
  color: #1e73be;
}

/* TEXT */
.wp-service-card h3 {
  color: #0b4f8a;
  margin-bottom: 10px;
}

.wp-service-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.wp-service-card a {
  color: #1e73be;
  font-weight: 600;
  text-decoration: none;
}

/* MAIN SERVICE HIGHLIGHT */
.main-service {
  background: linear-gradient(135deg, #1e73be, #0b4f8a);
  color: #fff;
}

.main-service h3,
.main-service p,
.main-service a {
  color: #fff;
}

.main-service .icon-circle {
  background: rgba(255,255,255,0.2);
}

.main-service .icon-circle i {
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {
  .wp-services-grid {
    grid-template-columns: 1fr;
  }
}
/* BLUE SERVICES CARD */

.services-card-blue {
  background: linear-gradient(135deg, #1e73be, #0b4f8a);
  color: #ffffff;
}

/* WHITE ICON ON BLUE */
.services-card-blue .icon-circle {
  background: rgba(255, 255, 255, 0.2);
}

.services-card-blue .icon-circle i {
  color: #ffffff;
}

/* HEADING */
.services-card-blue h3 {
  color: #ffffff;
}

/* SERVICE LINKS */
.services-card-blue .service-links-box a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  border-radius: 6px;
}

.services-card-blue .service-links-box a:hover {
  background: rgba(255, 255, 255, 0.25);
  padding-left: 22px;
}

/* MAIN SERVICE HIGHLIGHT */
.services-card-blue .service-links-box .highlight {
  background: #ffffff;
  color: #0b4f8a;
  font-weight: 600;
}

.services-card-blue .service-links-box .highlight:hover {
  background: #eaf4ff;
}

/* CARD HOVER (KEEP CONSISTENT) */
.services-card-blue:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
/* ===== HOME LEFT–RIGHT BOX LAYOUT ===== */

.home-two-box {
  background: #f7faff;
  padding: 60px 0;
}

/* GRID = LEFT / RIGHT */
.two-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* COMMON CARD */
.card {
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

/* ABOUT CARD (LEFT) */
.about-card {
  background: #ffffff;
}

.about-card h3 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

/* SERVICES CARD (RIGHT – BLUE) */
.services-card {
  background: linear-gradient(135deg, #1e73be, #0b4f8a);
  color: #ffffff;
}

.services-card h3 {
  margin-bottom: 20px;
}

/* SERVICE LINKS AS BUTTONS */
.services-card a {
  display: block;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.services-card a:hover {
  background: rgba(255,255,255,0.3);
  padding-left: 24px;
}

/* MAIN SERVICE */
.services-card a.primary {
  background: #ffffff;
  color: #0b4f8a;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .two-box-grid {
    grid-template-columns: 1fr;
  }
}

/* MAKE FULL CARD CLICKABLE */
.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* ENSURE HOVER EFFECT APPLIES TO WHOLE CARD */
.service-card-link:hover .wp-service-card {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}

/* CTA TEXT */
.card-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
}
/* ===== FOOTER ===== */

.site-footer {
  background: #1e73be;
  padding: 60px 0 0;
  color: #eeebeb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  color:9ECFD4;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #faf7f7;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #1e73be;
}

/* BRAND */
.footer-logo {
  max-width: 140px;
  margin-bottom: 10px;
}

.brand-col p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* SOCIAL ICONS */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #eaf4ff;
  border-radius: 50%;
  margin-right: 8px;
  color: #1e73be;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #1e73be;
  color: #fff;
}

/* CONTACT */
.contact-col p {
  font-size: 14px;
  margin-bottom: 20px;
}

.hotline-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff1f1;
  padding: 15px;
  border-radius: 8px;
}

.hotline-box i {
  font-size: 24px;
  color: #d9534f;
}

.hotline-box span {
  font-size: 13px;
  color: #555;
}

.hotline-box strong {
  display: block;
  font-size: 16px;
  color: #000;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SERVICE PAGE ===== */

.service-hero {
  background: #f7faff;
  padding: 60px 0;
}

.service-hero h1 {
  color: #0b4f8a;
  margin-bottom: 10px;
}

.service-hero p {
  max-width: 700px;
  color: #444;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT INFO */
.service-info h2 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

.service-info ul {
  padding-left: 20px;
}

.service-info li {
  margin-bottom: 10px;
  color: #444;
}

/* FORM CARD */
.service-form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-form-card h2 {
  margin-bottom: 20px;
  color: #0b4f8a;
}

/* FORM */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #1e73be;
  outline: none;
}

/* BUTTON */
.btn-primary {
  width: 100%;
  padding: 12px;
  background: #1e73be;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0b4f8a;
}

/* FOOTER */
.simple-footer {
  text-align: center;
  padding: 20px;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SERVICE HERO WITH IMAGE ===== */

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-text h1 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

.hero-text p {
  color: #444;
  line-height: 1.8;
}

/* IMAGE STYLING */
.hero-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}


.company-section {
  background: #f7faff;
}

.company-content {
  max-width: 900px;   /* KEY FIX */
  margin: 0 auto;     /* Centers the block */
}

.company-content h2 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

.company-content p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}
/* ===== ABOUT US STACKED LAYOUT ===== */

.about-title {
  color: #0b4f8a;
  margin-bottom: 30px;
}

/* STACK instead of GRID */
.vm-stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD (reuse same style) */
.vm-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.vm-card h3 {
  color: #0b4f8a;
  margin-bottom: 15px;
}

.vm-card p {
  color: #444;
  line-height: 1.7;
}

/* HIGHLIGHT MISSION */
.vm-card.highlight {
  background: linear-gradient(135deg, #1e73be, #0b4f8a);
}

.vm-card.highlight h3,
.vm-card.highlight p {
  color: #ffffff;
}

/* SUPPORT TEXT */
.vm-support {
  margin-top: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.vm-support p {
  color: #444;
  line-height: 1.8;
}
/* CONTACT PAGE GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0a3d62;
}





/* ===============================
   OUR SERVICES SECTION – RESPONSIVE
   =============================== */

.services-section {
  background: #f7f9fc;
}

.section-title {
  text-align: center;
  font-size: 32px;
  color: #0a4d8c;
  margin-bottom: 40px;
}

/* Remove anchor default styles */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* GRID – Desktop */
.wp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* SERVICE CARD */
.wp-service-card {
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.wp-service-card h3 {
  font-size: 18px;
  margin: 18px 0 10px;
  color: #0a4d8c;
}

.wp-service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 16px;
}

/* ICON CIRCLE */
.icon-circle {
  width: 64px;
  height: 64px;
  background: #eaf2fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: all 0.3s ease;
}

.icon-circle i {
  font-size: 26px;
  color: #0a4d8c;
  transition: all 0.3s ease;
}

/* CTA */
.card-cta {
  font-size: 14px;
  font-weight: 600;
  color: #0a4d8c;
}

/* HOVER EFFECT */
.service-card-link:hover .wp-service-card {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.service-card-link:hover .icon-circle {
  background: #0a4d8c;
}

.service-card-link:hover .icon-circle i {
  color: #ffffff;
}

.service-card-link:hover .card-cta {
  text-decoration: underline;
}

/* TABLET VIEW */
@media (max-width: 992px) {
  .wp-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE VIEW */
@media (max-width: 576px) {
  .section-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .wp-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wp-service-card {
    padding: 22px 18px;
  }

  .wp-service-card h3 {
    font-size: 16px;
  }

  .wp-service-card p {
    font-size: 13px;
  }
}
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
}



  .mobile-nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #0a4d8c;
    border-radius: 10px;
    padding: 12px;
  }

  .mobile-nav.open {
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav ul li {
    margin: 10px 0;
  }

  .mobile-nav ul li a {
    color: #ffffff;
    text-decoration: none;
  }

/* ===============================
   HEADER – DESKTOP & MOBILE
   =============================== */

header {
  background: #1e73be;
  position: sticky;
  top: 0;
  z-index: 9999;
}

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

/* LOGO */
.logo img {
  height: 46px;
}

/* COMPANY NAME */
.site-title {
  color: #ffffff;
  font-size: 22px;   /* DESKTOP SIZE */
  font-weight: 600;
  margin: 0;
  text-align: center;
  flex: 1;
}
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
  }

  .logo img {
    height: 42px;
  }

  header h1 {
    font-size: 18px;
    margin: 0;
    text-align: center;
  }

  nav {
    display: block;
    width: 100%;
  }

  nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 12px;
    width: 90%;
    margin: 10px auto 0;
    background: #1e73be;
    border-radius: 8px;
  }

  nav ul li a {
    font-size: 14px;
    padding: 6px 10px;
    color: #fff;
  }
}
/* ===============================
   FORCE MOBILE CONTENT FULL WIDTH
   =============================== */
@media (max-width: 768px) {

  /* HERO / SERVICE / TRAINING GRID */
  .hero-grid,
  .service-grid,
  .two-box-grid {
    display: block !important;
  }

  /* TEXT BLOCK */
  .hero-text,
  .service-info {
    width: 100% !important;
  }

  /* IMAGE BLOCK */
  .hero-image {
    width: 100% !important;
    margin-top: 20px;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }

  /* READABILITY FIX */
  .hero-text p,
  .service-info p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 768px) {

  nav ul {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
    justify-items: center;
    align-items: center;
    padding: 14px;
    width: 90%;
    margin: 10px auto 0;
    background: #1e73be;
    border-radius: 8px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    font-size: 14px;
    padding: 8px 6px;
    color: #ffffff;
  }
}
/* ===============================
   OPEX – PRODUCT GRID FIX
   =============================== */

.opex-wrapper {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.opex-wrapper h2 {
  color: #0b4f8a;
  margin-bottom: 10px;
}

.opex-wrapper .desc {
  margin-bottom: 30px;
  color: #555;
}

.brand-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0b4f8a;
}

/* ✅ HORIZONTAL GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* CARD */
.product-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
}

.product-card p {
  font-weight: 600;
  color: #0b4f8a;
}

.product-card span {
  font-size: 13px;
  color: #666;
}

/* PRODUCT LIST */
#product-list-section {
  display: none;
}

#product-list-section h3 {
  margin-bottom: 15px;
  color: #0b4f8a;
}

#product-list li {
  margin-bottom: 8px;
}
/* ===============================
   CONTACT DETAILS – MOBILE FIX
   =============================== */

@media (max-width: 768px) {

  .contact-grid {
    grid-template-columns: 1fr;   /* single column */
    gap: 20px;
    padding: 0 10px;
  }

  .contact-card {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .contact-card h2 {
    font-size: 18px;
    margin-bottom: 12px;
    text-align: left;
  }

  .contact-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .contact-card i {
    margin-right: 6px;
    color: #1e73be;
  }
}
.contact-card {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
/* HEADER LAYOUT FIX */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-title {
  font-size: 18px;
  font-weight: 600;
  color: #0b4f8a;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SEARCH BAR */

.header-search {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-search input {
  width: 200px;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.header-search button {
  background: #0b4f8a;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
}

/* MOBILE FRIENDLY */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: stretch;
  }

  .header-right {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .header-search input {
    width: 100%;
    font-size: 16px; /* prevents iOS zoom */
  }
}
/* ===============================
   FORCE MOBILE HEADER CENTER FIX
   =============================== */
@media (max-width: 768px) {

  header > .container.navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 15px 10px !important;
  }

  header > .container.navbar .logo {
    margin: 0 auto !important;
  }

  header > .container.navbar .logo img {
    max-width: 160px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }

  header > .container.navbar h1 {
    font-size: 18px !important;
    margin: 8px 0 12px !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  header > .container.navbar nav {
    width: 100% !important;
  }

  header > .container.navbar nav ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  header > .container.navbar nav ul li {
    margin: 0 !important;
  }
}

