
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* All headings use Manrope */
h1, h2, h3, h4, h5, h6,
.section-heading,
.featured-heading,
.contact-heading {
  font-family: 'Manrope', sans-serif;
}

/* Small titles */
.section-small-title,
.featured-small-title,
.contact-small-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
/* HERO SECTION */
.hero {
  background: #FF6347;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
}

/* ===== NAVBAR STYLES ===== */

.navbar {
  padding: 18px 60px;
  transition: all 0.3s ease;
}

/* Transparent (Hero State) */
.navbar-transparent {
  background: transparent;
}

.navbar-transparent .nav-link {
  color: white !important;
}

.navbar-transparent .logo-text {
  color: white;
}

/* White (Scrolled State) */
.navbar-white {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar-white .nav-link {
  color: #333 !important;
}

.navbar-white .logo-text {
  color: #FF6347;
}

/* LOGO BOX */
.logo-box {
  background: #e74c3c;
  width: 60px;
  height: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  margin-right: 40px;
}

.logo-box span:first-child {
  font-size: 22px;
}

.logo-box span:last-child {
  font-size: 16px;
  font-weight: 400;
}

/* NAV LINKS */
.nav-link {
  margin: 0 18px;
  font-weight: 500;
}

/* ================= LOGIN BUTTON ================= */

/* Default (Hero - transparent navbar) */
.btn-login {
  border: 1px solid #ffffff;
  color: #ffffff;
  background: transparent;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

/* Hover when navbar is transparent */
.navbar-transparent .btn-login:hover {
  background: #2ca58d;
  border-color: #2ca58d;
  color: #ffffff;
}

/* When navbar turns white */
.navbar-white .btn-login {
  border: 1px solid #2ca58d;
  color: #2ca58d;
  background: transparent;
}

/* Hover when navbar is white */
.navbar-white .btn-login:hover {
  background: #2ca58d;
  color: #ffffff;
}

.btn-login:hover {
  background: rgba(255,255,255,0.1);
}

.btn-green {
  background: #2ca58d;
  color: white;
  border: none;
  padding: 8px 22px;
  margin-left: 15px;
}

.btn-green:hover {
  background: #218a75;
}

.section-two {
    background: #ffffff;
    padding: 120px 0;
  }
  
  .section-small-title {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #1f2d3d;
  }
  
  .section-heading {
    font-size: 32px;
    font-weight: 300;
    color: #1f2d3d;
    line-height: 1.3;
    margin-top: 20px;
  }
  
  .section-text {
    margin-top: 25px;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
  }
  
  .section-btn {
    margin-top: 35px;
    padding: 12px 40px;
    font-size: 18px;
  }
  
  .section-image {
    max-width: 100%;
  }

  /* ===== FEATURED SECTION ===== */

/* ===== FEATURED SECTION FIXED ===== */

.featured-section {
  background: #fceeec;
  padding: 120px 0;
  text-align: center;
}

.featured-small-title {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #1f2d3d;
}

.featured-heading {
  font-size: 42px;
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 60px;
  color: #1f2d3d;
}

/* Card wrapper with fixed square */
.featured-card {
  position: relative;
  width: 100%;
  max-width: 230px;   /* controls size */
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.fast-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #2ca58d;
  color: white;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 3px;
}

/* ===== CONTACT SECTION ===== */

.contact-section {
  background: #b6d1ca; /* teal background */
  padding: 120px 0;
}
.contact-inner {
  max-width: 520px;   /* controls form width */
}

.contact-small-title {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
  color: #1f2d3d;
}

.contact-heading {
  font-size: 36px;
  font-weight: 300;
  margin-top: 15px;
  color: #1f2d3d;
}

.contact-subtext {
  margin-top: 15px;
  margin-bottom: 40px;
  color: #1f2d3d;
  font-size: 15px;
}

.contact-input {
  width: 100%;
  padding: 5px 14px;
  margin-bottom: 18px;
  border: 1px solid #2e3b3b;
  background: transparent;
  outline: none;
}

.contact-input::placeholder {
  color: #4b5c5c;
}

.contact-textarea {
  height: 140px;
  resize: none;
}

.contact-btn {
  border: 1px solid #2ca58d;
  background: transparent;
  color: #2ca58d;
  padding: 10px 30px;
  font-weight: 500;
  margin-top: 10px;
}

.contact-btn:hover {
  background: #2ca58d;
  color: white;
}

.contact-image {
  max-width: 100%;
}

/* ===== FINAL FOOTER ===== */

.footer-section {
  background: #FF6347;
  padding: 10px 0;
  text-align: center;
  color: #1f2d3d;
}

.footer-text {
  font-size: 12px;
  margin-bottom: 3px;
  margin-top: 25px;
}

.footer-btn {
  background: #2ca58d;
  color: white;
  border: none;
  padding: 4px 6px;
  font-weight: 500;
  font-size: 12px;
}

.footer-btn:hover {
  background: #218a75;
}

.footer-icons {
  margin-top: 20px;
}

.footer-icons i {
  margin: 0 5px;
  font-size: 12px;
  cursor: pointer;
  color: #E3362F;
}

.footer-links {
  font-size: 10px;
}

.footer-links a {
  color: #1f2d3d;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 10px;
  margin-top: 5px;
  color:#888;
  margin-bottom: 25px;
}
.container {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* FAQ Styles */
/* ===== FAQ PAGE ===== */

.faq-section {
  background: #ffffff;
  padding: 80px 0 120px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  font-weight: 500;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 35px;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 10px;
}

.faq-answer {
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  color: #444;
}

.faq-answer a {
  color: #2ca58d;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}
/* ORANGE DEFAULT NAVBAR */
.navbar-orange {
  background: #FF6347;
  transition: all 0.3s ease;
}

/* White text when orange */
.navbar-orange .nav-link {
  color: white !important;
}

.navbar-orange .btn-login {
  color: white;
  border: 1px solid white;
}
.contact-section {
  scroll-margin-top: 90px; /* Adjust based on navbar height */
}
/* MAIN LAYOUT */
.signup-section {
  background: #fff;
}

.signup-right {
  background: #fceeec;
  padding: 40px;
}

.signup-box {
  width: 100%;
  max-width: 400px;
}

.small-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.terms-text {
  font-size: 12px;
  color: #555;
}

/* IMAGE STACK */
.signup-left {
  background: #f4f4f4;
}

.image-stack {
  position: relative;
  width: 300px;
  height: 300px;
}

.image-stack img {
  position: absolute;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.img1 {
  top: -20px;
  left: -100px;
  width: 350px !important;
}

.img2 {
  top: 40px;
  left: 150px;
  z-index: 2;
  width: 330px !important;
}

.img3 {
  top: 242px;
  left: 60px;
  z-index: 1000;
}

@media (max-width: 991.98px) {
  .login-image-col {
    display: none !important;
  }
}

.signup-footer {
  background: #ff5c41;
  color: white;
  padding: 30px 0;
}

.signup-footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.footer-icons i {
  font-size: 16px;
  cursor: pointer;
}

.pricing-hero {
  background: #f4f4f4;
  padding: 50px 20px;
}

.pricing-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.pricing-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 15px;
}

.pricing-description {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}
.processing-section {
  background: #9db7b0;
  padding: 80px 20px;
}

.small-title {
  font-size: 13px;
  letter-spacing: 1px;
}

.processing-title {
  font-size: 32px;
  margin-top: 10px;
}

.logo-row img {
  height: 45px;
  margin: 0 25px;
}
.faq-section {
  padding: 80px 20px;
  background: #f4f4f4;
}

.faq-heading {
  font-size: 28px;
}

.faq-item h5 {
  font-weight: 600;
}
