/* hero */
:root {
  --blue-dark: #002b5c;
  --blue-main: #2356a2;
  --green-accent: #5cb85c;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--blue-dark);
  color: var(--white);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navigation */
.hero-header {
  background-color: var(--blue-main);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.logo span {
  color: var(--green-accent);
}

.nav {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}


.nav li a:hover {
  color: var(--green-accent);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0;
  background-color: var(--blue-dark);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-left img {
  width: 150px;
  height: auto;
}

.hero-right {
  max-width: 600px;
}

.hero-right h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero-right h2 {
  color: var(--green-accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-right p {
  color: #ddd;
  line-height: 1.6;
  font-size: 1rem;
}

/* section 2 */
.vision-section {
  background: linear-gradient(rgba(0, 28, 64, 0.9), rgba(0, 28, 64, 0.9)),
    url('viss.png') no-repeat center/cover;
  color: #fff;
  padding: 4rem 0;
}

.vision-section .container {
  max-width: 1100px;
  margin: auto;
}

.vision-intro {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: #dcdcdc;
}

.vision-statement {
  margin-bottom: 3rem;
  text-align: center;
}

.vision-statement h2 {
  font-size: 1.6rem;
  text-decoration: underline;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.vision-statement h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.ventures-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2e4a68;
}

.ventures-box h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ventures-box p {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.ventures-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.ventures-btn:hover {
  background-color: #5cb85c;
  color: #fff;
  border-color: #5cb85c;
}

@media (max-width: 768px) {
  .vision-statement h3 {
    font-size: 1.2rem;
  }

  .ventures-box h2 {
    font-size: 1.3rem;
  }
}


/* 3 */

.approach-section {
  background-color: #04345c;
  color: white;
  padding: 5rem 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  align-items: center;
}

.approach-text h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.approach-text p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #e0e0e0;
}

.approach-image img {
  width: 100%;
  max-width: 450px;
  display: block;
  margin: auto;
}

/* Stages Grid */
.stages-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stage-box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #2e4a68;
}

.stage-box h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stage-box p {
  font-size: 0.95rem;
  color: #dcdcdc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .approach-text h2 {
    font-size: 1.5rem;
  }
}


/* 4 */

.focus-section {
  background: url('focus.png') no-repeat center center/cover;
  color: white;
  padding: 5rem 0;
  position: relative;
}

.focus-title {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 3px solid white;
  display: inline-block;
  margin-bottom: 3rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.focus-box {
  background-color: rgba(0, 38, 80, 0.95);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #0c3c65;
}

.focus-box .icon {
  font-size: 2.5rem;
  color: #00c2ff;
  margin-bottom: 1rem;
}

.focus-box h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.focus-box p {
  font-size: 1rem;
  color: #cfdff5;
  margin-bottom: 1rem;
}

.focus-box ul {
  list-style: none;
  padding-left: 1rem;
}

.focus-box ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  color: #cfdff5;
}

.focus-box ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00c2ff;
  font-size: 1.2rem;
  line-height: 1;
}

.cta-button {
  text-align: right;
  margin-top: 2rem;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  padding: 0.7rem 1.5rem;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background-color: white;
  color: #04345c;
}

/* 5 */
.one-vision-section {
  background-color: #003366;
  color: white;
  padding: 4rem 0;
}

.vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.image-column {
  flex: 1 1 40%;
}

.image-box {
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid #013056;
  border-radius: 5px;
  overflow: hidden;
}

.image-box.large {
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
}

.small-boxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-box.small {
  width: 100%;
  height: 100px;
}

.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.6rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  font-size: 0.9rem;
}

.text-column {
  flex: 1 1 55%;
}

.text-column h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  border-bottom: 2px solid white;
  display: inline-block;
}

.text-column h2 span {
  color: #00c2ff;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.7;
  color: #d6e9ff;
}

/* contact */
.contact-section {
  background: #12121e;
  color: #fff;
  padding: 4rem 2rem;
}

.contact-section .container {
  max-width: 800px;
  margin: auto;
}

.contact-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #8ef43c;
  margin-bottom: 10px;
}

.contact-section .blue-dot {
  color: #00c2ff;
  margin-right: 5px;
}

.contact-section .subtext {
  font-size: 1rem;
  margin-bottom: 20px;
}

#contactForm .form-group {
  margin-bottom: 1rem;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #444;
  padding: 10px;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.submit-btn {
  margin-top: 1rem;
  background: #8ef43c;
  border: none;
  padding: 10px 25px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #76e132;
}

.privacy-note {
  font-size: 0.8rem;
  color: #aaa;
  margin-top: 10px;
}

/* Footer */
.site-footer {
  background-color: #1e56a0;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}

.footer-logo {
  height: 40px;
}

.footer-center p {
  margin: 5px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #8ef43c;
}

.footer-right a {
  margin-left: 15px;
  color: #fff;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}



/* Extend your existing .intel-grid */
.intel-grid.two-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.why-choose-us .intel-box ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.why-choose-us .intel-box ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--primary-green);
  font-weight: bold;
}

/* Optional: Icon styling for h3 headers */
.why-choose-us .intel-box h3 i {
  margin-right: 0.5rem;
  color: var(--accent-blue);
}

.highlight-glow {
  color: #8ef43c;
  text-shadow: 0 0 10px #8ef43c, 0 0 20px #8ef43c;
}

.form-response {
  margin-top: 15px;
  font-size: 16px;
}
