@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MADE Tommy";
  src: url("../fonts/made_tommy/made-tommy.black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #dd1423;
  --secondary-color: #061d55;
  --text-color: #383838;
}

::selection {
  background: var(--primary-color);
  color: #fff;
}
::scrollbar {
  width: 10px;
}
::scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MADE Tommy", sans-serif;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary-color);
}
a {
  text-decoration: none;
  color: inherit;
}
p {
  margin: 0;
}

/* --- New Header Styles --- */

nav .navbar-brand img {
  width: 170px;
}
.top_header {
  /* background: #07122c; */
  padding: 15px 0;
}

.top_header a {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 300;
  font-size: 16px;
}
.top_header .social_icons {
  display: flex;
  justify-content: end;
  gap: 20px;
}

.top_header .social_icons a {
  height: 35px;
  width: 35px;
  border: 1px solid rgb(255 255 255 / 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  &:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
}
header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

nav ul.navbar-nav .dropdown-menu {
  background: #fff;
  backdrop-filter: blur(10px);
}

nav ul.navbar-nav .dropdown-menu a {
  color: var(--secondary-color);
}

nav ul.navbar-nav .dropdown-menu a:hover,
nav ul.navbar-nav .dropdown-menu a:active,
nav ul.navbar-nav .dropdown-menu a.acitve,
.dropdown-item.active,
.dropdown-item:active {
  background: var(--primary-color);
  color: #fff !important;
}

nav a.nav-link,
nav a.nav-link.active {
  color: var(--text-color) !important;
  padding: 0 !important;
  position: relative;
  font-family: "Poppins", sans-serif;
}
nav a.nav-link::before,
nav a.dropdown-toggle::before {
  content: "";
  position: absolute;
  width: 0;
  height: 4px;
  border-radius: 20px;
  left: 50%;
  bottom: -18px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
  margin: 0;
  border: none;
  transform: translateX(-50%);
}
nav a.nav-link:hover:before,
nav a.nav-link.active:before {
  width: 110%;
}
nav ul.navbar-nav {
  gap: 0 50px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

header nav.navbar {
  background: #fff;
}

.top_btns {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: center;
}

.top_btns a:first-child:before {
  content: "";
  height: 100%;
  width: 1px;
  right: -15px;
  top: 0;
  background: #4d3333;
  position: absolute;
}

.top_btns a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn_dflt {
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.btn_red {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
}
.btn_red:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border: 2px solid var(--secondary-color);
}
.btn_blue {
  background-color: var(--secondary-color);
  color: #ffffff;
  border: 2px solid var(--secondary-color);
}
.btn_blue:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}
.btn_light {
  background-color: #fff;
  color: var(--secondary-color);
  border: 2px solid #fff;
}
.btn_light:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

/* hero section css */
.hero-section {
  background: url(../images/hero-bg.webp);
  background-size: cover;
  padding-top: 230px;
  padding-bottom: 0;
  overflow-x: hidden;
}
.hero-section .container:first-child {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero-section p.hero-subtitle {
  font-family: "MADE Tommy";
  text-align: center;
  font-size: 34px;
  color: #fff;
  font-weight: 500;
}

.hero-headline-wrapper {
  padding: 15px 25px;
  background: var(--primary-color);
  border-radius: 100px;
  text-align: center;
  color: #fff;
}

.hero-headline-wrapper h1 {
  margin: 0;
  font-size: 55px;
}

.hero_content h1 {
  font-size: 55px;
  color: #fff;
  line-height: 65px;
}

.hero_content p {
  color: #fff;
  font-family: "MADE Tommy", sans-serif;
  font-size: 20px;
  line-height: 32px;
}

p.hero-desc {
  color: #fff;
  text-align: center;
  font-size: 18px;
  margin-bottom: 70px;
  position: relative;
}

.banner_form {
  background: #ffffffe6;
  padding: 20px 40px;
  border-radius: 15px;
}

.banner_form h4 {
  text-align: center;
  color: #061d55;
  font-size: 32px;
}

.banner_form p {
  font-family: "MADE Tommy";
  font-size: 15px;
  text-align: center;
}

.banner_form form input,
.banner_form form select {
  padding: 15px 18px;
  font-family: "MADE Tommy";
  border: 1px solid #a6a6a6;
  border-radius: 5px;
  background: #fff2f2;
  color: #000;
}
.banner_form form input::placeholder {
  color: #a6a6a6;
  font-weight: 300;
}
.banner_form .form-check_bx {
  display: flex;
  gap: 10px;
}

.banner_form .form-check_bx label {
  font-size: 13px;
  font-family: "MADE Tommy";
  font-weight: 400;
  color: #727272;
  line-height: 20px;
}

.float_img {
  position: absolute;
  z-index: 0;
}
.float_img.float-top {
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 270px;
}
.float_img.float-bottom {
  bottom: 100px;
  right: -100px;
  width: 250px;
}

.form_bx {
  padding: 30px;
  background: #fff;
  border-radius: 18px;
}

.form_bx .discount {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0 15px;
}

.form_bx .discount .discount_txt * {
  margin: 0;
}

.form_bx .discount .discount_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form_bx input.form-control,
.form_bx textarea {
  padding: 15px 10px 15px 15px;
  font-family: "Poppins";
  font-size: 16px;
  text-transform: capitalize;
  resize: none;
}
.discount_txt h5 {
  color: var(--secondary-color);
  font-size: 22px;
}

.discount_txt h3 {
  color: var(--primary-color);
  font-size: 36px;
}

h2.shedule_txt {
  margin: 15px 0;
  width: 100%;
  text-align: center;
  padding: 10px 5px;
  background: var(--primary-color);
  color: #fff;
  font-size: 27px;
  font-weight: 400;
  border-radius: 2px;
}
.form_bx p {
  font-family: "Poppins";
  color: var(--secondary-color);
  font-size: 24px !important;
}

.form_bx .services_checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.form_bx .services_checks .form-check {
  padding: 0;
  margin: 0;
  min-height: auto;
}

.form_bx .services_checks .form-check-input {
  display: none !important;
}

.form_bx .services_checks .form-check-label {
  padding: 8px 18px;
  border: 1px solid #d1d1d1;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  background: #fff;
  user-select: none;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0;
}

.form_bx .services_checks .form-check-input:checked + .form-check-label {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(221, 20, 35, 0.2);
}

.form_bx .services_checks .form-check-label:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.form_bx .services_checks .form-check-input:checked + .form-check-label:hover {
  color: #fff;
}

.form_bx .services_checks .form-check-input:focus {
  box-shadow: none;
  border: none;
}

/* hero section css */

/* contact sect css */
.contact_sect {
  padding: 50px 0 100px;
}
.contact_sect h2 {
  font-size: 55px;
}

.contact_sect p {
  font-size: 18px;
}
.cont_form_bx label {
  font-size: 20px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.cont_form_bx input,
.cont_form_bx select,
.cont_form_bx textarea {
  padding: 25px 0 25px 25px;
  border: 1px solid #c4c4c4;
  background: #f8f8f8;
}
.cont_form_bx input::placeholder,
.cont_form_bx select,
.cont_form_bx textarea::placeholder {
  color: #c4c4c4;
  font-size: 16px;
}
/* contact sect css */

/* Packages page css */
.packages {
  padding: 100px 0;
}

.packages .title_txt h2 {
  font-size: 50px;
}
.packages .title_txt p {
  font-size: 18px;
  color: #5e5e5e;
}

.package_bx {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.package_bx:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-10px);
  border-color: var(--primary-color);
}
.popular_pkg {
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.popular_pkg:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.popular_badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 10px rgba(0,0,0, 0.15);
  z-index: 2;
}
.package_bx h3 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
}
.package_bx h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 5px;
}
.package_bx p {
  font-size: 16px;
  color: #5e5e5e;
  margin-bottom: 20px;
}
.package_bx ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  height: 320px;
  overflow-y: auto;
  flex-grow: 1;
}
.package_bx ul::-webkit-scrollbar {
  width: 5px;
}
.package_bx ul::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.package_bx ul::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 6px;
}
.package_bx ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}
.package_bx ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 16px;
}
.package_bx .price_txt {
  font-size: 45px;
  color: var(--secondary-color);
  margin-bottom: 25px;
  font-family: "MADE Tommy", sans-serif;
  font-weight: 700;
  text-align: center;
}
.package_bx .price_txt span {
  font-size: 20px;
  font-weight: 400;
  color: #777;
}
.package_bx .btn_dflt {
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(221, 20, 35, 0.2);
}

/* Packages page css */

/* brands sect css */
section.brands {
  padding: 50px 0;
}

section.brands .item img {
  margin: 0 auto;
}
/* brands sect css */

/* content sect css1 */
.content_sect1 {
  padding: 60px 0 100px;
}
.content_sect1 h2 {
  font-size: 54px;
  color: #061d55;
}

.content_sect1 p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #383838;
  margin-bottom: 20px;
}

.content_sect1 ul {
  padding: 0;
  list-style: none;
}

.content_sect1 ul li {
  font-size: 16px;
  font-family: "MADE Tommy";
  color: #383838;
  margin: 8px 0;
}

.content_sect1 ul li img {
  margin-right: 10px;
}
/* content sect css1 */

/* cta 1 css */
.cta1 {
  padding: 100px 0;
  background: url("../images/cta-bg-1.webp");
  background-size: cover;
  background-position: center;
}

.cta1 h2 {
  font-size: 60px;
  color: #fff;
}

.cta1 p {
  font-size: 18px;
  color: #fff;
  margin: 30px 0 50px;
}

.cta1 .cta_bullets {
  display: flex;
  gap: 20px 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cta1 .cta_bullets .b_bx {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 48.5%;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 10px;
  border-top-right-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 10px;
  padding-left: 0;
}
.cta1 .cta_bullets .b_bx::before {
  content: "";
  height: 100%;
  width: 85%;
  top: 0;
  right: 0;
  background: #fff;
  position: absolute;
  z-index: 0;
}

.cta1 .cta_bullets .b_bx img {
  position: relative;
}
.cta1 .cta_bullets .b_bx .b_txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.cta1 .cta_bullets .b_bx .b_txt h5 {
  font-size: 22px;
  color: var(--primary-color);
}

.cta1 .cta_bullets .b_bx .b_txt p {
  font-size: 16px;
  margin: 0;
  color: #464646;
  font-size: 12px;
}

/* cta 1 css */

/* process section css */
.process_sect {
  padding: 140px 0 50px;
}
.process_bx {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  transition: 0.3s all ease-in-out;
}
.process_bx::after {
  content: "";
  height: 0%;
  width: 0%;
  bottom: 0;
  right: 0;
  background: #fff;
  position: absolute;
  z-index: 0;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
}

.process_bx:hover::after {
  height: 75%;
  width: 100%;
}
.process_bx:hover img {
  outline: 3px solid white;
  outline-offset: -2px;
  border-radius: 50%;
}
.process_bx:hover h4 {
  color: #fff;
}
.process_bx:hover p {
  color: #fff;
}

.process_bx img {
  position: relative;
  z-index: 1;
  transition: 0.3s all ease-in-out;
  border-radius: 50%;
}
.process_bx h4 {
  font-size: 25px;
  color: var(--primary-color);
  text-transform: capitalize;
  position: relative;
  margin: 0;
  z-index: 1;
  transition: 0.3s all ease-in-out;
}
.process_bx p {
  font-size: 16px;
  color: #383838;
  position: relative;
  z-index: 1;
  transition: 0.3s all ease-in-out;
  font-family: "MADE Tommy";
}
.process_bx::before {
  content: "";
  height: 75%;
  width: 100%;
  bottom: 0;
  background: #fff;
  position: absolute;
  z-index: 0;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}
/* process section css */

/* content section 2 css */
.content_sect2 {
  padding: 50px 0 100px;
}

.content_sect2 h2 {
  font-size: 58px;
  color: #061d55;
}

.content_sect2 p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #383838;
}
/* content section 2 css */

/* cta2 css */
.cta2 {
  padding: 100px 0;
  background: url("../images/cta-bg-2.webp");
  background-size: cover;
  background-position: center;
}

.cta2 h2 {
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
}

.cta2 p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #fff;
}

.counter {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  width: 85%;
  margin: 0 0 0 auto;
}

.count_bx h3 span {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}

.count_bx h3 {
  font-size: 55px;
  font-weight: 600;
  color: var(--primary-color);
  display: flex;
}

.count_bx h3 strong {
  color: var(--primary-color);
  font-family: "Poppins";
  font-weight: 400;
  font-size: 55px;
  margin-left: 5px;
}

.count_bx p {
  font-family: "Poppins";
  margin: 0;
}
/* cta2 css */

/* portfolio carousel css */
.portfolio-slider {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.portfolio-slider.fade-out {
  opacity: 0;
}

.portfolio {
  padding: 100px 0;
  text-align: center;
}

.portfolio h2 {
  color: var(--secondary-color);
  font-size: 50px;
}

.portfolio p {
  color: #5e5e5e;
  font-size: 18px;
  margin: 20px 0;
}
.portfolio_head {
  position: relative;
  z-index: 0;
  border-bottom: 1px solid #061d55;
}

.portfolio_head ul {
  justify-content: space-between;
  z-index: 1;
  position: relative;
}

.portfolio_head ul .nav-link {
  font-family: "MADE Tommy";
  font-size: 24px;
  color: #424242;
  text-transform: uppercase;
  position: relative;
}

.portfolio_head .nav-pills .nav-link.active,
.portfolio_head .nav-pills .show > .nav-link {
  background: none;
}

.portfolio_head ul .nav-link:before {
  content: "";
  height: 5px;
  width: 0;
  position: absolute;
  bottom: -1px;
  left: 50%;
  z-index: -1;
  background: var(--primary-color);
  transition: 0.4s all ease-in-out;
  transform: translateX(-50%);
  /* transform: scaleY(1.2); */
}

.portfolio_head .nav-pills .nav-link.active:before,
.portfolio_head .nav-link:hover:before {
  width: 100%;
}

.portfolio_head .nav-pills .nav-link.active {
  color: #333333;
}

.portfolio_head ul .nav-link:hover {
  color: #333333;
}
.portfolio-item-box a:hover img {
  transform: scale(1.03);
}
.portfolio-item-box a img {
  transition: transform 0.3s ease;
}

/* portfolio css */

/* cta3 css */
.cta3 {
  position: relative;
  margin: 0 0 50px;
  padding: 60px 0;
}
.cta3::before {
  content: "";
  height: 100%;
  width: 100%;
  top: 50%;
  left: 0;
  background: url("../images/cta-bg-2.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  transform: translateY(-50%);
}

.cta3 h2 {
  font-size: 50px;
  color: #fff;
}

.cta3 p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #fff;
}
/* cta3 css */

/* services section css */
.services_sect {
  padding: 50px 0 100px;
}

.services_sect h2 {
  margin-bottom: 20px;
  font-size: 58px;
  color: #061d55;
  text-align: center;
}

.services_sect p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #383838;
}

.services_accordion {
  display: flex;
  height: 500px;
  margin-top: 50px;
  width: 100%;
  gap: 0px; /* Added gap */
}

.service_item {
  flex: 0 0 100px; /* Fixed width for collapsed items */
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  border-radius: 0; /* No radius on collapsed items by default */
}

.service_item.active {
  flex: 1;
  cursor: default;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Subtle shadow for active item */
}

.s_handle {
  width: 100px;
  height: 100%;
  background: var(--primary-color);
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
  border: 3px solid #fff;
}

.service_item.active .s_handle {
  background: var(--secondary-color); /* Blue for active handle */
  background: linear-gradient(180deg, #061d55 0%, #030e2b 100%);
}

.s_handle h3 {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  color: #fff;
  font-size: 30px;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 1px;
  font-weight: 500;
}

.s_content {
  flex: 1;
  background: var(--primary-color);
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  padding: 0;
  width: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease;
  min-width: 0;
  overflow: hidden;
}

.service_item.active .s_content {
  opacity: 1;
  width: auto;
  padding: 50px 30px; /* More padding */
  height: 90%;
  margin: auto;
}

.s_content h3 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
}

.s_content p {
  color: #fff;
  font-size: 16px;
  font-family: "MADE Tommy";
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 40px;
}

.services_sect .btn_bordered {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 35px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: capitalize;
  background: transparent;
}

.services_sect .btn_bordered:hover {
  background: #fff;
  color: var(--primary-color);
}

.services_sect .btn_light {
  padding: 12px 35px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  display: inline-block;
  background: #fff;
  color: var(--text-color); /* Dark text as per screenshot */
  text-transform: capitalize;
  font-weight: 500;
  border: none;
}

.services_sect .btn_light:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* Fix for handle text alignment */
.s_handle h3 {
  text-orientation: mixed;
}

/* services css */

/* writing process css */

.writing_process_sect {
  padding: 80px 0;
}

.writing_process_sect h2 {
  font-size: 58px;
  color: #061d55;
  margin-bottom: 20px;
}

.writing_process_sect p {
  font-size: 18px;
  font-family: "MADE Tommy";
  color: #383838;
}
.writing_timeline_item {
  display: flex;
  padding: 20px 0;
}

.writing_timeline_item .writing_timeline_title {
  width: 40%;
  padding: 20px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  position: relative;
}
.writing_timeline_item .writing_timeline_title h4 {
  color: #fff;
  font-size: 22px;
  font-family: "MADE Tommy";
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.writing_timeline_item .writing_timeline_title span {
  position: absolute;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  font-family: "MADE Tommy";
  border: 3px solid #fff;
  z-index: 3;
}
.writing_timeline_item .writing_timeline_title.left_title {
  border-radius: 10px 0 0 10px;
  padding-right: 100px;
  padding-left: 35px;
}
.writing_timeline_item .writing_timeline_title.right_title {
  border-radius: 0 10px 10px 0;
  padding-left: 110px;
  padding-right: 35px;
}
.writing_timeline_item .writing_timeline_title.left_title span {
  top: -15px;
  left: -15px;
}
.writing_timeline_item .writing_timeline_title.right_title span {
  top: -15px;
  right: -15px;
}

.writing_timeline_item .writing_timeline_content {
  width: 65%;
  padding: 25px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
}
.writing_timeline_item .writing_timeline_content.left_content {
  padding-left: 140px;
}
.writing_timeline_item .writing_timeline_content.right_content {
  padding-right: 140px;
}

.writing_timeline_item .writing_timeline_content p {
  font-size: 14px;
  font-family: "MADE Tommy";
  color: #585858;
  position: relative;
  z-index: 2;
}
.writing_timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.writing_timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/writing-process-bg.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.writing_timeline2 {
  display: none;
}

.timeline_item {
  margin-bottom: 25px;
  position: relative;
}
.timeline_icon {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -30px;
  position: relative;
  z-index: 2;
}
.timeline_icon img {
  width: 80px;
}
.timeline_title {
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  padding: 45px 20px 15px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  position: relative;
}
.timeline_title span {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: "MADE Tommy", sans-serif;
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline_title h4 {
  font-size: 22px;
  margin: 0;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.timeline_content {
  border: 1px solid #ddd;
  border-top: none;
  padding: 20px;
  border-radius: 0 0 10px 10px;
  background: #fff;
}
.timeline_content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* writing process css */

/* testimonials slider css */
section.testimonials {
  padding: 100px 0;
  background: #061d55;
  color: #fff;
}
section.testimonials h2 {
  font-size: 58px;
}
section.testimonials h2 span {
  color: #dd1423;
}
section.testimonials p {
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonials_slider .item {
  padding: 30px 10px;
  transition: all 0.3s ease;
  opacity: 0.5;
  filter: blur(7px);
  transform: scale(0.9);
}
.testimonials_slider .slick-center .item {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
.testimonial_item {
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: hidden; /* Ensure vertical line doesn't overflow if positioned absolutely */
}

/* Image Column Styles */
.testimonial_item_img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.testi_author_info {
  margin-top: 20px;
}
.testi_author_info span {
  display: block;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-family: "MADE Tommy";
}
.testi_author_info .stars {
  color: #a91e2c;
  font-size: 18px;
}
/* Vertical Line */
.vertical-line {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5px;
  height: 55%;
  background-color: #333333;
}

/* Content Column Styles */
.testimonial_item_content {
  color: #333;
  padding-left: 20px;
}
.testimonial_item_content .quote-icon {
  width: 60px; /* Adjust size as needed */
  display: block;
}
.testimonial_item_content h4 {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: "MADE Tommy";
  color: #333;
  vertical-align: middle;
  margin-top: -10px; /* Adjust alignment with quote if needed */
}
/* Flex for Quote and Name row if you want them side-by-side like the image might suggest, 
   but HTML has them separate. The prompt says "quoutation image is qoute.svg", 
   usually this is above or beside. Based on image, it looks like a large quote mark. 
   Let's keep it simple for now or use flex if needed. */

.testimonial_item_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
  font-family: "MADE Tommy";
}
.testimonial_item_content .bar-icon {
  width: 150px; /* Adjust size as needed */
  display: block;
  margin-left: auto;
}

/* Slick Dots Customization */
.testimonials_slider .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 20px 0 0;
  margin: 0;
  gap: 10px;
}
.testimonials_slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.testimonials_slider .slick-dots li.slick-active button {
  opacity: 1;
  background: transparent;
  border: 2px solid #fff;
  width: 18px;
  height: 18px;
  position: relative;
}
.testimonials_slider .slick-dots li.slick-active button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .testimonial_item_img img {
    height: auto;
    margin-bottom: 20px;
  }
  .testimonial_item_content {
    padding-left: 0;
    text-align: center;
  }
}
/* testimonial css */

/* CTA Form Section */
section.cta-form-section {
  padding: 80px 0;
  font-family: "MADE Tommy", sans-serif;
}

.cta-form-wrapper {
  background: linear-gradient(to right, #6a1b32, #c4182d);
  border-radius: 20px;
  padding: 60px 50px;
  color: #fff;
  margin-top: 50px;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #fff;
}

.cta-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.cta-text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 300;
}

.cta-text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

.cta-btns {
  display: flex;
  gap: 20px;
}

.btn_transparent {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn_transparent:hover {
  background: #fff;
  color: #c4182d;
}

.cta-form-box form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
}

.cta-form-box form .form-control {
  background: #f4f4f4;
  border: none;
  border-radius: 5px;
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  font-family: "Poppins", sans-serif;
}

.cta-form-box form .form-control::placeholder {
  color: #aaa;
}

.cta-form-box form select.form-control {
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.btn_submit {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn_submit:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn_submit img {
  width: 20px;
}

@media (max-width: 991px) {
  .cta-form-wrapper {
    padding: 40px 20px;
  }
  .cta-text {
    margin-bottom: 40px;
    text-align: center;
  }
  .cta-btns {
    justify-content: center;
  }
  .cta-text ul {
    text-align: left;
    display: inline-block;
  }
}
/* cta form css */

/* FAQ Section */
section.faq-section {
  padding: 100px 0 0;
  font-family: "MADE Tommy", sans-serif;
  background: #fff;
}

.faq-title {
  font-size: 58px;
  color: #061d55;
  font-weight: 700;
}

.faq-title span {
  color: #dd1423;
}

.faq-subtitle {
  font-size: 18px;
  color: #555;
  margin: 20px auto 0;
  line-height: 1.6;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  background: transparent;
}

.accordion-button {
  background-color: #f8f9fa; /* Light grey for closed */
  color: #727272;
  font-size: 18px;
  font-weight: 400;
  padding: 20px 25px;
  border-radius: 5px !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
}
.accordion-button:after {
  background-image: url(../images/arrow-down.svg);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(../images/arrow-down.svg);
}

.accordion-button:not(.collapsed) {
  background-color: #061d55; /* Dark blue for open */
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  filter: grayscale(1); /* Default arrow color */
  transform: scale(0.8);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(1); /* White arrow when open */
  transform: rotate(180deg) scale(0.8);
}

.accordion-body {
  padding: 20px 25px;
  background: #061d55;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 0 0 5px 5px;
  margin-top: -5px;
  font-family: "MADE Tommy", sans-serif;
  font-weight: 300;
}

.faq-img img {
  border-radius: 10px;
  max-height: 600px;
  object-fit: contain;
}

@media (max-width: 991px) {
  .faq-title {
    font-size: 42px;
  }
  .faq-img {
    margin-top: 50px;
  }
}
/* faq css */

/* footer css */
footer .top_footer {
  padding: 50px 0;
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  overflow: hidden;
}

.logo_desc img {
  width: 270px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

.logo_desc p {
  color: #fff;
  font-family: "MADE Tommy";
  font-size: 18px;
  font-weight: 300;
  margin-top: 50px;
}

.socials_links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.socials_links a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  &:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
  }
}
.footer_links {
  margin-top: 20px;
}

.footer_links h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

.footer_links ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 0;
}

.footer_links ul a {
  color: #fff;
  font-size: 16px;
  font-family: "MADE Tommy";
  font-weight: 300;
  display: flex;
  align-items: start;
  gap: 10px;
}

.footer_links ul a i {
  margin-top: 5px;
  width: 15px;
}

.footer_links ul li {
  margin-bottom: 15px;
}
form.newsletter_form p,
form.newsletter_form label {
  color: #fff;
  font-size: 14px;
  font-family: "MADE Tommy";
  font-weight: 300;
}
form.newsletter_form p {
  font-size: 15px;
  font-weight: 400;
}
form.newsletter_form .input-group input::placeholder {
  color: #fff;
}
form.newsletter_form .input-group input {
  width: 100%;
  border-radius: 50px !important;
  padding: 15px 0 15px 15px;
  font-size: 13px;
  font-family: "MADE Tommy";
  background: none;
  border: none;
  position: relative;
  height: 100%;
  z-index: 1;
  color: #fff;
}
form.newsletter_form .input-group:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(255 255 255 / 70%);
  opacity: 0.2;
  z-index: 0;
  height: 100%;
  border-radius: 50px;
}

form.newsletter_form .input-group button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  border-radius: 50% !important;
  background: #000;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1;
  &:hover {
    background: #fff;
  }
  &:hover img {
    filter: invert(1);
  }
}
.bottom_footer {
  background: #0c4a85;
  color: #fff;
  padding: 50px 0 0;
}

.btm_footer_links h5 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 400;
}

.btm_footer_links ul a {
  font-size: 16px;
  font-weight: 300;
  font-family: "Poppins";
}

.btm_footer_links ul li {
  margin-bottom: 6px;
}
.copy_right {
  padding: 20px 0;
  border-top: 1px solid #ffffff80;
}

.copy_right p {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 200;
}

.copy_right a.tp_link {
  font-size: 16px;
  font-weight: 200;
  font-family: "Poppins";
}
.modal-content {
  border-radius: 20px;
}

.modal-body {
  background: linear-gradient(
    86.25deg,
    var(--secondary-color) -124.26%,
    var(--primary-color) 133.25%
  );
  color: #fff;
  text-align: center;
  border-radius: 15px;
}
.modal-body form input,
.modal-body form select {
  height: 55px;
}

.modal-body .btn-close {
  position: absolute;
  right: 5px;
  top: 5px;
  filter: invert(1);
  opacity: 1;
}

.modal-body h3 {
  margin: 10px 0 30px;
  font-size: 35px;
}

.floating_wrap,
.floating_wrap .btns_wrap {
  position: fixed;
  right: 0;
}

.floating_wrap .btns_wrap .call_wrap,
.floating_wrap .btns_wrap .chat_wrap {
  position: absolute;
  right: -225px;
  width: 275px;
  overflow: hidden;
  box-shadow: 0 0 40px #00000026 !important;
  border-radius: 50px 0 0 50px;
  background: #fff;
  font-family: "Poppins";
  font-weight: 500;
}
.floating_wrap {
  top: 171px;
  z-index: 1000;
}

.floating_wrap .btns_wrap a:hover {
  text-decoration: none !important;
  right: 0;
}

.floating_wrap .btns_wrap .call_wrap {
  top: 60px;
  text-decoration: none;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.floating_wrap .btns_wrap .call_wrap span {
  color: var(--primary-color);
  font-size: 16px;
  vertical-align: middle;
  background: #fff;
  padding: 0 5px;
}

.floating_wrap .btns_wrap .chat_wrap {
  display: block;
  text-decoration: none;
  top: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.floating_wrap .btns_wrap .call_wrap span.icoo,
.floating_wrap .btns_wrap .chat_wrap span.icoo {
  color: #fff;
  background: var(--primary-color);
  font-size: 20px;
  line-height: 1;
  padding: 14px 20px;
  border-right: 1px solid #ded9d9;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50px 0 0 50px;
}

.floating_wrap .btns_wrap .chat_wrap span {
  color: var(--primary-color);
  font-size: 14px;
  vertical-align: middle;
  background: #fff;
  padding: 0 5px 0 5px;
}

/* footer css */
