
/* Header Base */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Main Container */
/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1400px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "poppins", Helvetica, sans-serif;
}

/* LINKS */
.navbar  a,
.dropbtn {
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #1f2a44;
  cursor: pointer;
  padding: 8px 0;
  font-family: "poppins", Helvetica, sans-serif;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  z-index: 1000;
}

.dropdown-content li {
  list-style: none;
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: #1f2a44;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: #f5f7fa;
}

/* SHOW DROPDOWN */
.dropdown.active > .dropdown-content {
  display: block;
}

/* SUB MENU */
.has-sub {
  position: relative;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 220px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
}

.has-sub.active > .sub-menu {
  display: block;
}

/* CARET SPACING */
.dropbtn i,
.has-sub i {
  margin-left: 6px;
  font-size: 12px;
}

/* CTA */
.cta-wrapper {
  margin-left: 24px;
}

.cta-btn {
  background: linear-gradient(90deg, #ff8a00, #ff5f00);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 24px;
  cursor: pointer;
}

.cta-btn span {
  margin-left: 6px;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 520px;
  background: #fff;
  display: none;
  grid-template-columns: 1fr auto 1fr;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  z-index: 1000;
}

/* ACTIVE STATE */
.dropdown.active .mega-menu {
  display: grid;
}

/* COLUMNS */
.menu-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.menu-column a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: #444;
  text-decoration: none;
}

/* .menu-column a:hover {
  color: #ff7a18;
} */

/* DIVIDER */
.menu-divider {
  width: 1px;
  background: #e6e6e6;
  margin: 0 20px;
}


/* FOOTER */
.menu-footer {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 18px;
}

.view-all-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 25px;
  background: #ef9920;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

/* BTN*/
/* From Uiverse.io by adamgiebl */ 
.cssbuttons-io-button {
  background: #ef9920;
  color: white;
  font-family: "poppins", Helvetica, sans-serif;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #ef9920;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.cssbuttons-io-button .icon {
  background: white;
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #ef9920;
  right: 0.3em;
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #ef9920;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}


/* HERO SECTION */
.ta-hero {
  height: 420px;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: white;
  position: relative;
  overflow: hidden;

  /* Dark gradient background */
  background: linear-gradient(120deg, #0b1426, #0f1f3d, #0b1426);
}

/* Soft glowing shapes */
.ta-hero::before,
.ta-hero::after {
  content: "";
  position: absolute;
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.12);
  filter: blur(10px);
}

.ta-hero::before {
  width: 180px;
  height: 180px;
  right: 120px;
  top: 80px;
}

.ta-hero::after {
  width: 120px;
  height: 120px;
  right: 180px;
  bottom: 60px;
}

/* CONTENT */
.ta-hero-content {
  max-width: 800px;
  z-index: 2;
}

/* MAIN TITLE */
.ta-hero h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

/* ORANGE TEXT */
.ta-accent,
.ta-text-gradient-primary {
  color: #ff7a18;
}

/* SUBTITLE */
.ta-subtitle {
  font-size: 20px;
  color: #000000 !important;
}

.ta-testimonial {
  background: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.ta-testimonial-box {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  border-bottom: 1px solid #ffffff;
  padding-bottom: 30px;
}

/* Author image */
.ta-author img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f4b37a;
}

/* Content */
.ta-content {
  flex: 1;
}

.ta-quote {
  font-size: 20px;
  line-height: 1.7;
  color: #6b7280;
  font-style: italic;
  margin-bottom: 18px;
}

/* Name */
.ta-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111;
}
.ta-testimonial-box:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}
/* Role */
.ta-role {
  font-size: 12px;
  letter-spacing: 1px;
  color: #6b7280;
}
.ta-article {
  background: #f7f7f7;
  padding: 60px 20px 0px;
  font-family: "Inter", sans-serif;
}

.ta-container {
  max-width: 900px;
  margin: auto;
}

.ta-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 20px;
}

.ta-title span {
  color: #ff7a1a;
}

.ta-text {
  color: #6b7280;
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 40px;
}

.ta-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-top: 0;
  margin-bottom: 30px;
}

.ta-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ta-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff3e6;
  color: #ff7a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid #ff7a1a;
  flex-shrink: 0;
}

.ta-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #1f2937;
}

.ta-item p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}
.ta-item {
  transition: 0.3s;
  padding: 15px;
  border-radius: 10px;
}

.ta-item:hover {
  background: white;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.ta-item:last-child {
  margin-bottom: 0;
}
.ta-disadvantages {
  background: #f5f6f8;
  padding: 0px 20px 60px;
  font-family: "Segoe UI", sans-serif;
}

.ta-container {
  max-width: 900px;
  margin: auto;
}

.ta-title {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
}

.ta-item {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
  align-items: flex-start;
}

.ta-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #ff4d4f;
  color: #ff4d4f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 4px;
}

.ta-item h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #1f2937;
}

.ta-item p {
  color: #6b7280;
  line-height: 1.7;
  font-size: 16px;
}
.ta-start {
  background: #f6f7f9;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
}

.ta-start-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ta-start-title {
  font-size: 32px;
  font-weight: 700;
  color: #1c2430;
  margin-bottom: 30px;
}

.ta-step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.ta-icon {
  width: 42px;
  height: 42px;
  background: #fff3ea;
  color: #ff7a18;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ta-step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1c2430;
}

.ta-step p {
  font-size: 14px;
  color: #6c7a89;
  line-height: 1.6;
}
.ta-why {
  background: #f6f7f9;
  padding: 70px 0;
  font-family: "Inter", sans-serif;
}

.ta-container {
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
}

.ta-title {
  font-size: 40px;
  font-weight: 700;
  color: #1d2939;
  margin-bottom: 25px;
}

.ta-title span {
  color: #ff7a1a;
}

.ta-next {
  margin-top: 50px;
}

.ta-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.ta-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.ta-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #ff7a1a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

.ta-text {
  color: #667085;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}
body {
  font-family: "Poppins", sans-serif;
  background: #f7f7f7;
}

.reply-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.reply-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.reply-section h2 span {
  color: #ff6a00;
}

.reply-form .row {
  display: flex;
  gap: 20px;
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
}

.form-group input {
  width: 100%;
  height: 48px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: #ff6a00;
}

button {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e55c00;
}
.ta-cta {
  padding: 80px 20px;
  background: #ffffff;
}

/* CTA Container */
.ta-cta__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;

  background: radial-gradient(
      1400px circle at top left,
      rgba(255, 255, 255, 0.08),
      transparent 40%
    ),
    linear-gradient(135deg, #0b132b, #0f172a);

  border-radius: 28px;
  color: #ffffff;
}

/* Heading */
.ta-cta__container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

/* Text */
.ta-cta__container p {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* Actions */
.ta-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Primary Button */
.ta-btn-primary {
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease
}

.ta-btn-primary:hover {
  background: #ef9920;
  transform: translateY(-2px);
  color: #f4d799;
}

/* Link Button */
.ta-btn-link {
  padding: 14px 28px;
  background: #ef9920;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.ta-btn-link :hover{
  background: #ef9920;
  transform: translateY(-2px);;

}

.ta-btn-link::after {
  background: #ef9920;;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  
}

.ta-btn-link:hover::after {
  width: 100%;
}

@media (max-width: 992px) {

  .container {
    padding: 30px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 992px) {

  .container {
    padding: 30px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .form-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {

  .container {
    padding: 20px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  /* Cards / sections */
  .card {
    padding: 20px;
  }

  button {
    width: 100%;
  }
}

