* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 font-family: 'Segoe UI', sans-serif;
}

html {
 scroll-behavior: smooth;
 scroll-padding-top: 110px;
}

body {
 background: url('https://undraw.co/api/illustrations/working_remotely_light.svg') no-repeat center center fixed;
 background-size: cover;
 color: #333;
}

/* Navbar */

.logo img {
 width: 200px;
 height: auto;
 display: block;
}
.navbar {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 1000;
 display: flex;
 align-items: center;
 justify-content: space-between;
 /* --- MOBILE NAVBAR --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: rgba(255,255,255,0.92);
    min-height: 56px;
  }
  .logo img {
    width: 120px;
  }
  .nav-links {
    /* Hide links by default on mobile */
    display: none;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 52px;
    width: 100%;
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    padding: 8px 0;
    z-index: 1200;
  }
  .nav-links.show {
    display: flex;
  }
  .navbar .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #011d3b;
    cursor: pointer;
    z-index: 1300;
    margin-left: auto;
  }
}

/* --- DESKTOP NAVBAR --- */
@media (min-width: 769px) {
  .navbar .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
  }
  .logo img {
    width: 200px;
  }
}

 padding-top: -0.cap;
 padding-bottom: -20px;
 padding: 0 40px; 
 min-height: 10px; /* reduced height */
 box-sizing: border-box;
 background: rgba(255,255,255,0.8);
 transition: background 0.3s, backdrop-filter 0.3s; /* optional: ensures background covers content below */
}

.nav-links {
 display: flex;
 gap: 32px; /* space between links */
 list-style: none;
 margin-left: 890px;
 align-items: right;
 margin: 0;
 padding: 0;
}

.nav-links li {
 display: flex;
 align-items: center;
}

.nav-links li a {
 color: #011d3b;
 text-decoration: none;
 font-size: 1.1rem;
 font-weight: 500;
 padding: 8px 12px;
 transition: color 0.2s;
}

.nav-links li a:hover {
 color: #007bff; /* highlight color on hover */
}

/* Hero */
.hero {
  height: 90vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("/images/indeximg.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center top;
  padding: 0 20px;
}
.hero-content{
  max-width: 700px;
  padding: 20px;
  color: #000914;
  margin-left: 120px;
  margin-top: 90px;
}

@media (max-width: 1100px) {
  .hero-content {
    margin: 0 auto;     /* center the text */
  }

  .hero h1 {
    font-size: 2.8rem;   /* reduce size only for these screens */
  }
}
/* ⭐ Use a different image for phone screens */
@media (max-width: 600px) {
  .hero {
    position: relative;
    overflow: hidden;
    background: none;   /* remove existing bg so it doesn't double up */
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
      linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)),
      url("images/office-1486358_1280.jpg");
    background-size: cover;
    background-position: center;

    filter: blur(6px);      /* adjust stronger/weaker if needed */
    transform: scale(1.1);  /* avoids blur edges */
    z-index: -1;            /* keeps text above */
  }
}


.hero h1 {
 font-size: 3.5rem;
 margin-bottom: 1rem;
}

.hero p {
 font-size: 1.1rem;
 margin-bottom: 1.5rem;
}

.btn {
 gap:28px;
 padding: 10px 20px;
 background-color: #0078ff;
 font-size: medium;
 font-weight: 475;
 border: none;
 color: white;
 border-radius: 5px;
 cursor: pointer;
}

.btn:hover {
 background: #fff;
 color: #000914;
 border-color: #19998B;
 box-shadow: 0 12px 36px rgba(25,153,139,0.18);
}

#about{
 margin-top: 90px;
}
.about-section .content-wrapper {
 margin-top: 50px;
 margin-bottom: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 60px; /* Increase gap for visually pleasant space */
 width: 100%;
}

.about-section .text-content {
 max-width: 44vw; /* Responsive, wider for longer text */
 min-width: 340px;
 font-size: 18px;
 flex: 1;
 /* Remove margin-left! */
}

#about > h2 {
 text-align: center;
 margin: 90px 0 32px 0;
 font-size: 2.6rem;
 color: #004aad;
 font-weight: bold;
}

#about img {
 max-width: 38vw;
 min-width: 260px;
 height: auto;
 border-radius: 16px;
 clip-path: polygon(20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
 box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}

@media (max-width: 900px) {
 .about-section .content-wrapper {
  flex-direction: column;
  gap: 30px;
 }
 .about-section .text-content {
  max-width: 85vw;
  font-size: 15px;
 }
 #about img {
  max-width: 85vw;
 }
}

/* Sections */
.services {
 margin-top: 80px;
 margin-bottom: 80px;
 position: relative;
 overflow: hidden;
 z-index: 1;
 text-align: center;
 padding: 80px;
 background: linear-gradient(180deg, #eaf3ff 0%, #f5f9ff 100%);
}
/*services card*/
.section-title {
 color: #0046b8;
 font-size: 2rem;
 margin-bottom: 40px;
 font-weight: 700;
 position: relative;
}

.section-title::after {
 content: "";
 width: 80px;
 height: 3px;
 background: #0046b8;
 display: block;
 margin: 10px auto 0;
 border-radius: 2px;
}

.services-container {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 max-width: 1100px;
 margin: 0 auto;
}

.service-card {
 background: #fff;
 border-radius: 16px;
 padding: 30px 20px;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
 color: #003b99;
 margin-bottom: 12px;
 font-size: 1.25rem;
}

.service-card p {
 font-size: 0.95rem;
 line-height: 1.6;
 color: #444;
}

.service-card:hover {
 transform: translateY(-8px);
 box-shadow: 0 8px 20px rgba(0, 70, 184, 0.15);
}

/*why choose us*/

.why-choose-us {
 background-color: #fff; /* clean white section to contrast the blue services */
 color: #333;
 margin-top: -100px;
 text-align: center;
 padding: 100px 20px;
 position: relative;
 z-index: 1;
}

.why-choose-us h2 {
 color: #004aad; /* your brand blue tone */
 font-size: 2.5rem;
 margin-bottom: 1.5rem;
}

.why-choose-us p {
 max-width: 900px;
 margin: 0 auto;
 font-size: 1.1rem;
 line-height: 1.8;
 color: #444;
}

/* Responsive tweaks */
@media (max-width: 768px) {
 .why-choose-us {
  padding: 70px 15px;
 }
 .why-choose-us h2 {
  font-size: 2rem;
 }
 .why-choose-us p {
  font-size: 1rem;
 }
}

@keyframes bounce {
 0%  { transform: translateY(20px); opacity: 0; }
 60% { transform: translateY(-5px); opacity: 1; }
 100% { transform: translateY(0); }
}

.bounce {
 animation: bounce 0.6s ease forwards;
}

/*mission and vision*/
/* --- Mission & Vision Section --- */
.mission-vision {
 background: linear-gradient(180deg, #eaf3ff 0%, #f5f9ff 100%);
 text-align: center;
 padding: 80px 20px;
 position: relative;
 overflow: hidden;
}

.section-title {
 font-size: 2.5rem;
 color: #004aad;
 margin-bottom: 60px;
 position: relative;
}

.mv-container {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 40px;
 flex-wrap: wrap;
}

.mv-card {
 background: rgba(255, 255, 255, 0.85);
 backdrop-filter: blur(8px);
 border-radius: 16px;
 box-shadow: 0 8px 20px rgba(0, 74, 173, 0.1);
 width: 350px;
 padding: 30px 25px;
 transition: all 0.3s ease-in-out;
 text-align: left;
 color: #1a1a1a;
 border-top: 4px solid transparent;
}

.mv-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 12px 25px rgba(0, 74, 173, 0.25);
 border-top: 4px solid #004aad;
}

.mv-card h3 {
 font-size: 1.6rem;
 color: #004aad;
 margin-bottom: 15px;
}

.mv-card p {
 font-size: 1rem;
 line-height: 1.7;
}

/* Subtle glowing circles in background */
.mission-vision::before,
.mission-vision::after {
 content: "";
 position: absolute;
 border-radius: 50%;
 z-index: 0;
}

.mission-vision::before {
 width: 400px;
 height: 400px;
 top: -100px;
 left: -100px;
}

.mission-vision::after {
 width: 300px;
 height: 300px;
 bottom: -100px;
 right: -100px;
}

/* Responsive */
@media (max-width: 900px) {
 .mv-container {
  flex-direction: column;
  gap: 30px;
 }
 .mv-card {
  width: 90%;
  text-align: center;
 }
}

/*work flow*/

.timeline-section {
 background: #fff;
 padding: 80px 20px;
 color: #333;
 text-align: center;
}

/* Timeline center line */
.timeline {
 position: relative;
 margin: 0 auto;
 max-width: 900px;
}

/* Timeline vertical line */
.timeline::before {
 content: "";
 position: absolute;
 left: 50%;
 top: 0;
 transform: translateX(-50%);
 width: 4px;
 height: 100%;
 background: linear-gradient(#004aad, #00a8ff);
 z-index: 0;
}

/* Timeline progress line */
.timeline-progress {
 position: absolute;
 left: 50%;
 top: 0;
 transform: translateX(-50%);
 width: 4px;
 background: #004aad;
 z-index: 1;
 transition: height 0.3s;
}

/* Items alternate left/right */
.timeline-item {
 display: flex;
 justify-content: flex-start;
 align-items: flex-start;
 position: relative;
 margin: 40px 0;
}

/* Dot styling */
.timeline-dot {
 position: absolute;
 left: 50%;
 top: 22px;
 transform: translateX(-50%);
 width: 18px;
 height: 18px;
 background: #004aad;
 border-radius: 50%;
 z-index: 2;
 box-shadow: 0 0 12px rgba(0, 74, 173, 0.5);
 border: 3px solid #fff; /* Blue dot with white border for visibility */
}

/* Card styling */
.timeline-content {
 background: #f8faff;
 border: 2px solid #e3e8ff;
 border-radius: 10px;
 padding: 25px 30px;
 width: 44%;
 min-width: 280px;
 box-shadow: 0 8px 18px rgba(0, 74, 173, 0.08);
 transition: transform 0.4s ease;
 text-align: left;
}

/* Alternating left/right effect */
.timeline-item:nth-child(odd) .timeline-content {
 margin-right: auto;
 margin-left: 0;
}
.timeline-item:nth-child(even) .timeline-content {
 margin-left: auto;
 margin-right: 0;
}

/* Hover effect */
.timeline-content:hover {
 transform: scale(1.03);
 border-color: #004aad;
}

/* Responsive */
@media (max-width: 900px) {
 .timeline-section {
  padding: 40px 5px;
 }
 .timeline {
  max-width: 99vw;
 }
 .timeline-content {
  width: 94vw;
  min-width: 0;
  margin: 0 0 30px 0 !important;
  text-align: center !important;
 }
 .timeline::before,
 .timeline-progress,
 .timeline-dot {
  left: 18px; /* Move timeline to left for mobile */
  transform: none;
 }
 .timeline-dot {
  left: 18px;
 }
}

.section-title {
 font-size: 2.5rem;
 color: #004aad;
 margin-bottom: 60px;
 font-weight: bold;
 text-align: center;
}
.section-title::after {
 content: "";
 width: 80px;
 height: 3px;
 background: #004aad;
 display: block;
 margin: 10px auto 0;
 border-radius: 2px;
}

/* Industries we serve*/
.industries-section {
 background: #fff;
 padding: 70px 20px;
 text-align: center;
}

.section-title {
 color: #004aad;
 font-size: 2.5rem;
 margin-bottom: 50px;
 font-weight: 700;
 position: relative;
}

.industries-container {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: 40px;
 max-width: 1200px;
 margin: 0 auto;
}

.industry-card {
 width: 160px;
 background: #f8faff;
 border-radius: 16px;
 padding: 20px;
 box-shadow: 0 6px 18px rgba(0, 74, 173, 0.1);
 transition: transform 0.3s ease;
 cursor: default;
}

.industry-card:hover {
 transform: translateY(-10px);
 box-shadow: 0 12px 36px rgba(0, 74, 173, 0.15);
}

.industry-icon {
 width: 60px;
 height: 60px;
 margin-bottom: 15px;
 filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
}

.industry-card h3 {
 color: #004aad;
 font-size: 1.25rem;
 margin-top: 0;
}

/*contact*/
.site-footer {
 background: #000914;
 color: #fff;
 padding: 50px 20px 0 20px;
 font-size: 1rem;
 letter-spacing: 0.01em;
}
.footer-container {
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 max-width: 1200px;
 margin: 0 auto 24px;
 gap: 40px;
}
.footer-brand {
 flex: 1;
 min-width: 220px;
 max-width: 280px;
}
.footer-logo {
 width: 130px;
 height: auto;
 margin-bottom: 10px;
}
.footer-brand h3 {
 margin: 0 0 8px 0;
 font-size: 1.3rem;
 font-weight: 700;
 letter-spacing: .04em;
}
.footer-info, .footer-social {
 flex: 1;
 min-width: 180px;
}
.footer-info h4, .footer-social h4 {
 margin-bottom: 10px;
 color: #fff;
 font-size: 1.15rem;
 font-weight: 600;
}
.footer-info p {
 margin: 0 0 14px 0;
 color: #d9eaff;
}
.footer-social .social-links {
 margin-top: 8px;
 display: flex;
 gap: 18px;
}
.footer-social img {
 width: 36px;
 height: 36px;
 opacity: 0.90;
 transition: opacity 0.2s;
 filter: grayscale(20%) brightness(120%);
}
.footer-social img:hover {
 opacity: 1;
 filter: drop-shadow(0 1px 4px #003a8c);
}
.footer-bottom {
 border-top: 1px solid #2476db;
 padding: 18px 0;
 text-align: center;
 color: #d9eaff;
 font-size: 0.98rem;
 display: flex;
 flex-direction: column;
 gap: 5px;
}
.attribution {
 font-size: 0.85rem;
 color: #b8d3fa;
}
.attribution a {
 color: #b8d3fa;
 text-decoration: underline;
}
@media (max-width: 800px) {
 .footer-container {
  flex-direction: column;
  gap: 28px;
  align-items: center;
  text-align: center;
 }
 .footer-brand, .footer-info, .footer-social {
  max-width: none;
 }
}

/* Footer */
.footer {
 background: #000e1f;
 color: white;
 text-align: center;
 padding: 20px;
 font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
 .nav-links {
  flex-wrap: wrap;
  justify-content: center;
 }
 .cards {
  flex-direction: column;
  align-items: center;
 }
 .hero h1 {
  font-size: 1.8rem;
 }
}

/* Added responsive CSS for mobile devices */
/* Desktop Navbar */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.menu-toggle {
  display: none;
}

/* Hamburger Navbar for Mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.96);
  }
  .logo img {
    width: 110px;
    height: auto;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #011d3b;
    cursor: pointer;
    margin-left: auto;
    z-index: 2000;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    z-index: 1500;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links li a {
    display: block;
    width: 100%;
    font-size: 1.15rem;
    padding: 16px;
    text-align: center;
    color: #011d3b;
    border-bottom: 1px solid #eee;
  }
  .nav-links li:last-child a {
    border-bottom: none;
  }
}

/* Prevent content overlap */
@media (max-width: 768px) {
  body {
    padding-top: 54px;
  }
}

@media (max-width: 768px) {

  .industries-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 20px;
    padding: 0 10px;
  }

  .industry-card {
    width: 100%;          /* full width inside grid */
    padding: 18px 12px;
  }

  .industry-icon {
    width: 48px;
    height: 48px;
  }

  .industry-card h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .industries-container {
    grid-template-columns: 1fr; /* 1 card per row */
  }

  .industry-card {
    max-width: 280px;
    margin: 0 auto; /* center cards */
  }
}


/* Smooth transitions */
.nav-links,
.menu-toggle {
  transition: all 0.3s;
}


