/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: #ffffff;
  background:white;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;            
  left: 0;           
  width: 100%;       
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 80px;
  background:   radial-gradient(80% 120% at 90% 30%, #0e2a47 0%,  #050b17 55%, #020814 100%)
    
}

.nav-left h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nav-left p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 420px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover {
    color: #7cf03d;
}
.nav-links li{
  list-style: none;
}


.cta-btn {
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background:#7cf03d;
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
    margin-right: -60px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-left p {
    display: none; /* hide tagline on mobile */
  }
  .nav-left h3{
    margin-left: -65px;
  }
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 80px 40px;
  background:   radial-gradient(80% 120% at 10% 10%, #0e2a47 0%, #050b17 55%, #020814 100%);
}

.hero-left {
  max-width: 58%;
}

.hero-left h1 {
  font-size: 88px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.hero-text em {
  font-style: italic;
}

/* HERO IMAGE */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 460px;
  border-radius: 10px;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* STATS */
.stats {
  display: flex;
  gap: 28px;
  padding: 40px 80px 80px;
  background:    radial-gradient(80% 120% at 90% 30%,#0e2a47 0%,#050b17 55%,#020814 100%)

}

.stat-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  padding: 28px 36px;
  border-radius: 16px;
  min-width: 240px;
}

.stat-card h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

/* trustie section */

.trustie{
    background-color: rgb(0, 70, 150);

}

.trustie_text h2{
    margin-left: 150px;
    font-weight: 700;
    font-size: 35px;
}
.trustie_img{
    margin-left: 150px;
    margin-top: 30px;
    
}
.img1{
    height: 250px;
    width: 500px;
    margin-right: 30px;
    margin-bottom: 30px;
}
.img2{
    height: 300px;
    width: 550px;
    margin-right: 20px;
    margin-bottom: 10px;
}
.img3{
    height: 50px;
    margin-bottom: 120px;
}

/* Our Services section */
.our_services{
  background-color: #ffffff;
  margin-top: 80px;
}
.services_header1{
  text-align: center;
  color: #112bbb;
  margin-bottom: 20px;
}

.services_header2{
  text-align: center;
  color: #020814;
  font-weight: 700;
  font-size: 24px;
}
.story {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
  padding: 70px 5%;
  background: #fafafa;
  flex-wrap: wrap; /* allows stacking on small screens */
}

.story > div {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 30%;
  min-width: 280px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* changed from space-between */
  align-items: center; /* centers the icon, h2, p, and a */
  padding: 20px;
}

.story > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.story i {
  font-size: 40px;
  color: #0e2a47;
  margin-bottom: 15px;
}

.story h2 {
  font-size: 20px;
  color: #000000;
  margin: 0 0 10px;
}

.story p {
  font-size: 15px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 20px;
}

.story a {
  font-weight: bold;
  color: #0e2a47;
  text-decoration: none;
}

.story a:hover {
  text-decoration: underline;
}

/* Our Portfolio */

.portfolio {
  padding: 80px 5%;
  background: #081324;
  text-align: center;
}

.portfolio_header h4 {
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.portfolio_subheader h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 40px;
}

.images_portfolio {
  display: flex;
  flex-wrap: wrap; /* makes it responsive */
  justify-content: center;
  gap: 20px; /* space between images */
}

.images_portfolio img {
  width: 250px; /* adjust as needed */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.images_portfolio img:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.about {
  width: 100%;
  padding: 80px 100px;
}

.small-title {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

.about h1 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
  color: #000000;
}

.about-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about-image img {
  width: 480px;
  height: auto;
}

.about-content {
  max-width: 600px;
}

.about-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.about-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.about-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000000;
}

.check {
  position: relative;
  padding-left: 30px;
}

.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 3px;
  color: #0b5ed7;
  font-weight: bold;
}

.read-more {
  margin-top: 20px;
  padding: 12px 30px;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.read-more:hover {
  background: #084298;
}

/* TESTIMONIAL SECTION */

.testimonials {
  background: #f5f7ff;
  padding: 80px 20px;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}

.testimonial-tag {
  color: #1e40ff;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000000;
}

.testimonial-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 420px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-card i {
  color: #040404;
}


.testimonial-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
  color: #000000;
}

.stars {
  color: #1e40ff;
  font-size: 14px;
}

/* BLOG SECTION */

.blog {
  text-align: center;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.blog-tag {
  color: #1e40ff;
  font-size: 14px;
}

.blog h2 {
  font-size: 32px;
  margin-bottom: 50px;
  color: #000000;
}

.blog-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  width: 320px;
  text-align: left;
}

.blog-card img {
  width: 100%;
  border-radius: 10px;
}

.blog-meta {
  font-size: 16px;
  color: #777;
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.blog-meta i {
  margin-right: 5px;
}

.blog-card h3 {
  font-size: 15px;
  line-height: 1.5;
  color: #000000;
}

.blog-card a {
  font-size: 13px;
  color: #1e40ff;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #fff;
  padding-top: 60px;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 60px 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  color: #ccc;
  line-height: 1.7;
  text-decoration: none;
}

.socials i {
  margin-right: 10px;
  font-size: 16px;
  cursor: pointer;
}

.footer-bottom {
  background: #0b3aa4;
  text-align: center;
  padding: 12px;
  font-size: 12px;
}

/* TABLET (≤ 1024px) */
@media (max-width: 1024px) {

  /* HERO */
  .hero {
    padding: 50px 40px;
  }

  .hero-left {
    max-width: 60%;
  }

  .hero-left h1 {
    font-size: 64px;
  }

  .hero-right img {
    width: 380px;
  }

  /* STATS */
  .stats {
    padding: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* TRUSTIE */
  .trustie_text h2,
  .trustie_img {
    margin-left: 60px;
  }

  .img1,
  .img2 {
    width: 100%;
    height: auto;
  }

  /* ABOUT */
  .about {
    padding: 60px 40px;
  }

  .about-container {
    gap: 40px;
  }

  .about-image img {
    width: 380px;
  }
}


/* MOBILE (≤ 768px) */

@media (max-width: 768px) {

  /* HERO STACK */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 25px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left h1 {
    font-size: 48px;
    line-height: 1.1;
  }

  .hero-text {
    font-size: 15px;
    margin: 0 auto 30px;
  }

  .hero-right img {
    width: 90%;
  }

  /* STATS STACK */
  .stats {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .stat-card {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* TRUSTIE */
  .trustie_text h2 {
    margin-left: 0;
    text-align: center;
  }

  .trustie_img {
    margin-left: 0;
    text-align: center;
  }

  .img3 {
    margin-bottom: 30px;
  }

  /* SERVICES */
  .story > div {
    width: 100%;
  }

  /* PORTFOLIO */
  .images_portfolio img {
    width: 90%;
  }

  /* ABOUT */
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-image img {
    width: 90%;
  }

  .about-content {
    max-width: 100%;
  }

  .check {
    padding-left: 0;
  }

  .check::before {
    display: none;
  }

  /* TESTIMONIALS */
  .testimonial-card {
    width: 100%;
    max-width: 360px;
  }

  /* BLOG */
  .blog-card {
    width: 100%;
    max-width: 340px;
  }

  /* FOOTER */
  .footer-container {
    padding: 0 30px 40px;
  }
}


/* SMALL PHONES (≤ 480px) */

@media (max-width: 480px) {

  .hero-left h1 {
    font-size: 36px;
  }

  .services_header2 {
    font-size: 20px;
  }

  .portfolio_subheader h2,
  .testimonials h2,
  .blog h2 {
    font-size: 24px;
  }

  .about h1 {
    font-size: 28px;
  }
  .hero{
    margin-top: 95px;
  }
}
