/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

/* ========== Topbar & Header ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: rgb(31, 58, 80);
  color: #fff;
  width: 100%;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 70px;
}

.logo h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgb(217, 144, 9);
}

/* ========== Navigation / Links ========== */
.hamburger {
  display: none;
  font-size: 44px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navBar {
  display: block;
}

.navLinks {
  width: 100%;
  /* overflow-x: hidden; */ /* removed to allow dropdown to show */
}

.linkRight {
  display: flex;
  flex-direction: row;
  gap: 27px;
  align-items: center;
  list-style: none;
}

.linkRight a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.linkRight a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.linkRight a:hover {
  color: rgb(217, 144, 9);
}

.linkRight a:hover::after {
  width: 100%;
}

.linkRight button {
  padding: 6px 12px;
  background: rgb(217, 144, 9);
  width: 120px;
  color: black;
  border: none;
  height: 40px;
  border-top-right-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.linkRight button:hover {
  background: white;
  color: rgb(31, 58, 80);
}

/* ========== Dropdown Menu ========== */
.linkRight li.dropdown {
  position: relative; /* parent reference for absolute menu */
}

/* Dropdown appears ABOVE parent link */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* show above the link */
  left: 0;
  margin-top: 5px;
  background: white;
  min-width: 150px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: rgb(31, 58, 80);
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgb(217, 144, 9);
  color: black;
  font-weight: bold;
}


/* .linkRight li.dropdown:hover > .dropdown-menu {
  display: block;
} */

/* Desktop: show on hover */
@media (min-width: 451px) {
  .linkRight li.dropdown:hover > .dropdown-menu {
    display: block;
  }
}

/* ========== Mobile / Responsive ========== */
@media (max-width: 450px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 15px;
    gap: 10px;
  }

  .logo {
    margin-left: 0;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    margin-left: 40px;
    margin-bottom: 10px;
  }

  .navBar {
    display: none;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .navBar.active {
    display: block !important;
  }

  .linkRight {
    flex-direction: column;
    gap: 20px;
    padding: 10px 20px;
  }

  .linkRight button {
    background-color: rgb(223, 181, 104);
    color: #555;
    width: 100%;
    border-radius: 6px;
  }

  .linkRight a {
    color: #fff !important;
    font-size: 18px;
  }

  /* Mobile dropdown shows below parent (clickable) */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    background-color: rgb(31, 58, 80);
    border-radius: 0;
    box-shadow: none;
    display: none; /* hidden initially */
  }

  .dropdown-menu li a {
    background-color: rgb(223, 181, 104) !important;
    color: #555 !important;
  }

  /* Show dropdown when parent gets focus */
  .linkRight li.dropdown:focus-within > .dropdown-menu {
    display: block;
  }
}








/* ===== Cargo Booking Header ===== */
.cargo-header {
  position: relative; /* needed for overlay */
  height: 80vh;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: white; /* text color better on dark overlay */
  background: url('./cargo hero.jpg') no-repeat center center / cover fixed;
  overflow: hidden;
}

/* Overlay for shadow effect */
.cargo-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black overlay */
  z-index: 1;
}

/* Text content inside header */
.cargo-header * {
  position: relative;
  z-index: 2; /* make text appear above overlay */
}


.cargo-header .container {
  /* margin-top: 50px; */
  padding-top: 100px;
  max-width: 800px;
  margin: 0 auto;
}

.cargo-header h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cargo-header p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color:white;
}

.cargo-header .btn-book {
  display: inline-block;
  padding: 12px 30px;
  background-color:rgb(213, 95, 115);
  color: #1f3a50;
  font-weight: bold;
  text-decoration: none;
  border-top-right-radius: 50px;
  transition: all 0.3s ease;
}

.cargo-header .btn-book:hover {
  background-color: #e0a000;
  color:#555;
}

/* ===== Responsive ===== */
@media (max-width: 450px) {
  .cargo-header {
    height: 60vh; /* reduce height for small screens */
    padding: 40px 15px; /* reduce padding */
  }

  .cargo-header .container {
    padding-top: 60px; /* adjust top padding */
    max-width: 95%; /* take almost full width */
  }

  .cargo-header h2 {
    font-size: 2rem; /* smaller heading */
    margin-bottom: 15px;
  }

  .cargo-header p {
    font-size: 0.95rem; /* smaller paragraph text */
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .cargo-header .btn-book {
    padding: 10px 20px; /* smaller button */
    font-size: 0.95rem;
  }
}










/* ===== Cargo Booking Form Section ===== */
.cargo-form-section {
  padding: 60px 20px;
  background-color:salmon;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.cargo-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color:white;
}

.cargo-form-section p {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 40px;
  color: #555;
  font-weight: bold;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Cargo Form Styles */
.cargo-form {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px 10px rgba(20, 22, 12, 0.851);
}

.cargo-form .form-group {
  margin-bottom: 20px;
}

.cargo-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color:black;
}

.cargo-form input,
.cargo-form select {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgb(117, 169, 211);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.cargo-form input:focus,
.cargo-form select:focus {
  border-color: #1f3a50;
}

/* Submit Button */
.btn-submit {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1f3a50;
  color: #fff;
  font-weight: 600;
  border: none;
  border-top-right-radius: 50px;
  margin-left: 200px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #29597b;
}

/* Responsive */
@media (max-width: 450px) {
  .cargo-form-section {
    padding: 40px 15px;
  }

  .cargo-form-section h2 {
    font-size: 1.8rem;
  }

  .cargo-form-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 95%;
  }

  .cargo-form {
    padding: 20px;
  }

  .cargo-form input,
  .cargo-form select {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .btn-submit {
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-left: 70px; /* center button on small screens */
    display: block;
    width: 60%;
    text-align: center;
  }
}












/* ===== Cargo Services Section ===== */
.cargo-services {
  padding: 60px 20px;
  background-color:#dab65e;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cargo-services .container {
  max-width: 1200px;
  margin: 0 auto;
}

.cargo-services h2 {
  font-size: 2.5rem;
  /* color:linear-gradient(to top, #ff6b6b, #ffd93d); */
  color:black;
  margin-bottom: 15px;
}

.cargo-services p {
  font-size: 1.1rem;
  color:rgb(92, 83, 83);
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 20px;
}

/* Grid for service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 80px;
}

/* Individual service card */
/* .service-card {
  background-color: #fff;
  border-top-right-radius: 100px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
} */
 .service-card {
  background-color: #fff;
  border-top-right-radius: 100px;
  padding: 30px 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

/* Create a pseudo-element for the gradient overlay */
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0; /* start from bottom */
  width: 100%;
  height: 0%; /* initially 0 */
  background: linear-gradient(to top, #ff6b6b, #ffd93d); /* gradient from bottom to top */
  z-index: 0;
  transition: height 0.5s ease; /* smooth animation */
  border-top-right-radius: 100px;
}

/* Keep the text above the overlay */
.service-card * {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}

.service-card:hover::before {
  height: 100%; /* fill from bottom to top */
}


.service-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  color:red;
  margin-bottom: 10px;
}

.service-card:hover h3{
  color:rgb(25, 117, 136);
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.service-card:hover p{
  color: white;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
/* ===== Responsive Design for Small Screens (max-width: 450px) ===== */
@media (max-width: 450px) {
  .cargo-services {
    padding: 40px 10px;
  }

  .cargo-services h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .cargo-services p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr; /* stack cards vertically */
    gap: 30px; /* reduce space between cards */
  }

  .service-card {
    padding: 20px 15px;
    border-top-right-radius: 60px;
  }

  .service-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}













/* ===== Pricing & Estimation Section ===== */
.pricing-estimation {
  padding: 80px 20px;
  background-color: rgb(31, 58, 80);
  /* background: linear-gradient(135deg, #f3c623,rgb(31, 58, 80) ); */
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #333;
}

.pricing-estimation .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Heading */
.pricing-estimation h2 {
  font-size: 2.5rem;
  color:white;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.pricing-estimation h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #1f3a50;
  margin: 10px auto 0;
  border-radius: 5px;
}

.pricing-estimation p {
  font-size: 1.1rem;
  color:wheat;
  max-width: 750px;
  margin: 20px auto 50px;
  line-height: 1.6;
}

/* Pricing Cards Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Individual Pricing Card */
.pricing-card {
  background:salmon;
  padding: 30px 20px;
  box-shadow: 50px 50px 5px 5px rgba(231, 225, 225, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Animated gradient overlay */
.pricing-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, #faf5f5, #ffd93d);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 15px;
}

.pricing-card * {
  position: relative;
  z-index: 2;
}

.pricing-card h3 {
  font-size: 1.4rem;
  color:white;
  margin-bottom: 15px;
}

.pricing-card p {
  font-size: 1rem;
  color:black;
  line-height: 1.6;
}

/* Hover Effects */
.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover::before {
  height: 100%; /* fill gradient upward */
}

.pricing-card:hover h3 {
  color:black;
}

.pricing-card:hover p {
  color:red;
}

/* ===== Responsive Design for Mobile (max-width: 450px) ===== */
@media (max-width: 450px) {
  .pricing-estimation {
    padding: 50px 15px;
  }

  .pricing-estimation h2 {
    font-size: 1.8rem;
  }

  .pricing-estimation p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-card {
    padding: 20px 15px;
  }

  .pricing-card h3 {
    font-size: 1.2rem;
  }

  .pricing-card p {
    font-size: 0.9rem;
  }
}











/* ===== How It Works / Step-by-Step ===== */
.how-it-works {
  padding: 60px 20px;
  background-color: rgb(144, 216, 144);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.how-it-works .container {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: 2.5rem;
  color: #1f3a50;
  margin-bottom: 15px;
}

.how-it-works p {
  font-size: 1.1rem;
  color:white;
  font-weight: bold;
  margin-bottom: 50px;
}

/* Steps container */
.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

/* Individual step */
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  position: relative;
}

/* Step number circle */
.step-number {
  width: 50px;
  height: 50px;
  background-color: #1f3a50;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

/* Step line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px; /* half of step-number width */
  top: 60px;
  width: 4px;
  height: calc(100% - 60px);
  background-color: #ccc;
}

/* Step text */
.step-text h3 {
  font-size: 1.3rem;
  color:rgb(45, 40, 40);
  margin-bottom: 5px;
}

.step-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive adjustments */
/* ===== Responsive Design (max-width: 450px) ===== */
@media (max-width: 450px) {
  .how-it-works {
    padding: 40px 10px;
  }

  .how-it-works h2 {
    font-size: 1.8rem;
  }

  .how-it-works p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .steps {
    gap: 20px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .step:not(:last-child)::after {
    left: 50%;
    top: 55px;
    width: 3px;
    height: 30px;
    transform: translateX(-50%);
  }

  .step-text h3 {
    font-size: 1.1rem;
  }

  .step-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}















/* ===== Safety & Insurance Section ===== */
.safety-insurance {
  padding: 80px 20px;
  background: linear-gradient(to right, #1f3a50, #2e8b57);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative overlay */
.safety-insurance::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
  z-index: 0;
}

.safety-insurance .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.safety-insurance h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffd93d;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.safety-insurance h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: #ffd93d;
  margin: 10px auto 25px;
  border-radius: 2px;
}

.safety-insurance p {
  font-size: 1.1rem;
  color: #f1f1f1;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== Safety Item Cards ===== */
.safety-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}

.safety-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  border-top: 4px solid #ffd93d;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.safety-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 217, 61, 0.25), rgba(255, 255, 255, 0));
  transition: width 0.4s ease;
  z-index: 0;
}

.safety-item:hover::before {
  background-color:white;
  width: 100%;
}

.safety-item h3 {
  font-size: 1.4rem;
  color: #ffd93d;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.safety-item:hover h3{
  color: #db0909;
}

.safety-item p {
  font-size: 1rem;
  color: #f9f9f9;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.safety-item:hover p{
  color: black;
}

.safety-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ===== Responsive (Max-width: 450px) ===== */
@media (max-width: 450px) {
  .safety-insurance {
    padding: 50px 15px;
  }

  .safety-insurance h2 {
    font-size: 1.8rem;
  }

  .safety-insurance h2::after {
    width: 50px;
    height: 3px;
    margin-bottom: 15px;
  }

  .safety-insurance p {
    font-size: 0.95rem;
    margin-bottom: 35px;
    padding: 0 10px;
  }

  .safety-items {
    grid-template-columns: 1fr; /* Stack all cards vertically */
    gap: 25px;
  }

  .safety-item {
    padding: 25px 15px;
    border-radius: 12px;
  }

  .safety-item h3 {
    font-size: 1.2rem;
  }

  .safety-item p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}










/* ===== FAQ Section ===== */
.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: #1f3a50;
  margin-bottom: 15px;
}

.faq-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* FAQ items */
.faq-item {
  margin-bottom: 20px;
  text-align: left;
  position: relative;
}

/* Hide default checkbox */
.faq-item input {
  display: none;
}

/* FAQ label */
.faq-item label {
  display: block;
  background-color: #1f3a50;
  color: #fff;
  padding: 15px 20px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq-item label:hover {
  background-color: #16324a;
}

/* FAQ answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  color: #333;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 1.5;
  border-left: 4px solid #1f3a50;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Show answer when checkbox checked */
.faq-item input:checked ~ .faq-answer {
  max-height: 500px;
  padding: 15px 20px;
}

/* Responsive adjustments */
/* ===== Responsive (Max-width: 450px) ===== */
@media (max-width: 450px) {
  .faq-section {
    padding: 40px 15px;
  }

  .faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .faq-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .faq-item label {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 15px;
  }

  .faq-item input:checked ~ .faq-answer {
    padding: 12px 15px;
  }
}















/* ===== Call-to-Action Section ===== */
.cta-section {
  padding: 60px 20px;
  /* background-color: #1f3a50; */
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: rgb(31, 58, 80);
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: rgb(31, 58, 80);
}

/* CTA buttons container */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* CTA buttons */
.cta-btn {
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Button types */
.cta-btn.primary {
  background-color: #ff9f1c;
  color: #fff;
}

.cta-btn.primary:hover {
  background-color: #c97f0f;
}

.cta-btn.secondary {
  background-color:#2e8b57;
  color:white;
}

.cta-btn.secondary:hover {
  background-color: #094e27;
}

.cta-btn.tertiary {
  background-color: #ff4c4c;
  color: #fff;
}

.cta-btn.tertiary:hover {
  background-color: #791c1c;
}

/* Responsive adjustments */
/* ===== Responsive (Max-width: 450px) ===== */
@media (max-width: 450px) {
  .cta-section {
    padding: 40px 15px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .cta-section p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-btn {
    width: 90%;
    font-size: 1rem;
    padding: 12px 20px;
    border-radius: 6px;
  }
}
















/* Footer Styles */
.site-footer {
  background-color:rgb(31, 58, 80);   /* dark background */
  color: #f9f9f9;            /* light text */
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 200px;
  margin-left:100px;
}


.footer-contact{
  color:rgb(217, 144, 9);
}

.col{
  display: flex;
  flex-direction: row;
  margin-left: -50px;
  margin-top: -25px;
}

.col p{
  margin-top: 30px;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer-contact a {
  color: #f9f9f9;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: color 0.3s;
  /* font-weight: bold; */
}

.footer-contact a:hover {
  color: #1abc9c;  /* accent color */
}

.footer-column h4 {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: rgb(217, 144, 9);
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: rgb(217, 144, 9);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: bold;
}

.footer-column ul li a:hover {
  color: #1abc9c;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #333;
  border-radius: 50%;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
  background-color: #1abc9c;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #aaaaaa;
}

.footer-bottom a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #1abc9c;
}

/* ====== Mobile / Responsive Footer for 450px ====== */
@media (max-width: 450px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }

  .footer-column {
    margin-left: 0; /* remove extra left margin */
    text-align: center;
    margin-top: -20px;
  }

  .footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .social-icons {
    justify-content: center;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: -80px;
  }

  .footer-bottom a {
    margin: 0 5px;
  }

  .col {
    flex-direction:row;
    margin-left: 0;
    margin-top: 0;
  }

  .col p {
    margin-top:30px;
  }

  .footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
  }
}
