* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

/* NAVBAR */
/* ================= NAVBAR ================= */
/* ================= NAVBAR ================= */

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | center nav | button */
  align-items: center;
  padding: 16px 8%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 42px;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV LINKS CENTER */
.navbar nav {
  display: flex;
  justify-content: center;  /* THIS centers menu */
  align-items: center;
  gap: 30px;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #ff7a00;
}

/* START NOW BUTTON */
.nav-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #ff7a00;
  background: transparent;
  color: #ff7a00;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.nav-btn:hover {
  background: #ff7a00;
  color: #fff;
}

/* START NOW BUTTON */
.nav-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid #ff7a00;
  background: transparent;
  color: #ff7a00;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.nav-btn:hover {
  background: #ff7a00;
  color: #fff;
}

/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  display: inline-block;
  cursor: pointer;
}

.dropbtn:hover {
  color: #ff6a00;
}

/* Dropdown menu */
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show on hover */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: #fff3ea;
  color: #ff6a00;
}
nav a:hover {
  color: #ff7a00;
}
.cta-btn:hover {
  background: #ff6a00;
  color: #fff;
}



/* BUTTON */
.nav-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 2px solid #ff6a00;
    background: transparent;
    color: #ff6a00;
    font-weight: 600;
}

.nav-btn:hover {
    background: #ff6a00;
    color: #fff;
}

.logo img {
  height: 42px;
}



/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  background: #fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.insights-hero {
    position: relative;
    height: 80vh;
    background: url("../images/insights-hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3)
    );
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    animation: fadeSlide 1.2s ease;
}

.breadcrumb {
    font-size: 14px;
    letter-spacing: 1px;
    color: #ff6a00;
}

.hero-content h1 {
    font-size: 48px;
    margin: 15px 0;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
    animation: fadeSlide 1.2s ease forwards;

}

/* INTRO */
.insights-intro {
    text-align: center;
    padding: 80px 15%;
    animation: fadeUp 1s ease;
}

.insights-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #ff6a00;
}

.insights-intro p {
    font-size: 18px;
    color: #555;
}

/* GRID */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 0 8% 100px;
}

.insight-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    animation: fadeUp 1.2s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.tag {
    font-size: 13px;
    color: #ff6a00;
    font-weight: 600;
}

.card-content h3 {
    font-size: 22px;
    margin: 10px 0;
}

.card-content p {
    color: #666;
    margin-bottom: 15px;
}

.card-content a {
    text-decoration: none;
    color: #ff6a00;
    font-weight: 600;
}

/* CTA */
.insights-cta {
    background: #ff6a00;
    color: #fff;
    text-align: center;
    padding: 80px 10%;
}

.insights-cta h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.insights-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-btn {
    background: #fff;
    color: #ff6a00;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}

/* ANIMATIONS */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RAFT GLOBAL FOOTER ===== */
.raft-footer {
    background: #0b0b0b;
    color: #ccc;
    padding-top: 60px;
    font-family: "Segoe UI", sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 8%;
    flex-wrap: wrap;
}

/* FOOTER COLUMNS */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.footer-logo span {
    color: #f26722; /* ORANGE ACCENT */
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    position: relative;
}

.footer-col h4::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #f26722;
    display: block;
    margin-top: 6px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-col span {
    color: #f26722;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #f26722;
    padding-left: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #222;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col h4::after {
        margin: 8px auto;
    }
}

