/* General */
body {
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* ================= HEADER ================= */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 8px 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;

}

/* Logo */
.logo img {
    height: 100px;
}

/* Navbar */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 70px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #007BFF;
}

/* Button */
.btn-blue {
    background-color: #004DA8;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.btn-blue:hover {
    background-color: #007BFF;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background-color: black;
    border-radius: 2px;
}

/* Responsive Header */

@media screen and (max-width: 1024px) {
    .nav-menu, .header-btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    /* hidden by default */
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        position: absolute;
        top: 80px; /* below header */
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        width: 200px;
    }

    /* visible when active */
    .nav-menu.active {
        display: flex;
    }

}
@media screen and (max-width: 768px) {
  .first-section {
    padding-top: 120px; /* bigger gap for mobile navbar */
  }
}


/* ================= HERO ================= */
.hero {
    height: 100vh;
    background-size: cover;
    background: url('Images/H\ E\ \ R\ O.png') no-repeat center center/cover; /* Add your background image here */
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 60px 0 60px;;
    color: white;
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    max-width: 600px;
    animation: fadeUp 1.2s ease forwards;
    z-index: 1;
    margin-top: 0;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    color: white; 
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-white {
    background-color: white;
    color: #007BFF;
    padding: 10px 18px;
    border: 2px solid #fdfeff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    text-decoration: none;
}

.btn-white:hover {
    background-color: #007BFF;
    color: white;
    transform: translateY(-2px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Hero */
@media screen and (max-width: 768px) {
    .hero {
        /*padding: 0 20px;*/
        padding: 40px 20px 0 20px;
        text-align: center;
        height: 80vh; /* adjust height for mobile */
        background-image: url('Images/Hero\ mobile\ img.png'); /* mobile-friendly image */
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* section 2 */
/* section 2 */
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Space Grotesk', sans-serif;
}

/* Section */
.trust-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 80px;
  font-size: 3rem;
  color: #004080;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 250px);
  gap: 20px;
}

/* Cards */
.card {
  background: #ffffff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-box {
  background: rgba(0, 123, 255, 0.1);
  color: #004DA8;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #333;
}

/* Images */
.image {
  overflow: hidden;
  border-radius: 12px;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.image img:hover {
  transform: scale(1.05);
}

/* Grid positioning (Desktop) */
.image-1 {
  grid-column: 1 / 2;  /* Left side */
  grid-row: 1 / 3;
}

.image-2 {
  grid-column: 3 / 4;  /* Right side */
  grid-row: 2 / 4;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
     gap: 20px;
  }
  
  /* Reset image positions (so they don’t span weirdly) */
  .image-1, 
  .image-2 {
    grid-column: auto;
    grid-row: auto;
    height: 250px; /* medium size for tablet */
  }

  .card {
    font-size: 0.95rem;
    padding: 16px;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .image-1, .image-2 {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 200px;
  }
  /* Removed reordering so flow is:
     Image-1 → all cards → Image-2 */
}


/*Section 3*/
.how-it-works {
  padding: 50px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-1px);
}

.circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: rgba(0, 123, 255, 0.1);
  color: #004DA8;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #222;
}

.step-desc {
  font-size: 0.95rem;
  color: #666;
}

/* Tablet view */
@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile view */
@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/*Testimonial section*/
/*
.testimonial-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  color: #004DA8;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(189, 189, 189, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card.tall {
  height: 300px;
}

.testimonial-card.short {
  height: 200px;
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
}

.profile h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.profession {
  font-size: 0.85rem;
  color: #777;
  margin: 2px 0;
}

.rating {
  font-size: 0.85rem;
  color: #f5a623;
}

.testimonial-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.4;
}
*/
.testimonial-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  color: #004DA8;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #f3f3f3;
  border-radius: 12px;
  height: 250px; /* fixed height so all cards are equal */
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  text-align: center;
  box-shadow: 0 4px 12px rgba(189, 189, 189, 0.08);
  padding: 0;
}

.coming-soon {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #555;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
body {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
  padding: 0;
}

.testimonials {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
}

.section-desc {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #f3f3f3;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.name {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.profession {
  margin: 2px 0;
  font-size: 14px;
  color: gray;
}

.rating {
  font-size: 14px;
  color: gold;
}

.description {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
/* Download App Section */
.download-app-section {
  padding: 50px 20px;
  background-color: #ffffff;
}

.download-app-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* QR Code */
.qr-code img {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s;
}

.qr-code img:hover {
  transform: scale(1.05);
}

/* Content */
.app-content {
  flex: 1;
  min-width: 280px;
}

.app-title {
  font-size: 3rem;
  color: #004DA8;
  margin-bottom: 15px;
}

.app-description {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.store-buttons a {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
}

.store-buttons img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.store-buttons img:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 12px;
  max-width: 500px;
  max-height: 200px;
  margin-top: 20px;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-text p {
  margin-bottom: 5px;
  font-size: 0.95rem;

}

.testimonial-text small {
  color: #555;
}

/* Responsive: Tablet */
@media (max-width: 992px) {
  .download-app-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .app-content {
    min-width: 0;
  }

  .store-buttons a {
    margin-right: 10px;
  }

  .testimonial-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
  .qr-code img {
    width: 200px;
    height: 200px;
  }

  .app-title {
    font-size: 1.5rem;
  }

  .store-buttons img {
    width: 120px;
  }
}

/* FAQ */

.footer-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Left Section */
.footer-left h3 {
  color: #000;
  margin-bottom: 15px;
}

.app-buttons a {
  display: inline-block;
  margin-right: 10px;
}

.app-buttons img {
  width: 120px;
  height: auto;
  border-radius: 8px;
}

/* Middle Section */
.footer-middle {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #007BFF;
}

/* Right Section */
.footer-right h4 {
  color: #333;
  margin-bottom: 10px;
}

.footer-right p {
  margin: 5px 0;
  color: #555;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.footer-right .copyright {
  margin-top: 10px;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-middle {
    gap: 40px;
    margin: 20px 0;
  }

  .app-buttons a {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .app-buttons img {
    width: 100px;
  }

  .social-icons img {
    width: 25px;
    height: 25px;
  }
}




/* Blog Page*/
/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
}

/* News & Resources Section */
.news-resources-section {
    background-color: #ffffff; /* Light background */
    padding: 100px 20px;
    text-align: center;
}

.news-resources-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.news-resources-section .section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #004DA8;
}

.news-resources-section .section-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px; /* Space before coming soon */
}

.news-resources-section .coming-soon {
    font-size: 24px;
    font-weight: bold;
    color: #1E1E1E; 
}

/* Responsive for tablets */
@media (max-width: 768px) {
    .news-resources-section {
        padding: 80px 15px;
    }
    .news-resources-section .section-title {
        font-size: 28px;
    }
    .news-resources-section .section-description {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .news-resources-section .coming-soon {
        font-size: 20px;
    }
}

/* Responsive for mobile */
@media (max-width: 480px) {
    .news-resources-section {
        padding: 60px 10px;
    }
    .news-resources-section .section-title {
        font-size: 24px;
    }
    .news-resources-section .section-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .news-resources-section .coming-soon {
        font-size: 18px;
    }
}
