:root {
  --primary:#0b3c5d;
  --secondary:#1d6fa5;
  --light:#f5f7fa;
  --dark:#1b1b1b;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background:#fff;
  color:var(--dark);
  line-height:1.6;
}

header {
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  color:#fff;
  padding:20px 60px;
  position:sticky;
  top:0;
  z-index:1000;
}

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

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

nav a {
  color:#fff;
  text-decoration:none;
}

.hero {
  background:#eef3f8;
  padding:80px 60px;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:center;
}

.hero h1 {
  font-size:26px;
  color:var(--primary);
}

.call-btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 22px;
  background:var(--secondary);
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
}

.hero-img {
  width:100%;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.section {
  padding:70px 60px;
}

.section h2 {
  text-align:center;
  font-size:32px;
  color:var(--primary);
  margin-bottom:40px;
}

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

.card {
  background:#fff;
  border:1px solid #e3e8ef;
  border-radius:8px;
  padding:25px;
  box-shadow:0 6px 16px rgba(0,0,0,0.05);
}

.card img {
  width:100%;
  border-radius:6px;
  margin-bottom:10px;
}

.process {
  display:flex;
  flex-wrap:wrap;
  gap:20px;
  justify-content:space-between;
}

.step {
  flex:1 1 200px;
  background:var(--light);
  padding:25px;
  border-radius:8px;
  text-align:center;
  font-weight:600;
}

footer {
  background:var(--primary);
  color:#fff;
  padding:40px 60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

footer a {
  color:#fff;
}

.copyright {
  text-align:center;
  padding:15px;
  background:#07293f;
  color:#fff;
  font-size:13px;
}

@media(max-width:900px) {
  .hero {
    grid-template-columns:1fr;
  }
  header, .hero, .section, footer {
    padding:40px 25px;
  }
}
nav ul li a {
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Text color change on hover */
nav ul li a:hover {
  color: #cce6ff;
}

/* Underline animation */
nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #cce6ff;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}
.download-btn {
  display:inline-block;
  margin-top:15px;
  padding:12px 22px;
  background:#0b3c5d;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.download-btn:hover {
  background:#084067;
  transform: translateY(-2px);
}
/* Floating Buttons Container */
.floating-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Call Button */
.call-btn-float {
  background: #0b3c5d;
}

/* WhatsApp Button */
.whatsapp-btn-float {
  background: #25D366;
}

/* Hover Effect */
.float-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Footer brand alignment */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* White transparent logo */
.footer-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Footer text */
.footer-brand h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.footer-brand p {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}
/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, #4686b1, #97ccef);
  color: #ffffff;
  text-align: center;
  border-radius: 16px;
  padding: 30px 30px;
  margin: 40px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Heading */
.contact-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

/* Description text */
.contact-cta p {
  max-width: 650px;
  margin: 0 auto 35px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

/* CTA Button */
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #ffffff;
  color: #0b3c5d;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .contact-cta {
    padding: 50px 20px;
  }

  .contact-cta h2 {
    font-size: 28px;
  }

  .contact-cta p {
    font-size: 16px;
  }
}
/* Workflow Section */
.workflow-section {
  background: #f5f7fa;
  border-radius: 20px;
  padding: 80px 40px;
}

/* Subtitle */
.workflow-subtitle {
  text-align: center;
  max-width: 750px;
  margin: -20px auto 60px;
  font-size: 18px;
  color: #555;
}

/* Steps container */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

/* Individual card */
.workflow-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Step number */
.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b3c5d, #1d6fa5);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Titles */
.workflow-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0b3c5d;
}

/* Text */
.workflow-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .workflow-section {
    padding: 60px 25px;
  }

  .workflow-subtitle {
    font-size: 16px;
  }
}
/* Industries Carousel */
.industries-carousel {
  text-align: center;
  padding: 90px 40px;
  background: #fff;
}

.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 60px auto 0;
}

.carousel-scroll {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  scrollbar-width: none;
}

.carousel-scroll::-webkit-scrollbar {
  display: none;
}

/* Cards */
.industry-card {
  min-width: 280px;
  background: #f7f9fc;
  padding: 35px 30px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  flex-shrink: 0;
}

.industry-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #0b3c5d, #1d6fa5);
  border-radius: 18px 0 0 18px;
}

.industry-card h3 {
  color: #0b3c5d;
  margin-bottom: 12px;
  font-size: 20px;
}

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

/* Navigation buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0b3c5d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}

.carousel-nav.left {
  left: -20px;
}

.carousel-nav.right {
  right: -20px;
}

.carousel-nav:hover {
  background: #1d6fa5;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-nav {
    display: none;
  }
}
/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  background: #134f78;
  color: #fff;
  position: relative;
}

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

.nav-logo {
  height: 40px;
}

.brand-name {
  font-size: 25px;
  font-weight: 600;
}

/* Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
}

.nav-links li a:hover {
  color: #aad4f5;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #439dda;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 16px;
  }
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.cap-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}
.cap-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.cap-card:hover img {
  transform: scale(1.08);
}

.cap-card h3 {
  margin-bottom: 12px;
  color: #0d3b66;
}

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





