:root {
  --accent: #ff6b6b;
  --accent-2: #3b82f6;
  --muted: #6c757d;
  --title-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
  --topbar-height: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: var(--body-font);
  background: #fff;
  color: #000;
  overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* NAV BAR */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  height: var(--topbar-height);
}

.nav-container {
  background: #ffffff;
  max-width: 1400px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-circle {
  height: 54px;
  display: flex;
  align-items: center;
}

.logo-circle img {
  width: 325px;
  height: 54px;
  object-fit: contain;
  display: block;
  margin-left: -115px;
}

.nav-links {
  display: flex;
  gap: 30px;
  margin-left: 670px;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.85;
  transition: 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent);
}

/* HERO SECTION */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin-top: var(--topbar-height);
}

.hero-bg-image {
  background-image: url("/img/primbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}

.hero-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(30, 63, 102, 0.75);
  z-index: 1;
}

.hero-center {
  max-width: 720px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.headline-small {
  color: #ffffff;
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: center;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title.title-smaller {
  font-family: var(--title-font);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* BUTTON */
.btn {
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.2s;
}

.btn-yellow {
  background: #FFD700;
  color: #fbfafa;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 700;
}

.cta-row:hover {
  transform: scale(1.1);
}

.btn:hover {
  transform: translateY(-3px);
}

/* LOGO SECTION */
.logo-section {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 0 20px 40px;
}

.logo-container {
  display: flex;
  gap: 150px;
  flex-wrap: wrap;
  justify-content: center;
}

.logo-placeholder {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
}

/* ABOUT US */
#about {
  min-height: auto;
  padding: 60px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 42px;
}

.about-text-left {
  max-width: 850px;
  margin: 20px auto;
  text-align: justify;
  text-align-last: left;
  font-size: 20px;
  line-height: 2.0;
  color: #333;
}

.about-mission {
  margin-top: 10px;
  font-weight: 400;
}

.title-underline {
  width: 500px;
  height: 7px;
  background: linear-gradient(to right, #FFD700, #FFD700 85%, transparent);
  margin: 10px auto 30px;
  position: relative;
}

.title-underline::after {
  content: '✦';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  color: #FFD700;
  font-size: 20px;
}

/* WE OFFER */
.section-we-offer {
  background-color: #1e3f66;
  color: white;
  width: 100%;
  min-height: auto;
  padding: 60px 20px 80px;
}

.we-offer-container {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.we-offer-title {
  font-size: 60px;
  margin-bottom: 10px;
}

.we-offer-text {
  font-size: 20px;
  margin-bottom: 20px;
}

.we-offer-cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.we-offer-card {
  width: 250px;
  height: 300px;
  border: 2px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 12px;
  overflow-y: auto;
  text-align: left;
}

.card-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.card-list {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.4;
}

.card-icon-fa {
  font-size: 50px;
  color: #FFD700;
  display: block;
  text-align: center;
  margin: 0 auto 15px;
}

/* PARTNERS */
#partners {
  min-height: auto;
  padding: 60px 20px 80px;
}

.partner-title {
  color: #1e3f66;
  margin-bottom: 50px;
  margin-top: 0;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 100px;
  justify-content: center;
  align-items: center;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Add this new rule for partner logos */
.partner-item .logo-placeholder {
  width: 155px;
  height: 155px;
  object-fit: contain;
  display: block;
}

.partner-item .partner-name {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

/* READY TO APPLY SECTION */
.ready-section {
  background: #1e3f66;
  color: white;
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.ready-box {
  max-width: 650px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ready-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 18px;
}

.ready-text {
  max-width: 650px;
  margin: 0 auto 20px;
  text-align: justify;
  text-align-last: left;
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
}

/* CONTACT LINKS */
.ready-contact {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 15px;
  line-height: 1.5;
  text-align: left;
  width: 100%;
}

.social-link, .phone-link, .address-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 25px;
  justify-content: flex-start;
  width: 100%;
  font-size: 13px;
}

.social-logo, .contact-logo {
  width: 24px;
  height: 24px;
  font-size: 24px;
  flex-shrink: 0;
  text-align: center;
}

/* READY BUTTON */
.btn-ready {
  background: #FFD700;
  color: #fbfafa;
  padding: 16px 35px;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.25s;
  margin-top: 10px;
}

.btn-ready:hover {
  transform: translateY(-5px);
}

/* TABLET RESPONSIVE */
@media(max-width: 1024px) {
  .nav-container {
    padding: 0 30px;
  }

  .logo-circle img {
    margin-left: -80px;
  }

  .nav-links {
    margin-left: 400px;
    gap: 20px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }

  .logo-container {
    gap: 100px;
  }
}

/* MOBILE RESPONSIVE - Primary breakpoint for phones */
@media(max-width: 768px) {
  :root {
    --topbar-height: auto;
  }

  /* Navigation */
  .topbar {
    height: auto;
    padding: 15px 0;
  }

  .nav-container {
    flex-direction: column;
    padding: 20px 20px;
    gap: 20px;
  }

  .logo-wrapper {
    width: 100%;
    justify-content: center;
    padding-left: 28px;
  }

  .logo-circle {
    height: 80px;
  }

  .logo-circle img {
    width: 100%;
    max-width: 350px;
    height: 65px;
    margin-left: 18px;
  }

  .nav-links {
    margin-left: 0;
    gap: 8px 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 12px;
    font-weight: 600;
  }

  /* Hero Section */
  .hero {
    margin-top: 160px;
    min-height: 60vh;
    padding: 30px 15px;
  }

  .hero-center {
    padding: 0 15px;
  }

  .headline-small {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .title.title-smaller {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  /* Buttons */
  .btn-yellow {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-ready {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* Logo Section */
  .logo-section {
    margin: 30px 0;
    padding: 0 15px 30px;
  }

  .logo-container {
    gap: 40px;
  }

  .logo-placeholder {
    width: 80px;
    height: 80px;
  }

  /* About Section */
  #about {
    padding: 40px 15px;
  }

  .about-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .about-text-left {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    padding: 0 5px;
  }

  .title-underline {
    width: 80%;
    max-width: 300px;
    height: 5px;
  }

  .title-underline::after {
    font-size: 16px;
    right: -8px;
  }

  /* We Offer Section */
  .section-we-offer {
    padding: 40px 15px 50px;
  }

  .we-offer-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .we-offer-text {
    font-size: 16px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .we-offer-cards {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .we-offer-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    min-height: 250px;
  }

  .card-icon-fa {
    font-size: 40px;
    margin-bottom: 12px;
  }

  .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .card-list {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Partners Section */
  #partners {
    padding: 40px 15px 50px;
  }

  .partner-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 10px;
  }

  .partner-item .logo-placeholder {
    width: 100px;
    height: 100px;
  }

  .partner-item .partner-name {
    font-size: 14px;
    margin-top: 8px;
    text-align: center;
  }

  /* Ready Section */
  .ready-section {
    min-height: auto;
    padding: 40px 15px;
  }

  .ready-box {
    padding: 0 10px;
  }

  .ready-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .ready-text {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 25px;
  }

  .ready-contact {
    font-size: 13px;
    text-align: left;
  }

  .social-link, .phone-link, .address-link {
    font-size: 13px;
    margin-bottom: 18px;
    justify-content: flex-start;
  }

  .social-logo, .contact-logo {
    width: 22px;
    height: 22px;
    font-size: 22px;
  }

  /* Disable hover effects on mobile */
  .cta-row:hover,
  .btn:hover,
  .btn-ready:hover {
    transform: none;
  }

  .nav-links a:hover {
    transform: none;
  }
}

/* EXTRA SMALL MOBILE - For smaller devices */
@media(max-width: 480px) {
  .nav-container {
    padding: 15px 15px;
    gap: 18px;
  }

  .logo-circle {
    height: 70px;
  }

  .logo-circle img {
    width: 90%;
    max-width: 300px;
    height: 55px;
    margin-left: 15px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 5px 10px;
  }

  .hero {
    margin-top: 145px;
  }

  .title.title-smaller {
    font-size: 24px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text-left {
    font-size: 15px;
  }

  .we-offer-title {
    font-size: 30px;
  }

  .we-offer-text {
    font-size: 15px;
  }

  .partner-title {
    font-size: 30px;
  }

  .partner-grid {
    gap: 25px;
  }

  .partner-item .logo-placeholder {
    width: 80px;
    height: 80px;
  }

  .logo-container {
    gap: 30px;
  }

  .logo-placeholder {
    width: 70px;
    height: 70px;
  }

  .ready-title {
    font-size: 24px;
  }

  .btn-ready {
    padding: 12px 24px;
    font-size: 15px;
  }
}