/* =============================
   Global Styles
============================= */
:root {
  --primary: #2563eb;
  --secondary: #0ea5e9;
  --success: #22c55e;
  --dark: #1e293b;
  --light: #f8fafc;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.3s ease-in-out;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header Flex */
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #0e1b7b;
  position: relative;
}

/* Logo + Title */
.title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.title h1 {
  font-size: 22px;
  margin: 0;
}

/* Navbar */
.nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.nav ul li a:hover {
  color: #25D366;
}

/* Toggle Button */
.nav-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0e1b7b;
    text-align: center;
    padding: 15px 0;
  }

  .nav.active {
    display: block;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .nav-toggle {
    display: block;
  }
}

/* =============================
   Hero Banner
============================= */
#hero-banner {
  background: linear-gradient(120deg, #0e1b7b, #1c3bb0);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
}

#hero-banner h1.h-title {
  font-size: 36px;
  margin: 10px 0;
  font-weight: 700;
}

#hero-banner .about-text {
  max-width: 800px;
  margin: 20px auto;
  font-size: 18px;
}

.h-button {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.h-button:hover {
  background: #1ebe57;
}

/* =============================
   Services
============================= */
#our-services {
  padding: 60px 20px;
  background: #fff;
}

.section-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0e1b7b;
}

.service-para {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
  color: #555;
}

.vertical {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.board {
  background: #f9f9f9;
  padding: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.board:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.ikon-wrapper {
  font-size: 30px;
  color: #0e1b7b;
  margin-bottom: 10px;
}

.board-heading {
  font-size: 20px;
  color: #0e1b7b;
  margin-bottom: 10px;
}

.board-para {
  font-size: 15px;
  color: #444;
}


/* =============================
   Responsive
============================= */
@media (max-width: 768px) {
 
  #hero-banner h1.h-title {
    font-size: 28px;
  }

  .board {
    max-width: 100%;
  }
}
