/* === GLOBAL RESETS === */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

/* === NAVBAR === */
/* Default desktop styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #002244;
  padding: 20px 40px;
  .navbar {
    transition: background 0.5s ease-in-out;
  }
  
  height: 90px;
  position: relative;
}

.menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}
.menu li a:hover {
  color: #ffcc00; /* or try white with underline */
  text-decoration: underline;
}


.dashboard {
  padding: 30px;
  background-color: #f7f7f7;
}
.panels {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.panel {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  background-color: #002244;
  color: white;
  padding: 20px 0;
}

/* 🆕 Add this for iframe page centering */
.iframe-center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 160px); /* 100vh minus header + footer height */
  width: 100vw;
  box-sizing: border-box;
  padding: 0;
  background-color: #f7f7f7;
}

.iframe-center-wrapper iframe {
  width: 80vw;
  height: 80vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

/* Make body and html stretch full screen */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Main container to center iframe */
.iframe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 160px); /* adjust for header/footer height */
  background-color: #f7f7f7;
}

/* Actual iframe sizing */
.iframe-container iframe {
  width: 80vw;
  height: 80vh;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}


.about-container {
  padding: 40px;
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
}

.about-container h1, .about-container h2 {
  color: #002244;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.about-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0;
}

.about-box {
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mission-section {
  background-color: #f7f7f7;
  padding: 30px;
  border-left: 5px solid #ff6600;
  margin-top: 40px;
  border-radius: 8px;
}


/* ---- Culture Page Styles ---- */

.culture-container {
  padding: 40px;
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
}

.culture-container h1,
.culture-container h2 {
  color: #002244;
  margin-bottom: 20px;
}

.culture-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Pillars section */
.culture-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .culture-pillars {
    flex-direction: row;
  }
}

.culture-box {
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.culture-box h3 {
  margin-top: 0;
  color: #002244;
}

/* Highlight section */
.culture-highlight {
  background-color: #fef8e7;
  padding: 30px;
  border-left: 5px solid #ff6600;
  margin-top: 40px;
  border-radius: 8px;
}

/* Core values section */
.culture-values {
  background-color: #eaf4ff;
  padding: 30px;
  margin-top: 40px;
  border-left: 5px solid #002244;
  border-radius: 8px;
}

.culture-values ul {
  padding-left: 20px;
  list-style-type: disc;
}

.culture-values li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

/* ---- Refined Services Page Styles ---- */

.services-container {
  padding: 60px 30px;
  background-color: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.services-container h1 {
  font-size: 36px;
  color: #002244;
  margin-bottom: 10px;
  font-weight: 700;
}

.services-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #002244;
  font-weight: 600;
}

.services-container p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-section {
  background: linear-gradient(to right, #ffffff, #f9fbff);
  border-left: 6px solid #ff6600;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
}

.service-section:hover {
  transform: translateY(-5px);
}

.service-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #002244;
  font-weight: 600;
}

.service-section ul,
.service-section ol {
  margin-top: 10px;
  padding-left: 20px;
}

.service-section li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  position: relative;
}

.service-section li::marker {
  color: #ff6600;
}

.services-closing {
  font-size: 18px;
  font-weight: 600;
  background-color: #ff6600;
  color: white;
  padding: 25px 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Services Page Inspired by Virtusa.com ===== */

.services-hero {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(120deg, #002244 0%, #011e3c 100%);
  color: white;
}
.services-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}
.services-hero p {
  font-size: 18px;
  color: #cccccc;
}

.services-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 30px;
  background: #f7f9fc;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card h2 {
  font-size: 22px;
  color: #002244;
  margin-bottom: 10px;
}
.service-card p {
  color: #555;
  margin-bottom: 15px;
}
.service-card ul {
  padding-left: 20px;
  list-style-type: disc;
}
.service-card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.process-section {
  background: #ffffff;
  padding: 50px 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.process-section h2 {
  text-align: center;
  font-size: 28px;
  color: #002244;
  margin-bottom: 30px;
}
.process-section ol {
  padding-left: 20px;
}
.process-section li {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 16px;
}

.cta-banner {
  background-color: #ff6600;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* ===== Homepage Hero with Video Background ===== */
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  background-size: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 60px 20px;
  top: 10%;
}

.hero-overlay h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-overlay p {
  font-size: 20px;
  margin-bottom: 30px;
}

/* Dashboard Cards over Hero */
.hero-overlay .panels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-overlay .panel {
  background-color: rgba(255, 255, 255, 0.95);
  color: #002244;
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 320px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
.hero-overlay .panel:hover {
  transform: translateY(-5px);
}
.hero-overlay .panel h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}


.nextgen-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.ai-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: cover;
  filter: brightness(0.6);
}

.ai-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  top: 20%;
  color: white;
  padding: 0 20px;
}

.ai-overlay h1 {
  font-size: 46px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ai-overlay h1 span {
  color: #ff6600;
}

.ai-overlay p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #eee;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cta-btn {
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  font-size: 16px;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
}
.cta-btn.secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.ai-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.ai-stats div {
  text-align: center;
}
.ai-stats h3 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}
.ai-stats p {
  font-size: 14px;
  color: #ccc;
}





.logo-img {
  height: 80px;          /* increase logo visibility */
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

.navbar {
  height: 100px;
   padding: 12px 30px;
  background-color: #002244;
  /*background: linear-gradient(90deg, #1a2980, #26d0ce); /* Blue to teal */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card ul {
  list-style-type: none;
  padding-left: 0;
}
.service-card ul li::before {
  content: "✔ ";
  color: #ff6600;
  font-weight: bold;
  margin-right: 6px;
}
.subtext {
  font-style: italic;
  color: #555;
  margin-top: 10px;
}
.cta-banner a {
  color: white;
  text-decoration: underline;
  font-weight: bold;
}



.tech-ribbon {
  background: #f4f7fb;
  padding: 50px 40px;
  border-top: 4px solid #ff6600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tech-card {
  background: white;
  border-left: 6px solid #ff6600;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.tech-card h3 {
  margin-top: 0;
  font-size: 18px;
  color: #002244;
  margin-bottom: 10px;
}

.tech-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.hidden {
  display: none;
}


/* Hamburger hidden on large screens */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive: Hamburger active on small screens */
/* Responsive behavior for mobile view */
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background-color: #002244;
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .menu li {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}
.technology-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: white;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
}

.technology-overlay {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.6); /* translucent overlay for readability */
}

.technology-container {
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.technology-container h1, .technology-container h2 {
  color: #ffffff;
}

.technology-container p,
.tech-box p,
.tech-highlight p {
  color: #e0e0e0;
}

.tech-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.tech-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 45%;
  min-width: 300px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tech-box h3 {
  color: #ffcc00;
}

.tech-box blockquote {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #ffcc00;
  padding: 10px;
  margin-top: 10px;
  color: #ffd700;
  font-style: italic;
  border-radius: 6px;
}

.tech-highlight {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #ff6600;
  padding: 30px;
  border-radius: 10px;
  margin-top: 40px;
}


/* === SERVICES PAGE STYLES === */

/* Hero Section */
.services-hero {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #fefce8; /* light amber background */
}

.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d97706;
}

.services-hero p {
  color: #374151;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 1rem;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  background-color: #ffffff;
}

.service-card {
  background-color: #fff7ed;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

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

.service-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #78350f;
}

.service-card p {
  color: #374151;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.service-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #4b5563;
  font-size: 0.9rem;
}

/* Process Section */
.services-process {
  background-color: #f3f4f6;
  padding: 40px 20px;
  text-align: center;
}

.services-process h2 {
  color: #d97706;
  font-size: 1.75rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.services-process ol {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  list-style: decimal inside;
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

/* CTA */
.services-cta {
  background-color: #d97706;
  color: #ffffff;
  padding: 24px 16px;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
}

/* Extended Services Section */
.services-extended {
  text-align: center;
  padding: 60px 20px 30px;
  background-color: #fefce8;
}

.services-extended h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #d97706;
}

.services-extended p {
  color: #374151;
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 1rem;
}

.services-extended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 40px 20px;
  background-color: #ffffff;
}

.services-extended-card {
  background-color: #ffffff;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.services-extended-card:hover {
  transform: translateY(-3px);
}

.services-extended-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #78350f;
}

.services-extended-card ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.services-extended-card p {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 12px;
}

/* Final CTA */
.services-final-cta {
  text-align: center;
  background-color: #fef3c7;
  color: #92400e;
  padding: 32px 16px;
  font-size: 1.125rem;
  font-weight: 500;
}

.services-final-cta a {
  color: #78350f;
  font-weight: 600;
  text-decoration: underline;
}



.contact-container {
  padding: 40px;	
  background-color: #ffffff;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-container h1,
.contact-container h2 {
  color: #002244;
  margin-bottom: 20px;
}

.contact-container p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Pillars section */
.contact-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .contact-pillars {
    flex-direction: row;
  }
}

.contact-box {
  background-color: #f0f4f8;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.contact-box h3 {
  margin-top: 0;
  color: #002244;
}

/* Highlight section */
.contact-highlight {
  background-color: #fef8e7;
  padding: 30px;
  border-left: 5px solid #ff6600;
  margin-top: 40px;
  border-radius: 8px;
}

/* Core values section */
.contact-values {
  background-color: #eaf4ff;
  padding: 30px;
  margin-top: 40px;
  border-left: 5px solid #002244;
  border-radius: 8px;
}

.contact-values ul {
  padding-left: 20px;
  list-style-type: disc;
}

.contact-values li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

