/* ------------------------------------ COMMON CSS START ------------------------------------ */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: flex;
}

.page-width {
  max-width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.primary-heading {
  color: #333333;
  font-size: 61px;
  line-height: 79px;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Baskervville", serif;
  text-transform: capitalize;
}

.primary-text {
  color: #333333;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 400;
  font-family: "Josefin Sans", sans-serif;
}

.primary-button {
  display: inline-block;
  background-color: #ed2230;
  color: #ffffff;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 21px 55px;
  border-radius: 50px;
  font-family: "Josefin Sans", sans-serif;
}

.primary-button:hover {
  background-color: #333333;
}

@media screen and (max-width: 1024px) {
  .primary-heading {
    font-size: 42px;
    line-height: 52px;
  }

  .primary-text {
    font-size: 20px;
    line-height: 26px;
  }
}

@media screen and (max-width: 767px) {
  .primary-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .primary-text {
    font-size: 18px;
    line-height: 26px;
  }

  .primary-button {
    padding: 15px;
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* ------------------------------------ COMMON CSS END ------------------------------------ */

/* ------------------------------------ HEADER CSS START ------------------------------------ */

/* ------------------------------------ HEADER MENU BAR CSS START ------------------------------------ */
.menu-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-bar .main-menu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-bar .main-menu ul li {
  margin: 0;
  position: relative;
}

.menu-bar .main-menu ul li a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 8px 12px;
  display: block;
}

.menu-bar .main-menu ul li a:hover {
  color: #ed2230;
}

/* Dropdown Menu Styles */
.menu-bar .main-menu .has-dropdown {
  position: relative;
}

.menu-bar .main-menu .has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #333333;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.menu-bar .main-menu .has-dropdown:hover > a::after {
  border-top-color: #ed2230;
  transform: rotate(180deg);
}

.menu-bar .main-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 20px;
  min-width: 600px;
  max-width: 800px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 8px;
}

.menu-bar .main-menu .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.menu-bar .main-menu .dropdown-menu li {
  margin: 0;
  width: auto;
  display: inline-block;
}

.menu-bar .main-menu .dropdown-menu li a {
  padding: 8px 16px;
  font-size: 15px;
  white-space: nowrap;
  color: #333333;
  border-radius: 4px;
}

.menu-bar .main-menu .dropdown-menu li a:hover {
  background-color: #f8f8f8;
  color: #ed2230;
}

/* Dropdown Headers and Dividers */
.menu-bar .main-menu .dropdown-menu .dropdown-header {
  padding: 12px 0 8px 0;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ed2230;
  pointer-events: none;
  margin-top: 12px;
  display: block;
  width: 100%;
}

.menu-bar .main-menu .dropdown-menu .dropdown-header:first-child {
  margin-top: 0;
}

.menu-bar .main-menu .dropdown-menu .dropdown-divider {
  height: 1px;
  background-color: #e5e5e5;
  margin: 12px 0;
  pointer-events: none;
  display: block;
  width: 100%;
}

/* Horizontal product layout */
.menu-bar .main-menu .dropdown-menu .dropdown-header + li {
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .menu-bar .main-menu ul {
    gap: 16px;
  }

  .menu-bar .main-menu ul li a {
    font-size: 14px;
    padding: 6px 8px;
  }

  .menu-bar .main-menu .dropdown-menu li a {
    font-size: 14px;
    padding: 8px 16px;
  }
}

@media screen and (max-width: 991px) {
  .menu-bar {
    display: none;
  }
}

/* ------------------------------------ HEADER MENU BAR CSS END ------------------------------------ */
header.site-header {
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

header.site-header .content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

header.site-header .content-header nav.nav a {
  padding: 15px 32.5px;
}

header.site-header.about-header {
  border-bottom: 1px solid #f3f3f3;
}

@media screen and (max-width: 1024px) {
  header.site-header {
    padding: 15px 0;
  }

  header.site-header .content-header .logo img {
    max-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  header.site-header {
    padding: 12px 0;
  }

  header.site-header .content-header .logo img {
    max-width: 140px;
  }

  header.site-header .content-header nav.nav a {
    padding: 15px 10.5px;
    font-size: 16px;
    max-width: 180px;
  }

  header.site-header .content-header nav.nav {
    width: auto;
    text-align: end;
    order: 3;
  }

  header.site-header .content-header .mobile-menu-wrapper {
    order: 1;
  }

  header.site-header .content-header .logo {
    order: 2;
    margin: 0 auto;
    /* Center the logo */
  }
}

@media screen and (max-width: 590px) {
  header.site-header .content-header nav.nav a {
    padding: 9px 5.5px;
    font-size: 13px;
    max-width: 180px;
    line-height: 1;
    border-radius: 15px;
  }

  header.site-header .content-header {
    gap: 20px;
  }
}

/* ------------------------------------ HEADER CSS END ------------------------------------ */

/* ------------------------------------ HERO BANNER CSS START ------------------------------------ */
.hero-banner {
  padding: 135px 0 100px 0;
  margin-top: -125px;
  position: relative;
  z-index: 1;
}

.hero-banner:after {
  position: absolute;
  content: "";
  background: url(../images/background-image.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 100%;
  width: 100%;
  inset: 0;
  z-index: -1;
}

.hero-banner .banner-content h1 span {
  color: #ed2230;
}

.hero-banner .banner-content h1 {
  width: 100%;
  max-width: 830px;
  text-transform: math-auto;
}

.hero-banner .banner-content .banner-features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
}

.hero-banner .banner-content .features {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 603px;
}

.hero-banner .banner-content .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-banner .banner-content .feature-item p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
}

.hero-banner .images-list {
  background: #fff;
  box-shadow: 0px 0px 20px 0px #0000001a;
  border-radius: 15px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 46px 0 40px 0;
}

.hero-banner .images-list img {
  border-radius: 12px;
}

.hero-banner .banner-features .content {
  width: 100%;
  max-width: 550px;
}

.hero-banner .banner-features .content p {
  font-size: 24px;
  font-weight: 600;
}

.hero-banner .banner-content .feature-item:nth-child(2) {
  margin: 0 45px;
  padding: 0 45px;
  border-left: 1px solid #ffc7ca;
  border-right: 1px solid #ffc7ca;
}

.hero-banner .banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-banner .banner-buttons a.secondary-button {
  background-color: #333333;
}

.hero-banner .banner-buttons a.secondary-button:hover {
  background-color: #ed2230;
}

.hero-banner .solutions {
  padding-top: 100px;
  display: grid;
  grid-template-columns: 266px 1fr;
  gap: 30px;
  justify-content: space-between;
}

.hero-banner .solutions .solution-content {
  width: 100%;
  max-width: 817px;
  margin: 0 0 0 auto;
}

.hero-banner .solutions h3 {
  color: #333333;
  letter-spacing: 0;
  font-size: 38px;
  line-height: 49px;
  font-weight: 600;
  font-family: "Baskervville", serif;
  margin-bottom: 20px;
}

.hero-banner .solutions a {
  display: inline-block;
  margin-top: 30px;
}

.hero-banner .solutions .text p.left-border {
  padding: 14px 0 15px 43px;
  position: relative;
  margin-top: 39px;
}

.hero-banner .solutions p.left-border:before {
  content: "";
  height: 100%;
  background: #ed2230;
  width: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  border-radius: 4px;
}

.hero-banner .solutions p {
  margin-bottom: 18px;
}

.hero-banner .solutions p:last-of-type {
  margin: 0;
}

.hero-banner .solutions .text {
  margin-top: 70px;
}

@media screen and (max-width: 1024px) {
  .hero-banner {
    padding: 90px 0 70px 0;
    margin-top: -80px;
  }

  .hero-banner .solutions h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 15px;
  }

  .hero-banner .solutions .text {
    margin-top: 40px;
  }

  .hero-banner .solutions .text p.left-border {
    padding: 10px 0 10px 25px;
    margin-top: 20px;
  }

  .hero-banner .solutions {
    padding-top: 70px;
    grid-template-columns: 215px 1fr;
  }

  .hero-banner .solutions a {
    margin-top: 15px;
  }

  .hero-banner .banner-features .content p {
    font-size: 20px;
  }

  .hero-banner .banner-features .content {
    max-width: 350px;
  }

  .hero-banner .banner-content h1 {
    max-width: 730px;
  }
}

@media screen and (max-width: 991px) {
  .hero-banner .images-list {
    margin: 30px 0 30px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-banner .banner-content .banner-features {
    align-items: self-start;
    gap: 15px;
    flex-direction: column;
  }

  .hero-banner .banner-features .content {
    max-width: 100%;
  }

  .hero-banner .banner-content .feature-item:nth-child(2) {
    margin: 0 25px;
    padding: 0 25px;
  }
}

@media screen and (max-width: 767px) {
  .hero-banner {
    padding: 82px 0 50px 0;
    margin-top: -72px;
  }

  .hero-banner .banner-content .features {
    flex-direction: column;
    align-items: self-start;
  }

  .hero-banner .banner-content .feature-item:nth-child(2) {
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #ffc7ca;
    border-bottom: 1px solid #ffc7ca;
    border-left: 0;
    border-right: 0;
  }

  .hero-banner .solutions h2 {
    margin: 0;
  }

  .hero-banner .banner-content .feature-item {
    width: 100%;
  }

  .hero-banner .banner-features .content p {
    font-size: 18px;
  }

  .hero-banner .banner-buttons {
    gap: 10px;
    flex-direction: column;
  }

  .hero-banner .solutions {
    padding-top: 50px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hero-banner .solutions h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 10px;
  }

  .hero-banner .solutions p {
    margin-bottom: 10px;
  }

  .hero-banner .solutions .text {
    margin-top: 25px;
  }

  .hero-banner .solutions .text p.left-border {
    padding: 8px 0 8px 20px;
    margin-top: 15px;
  }
}

/* ------------------------------------ HERO BANNER CSS END ------------------------------------ */

/* ------------------------------------ IMAGE WIDTH TEXT CSS START ------------------------------------ */
.about-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-section .page-width {
  max-width: 1750px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.about-section .about-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.about-section .about-details .about-info {
  width: 100%;
  max-width: 624px;
}

.about-section .about-image {
  width: calc(53% - 25px);
}

.about-section .about-information {
  width: calc(47% - 25px);
}

.about-section .about-details .about-info p.section-description.primary-text {
  line-height: 34px;
}

.about-section h3.section-subtitle {
  font-family: Baskervville;
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  font-style: italic;
  color: #333333;
}

.about-section .about-cta {
  padding-top: 45px;
}

.about-section .section-title {
  padding-bottom: 45px;
}

.about-section .section-description:nth-child(2) {
  padding: 20px 0;
}

@media screen and (max-width: 1024px) {
  .about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .about-section .section-title {
    padding-bottom: 30px;
    margin: 0;
  }

  .about-section .about-details .about-info p.section-description.primary-text {
    line-height: 26px;
    margin: 0;
  }

  .about-section .about-details {
    gap: 30px;
  }

  .about-section .section-description:nth-child(2) {
    padding: 15px 0;
  }

  .about-section .about-image,
  .about-section .about-information {
    width: calc(50% - 15px);
  }

  .about-section .about-cta {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .about-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .about-section .about-image,
  .about-section .about-information {
    width: 100%;
  }

  .about-section .about-details {
    flex-direction: column;
  }

  .about-section h3.section-subtitle {
    font-size: 24px;
  }

  .about-section .section-title {
    padding-bottom: 20px;
  }

  .about-section .about-cta {
    padding-top: 15px;
  }
}

/* ------------------------------------ IMAGE WIDTH TEXT CSS END ------------------------------------ */

/* ------------------------------------ FEATURES SECTION CSS START ------------------------------------ */
.why-choose-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url("../images/why-choose-bg-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-choose-section .page-width {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.why-choose-section .why-choose-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 55px;
}

.why-choose-section .why-choose-heading {
  width: calc(42.6% - 27.5px);
}

.why-choose-section .why-choose-detail {
  width: calc(57.4% - 27.5px);
}

.why-choose-section .why-choose-information {
  display: grid;
  grid-template-columns: 85px 1fr;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  padding-bottom: 35px;
}

.why-choose-section .why-choose-information:last-child {
  padding-bottom: 0;
}

.why-choose-section .why-choose-info {
  margin: 25px 0 0 0;
}

.why-choose-section .section-subtitle {
  font-family: Baskervville;
  font-weight: 600;
  font-size: 34px;
  line-height: 100%;
  letter-spacing: 0;
  color: #333333;
  padding-bottom: 20px;
}

.why-choose-section .why-choose-icon:after {
  content: "";
  border-right: 2px solid #d9d9d9;
  height: 70px;
  display: block;
  position: absolute;
  bottom: -79px;
  right: 42px;
}

.why-choose-section .why-choose-icon {
  position: relative;
}

.why-choose-section .why-choose-information:last-child .why-choose-icon:after {
  display: none;
}

@media screen and (max-width: 1024px) {
  .why-choose-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .why-choose-section .why-choose-details {
    gap: 30px;
  }

  .why-choose-section .why-choose-information {
    gap: 20px;
    padding-bottom: 20px;
  }

  .why-choose-section .section-subtitle {
    font-size: 28px;
    padding-bottom: 0;
  }

  .why-choose-section .section-subtitle {
    font-size: 26px;
    padding-bottom: 10px;
  }

  .why-choose-section
    .why-choose-information
    p.section-description.primary-text {
    margin: 0;
  }

  .why-choose-section .why-choose-detail {
    width: calc(57.4% - 15px);
  }

  .why-choose-section .why-choose-heading {
    width: calc(42.6% - 15px);
  }
}

@media screen and (max-width: 767px) {
  .why-choose-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .why-choose-section .why-choose-detail,
  .why-choose-section .why-choose-heading {
    width: 100%;
  }

  .why-choose-section .why-choose-info {
    margin: 0;
  }

  .why-choose-section .why-choose-information {
    padding-bottom: 30px;
  }

  .why-choose-section .why-choose-details {
    flex-direction: column;
  }

  .why-choose-section .section-subtitle {
    font-size: 24px;
  }

  .why-choose-section .why-choose-heading h2 {
    margin: 0;
  }

  .why-choose-section .why-choose-icon:after {
    height: 100%;
    bottom: unset;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
}

/* ------------------------------------ FEATURES SECTION CSS END ------------------------------------ */

/* ------------------------------------ IMAGE WIDTH TEXT CSS START ------------------------------------ */
.belief-section {
  padding-top: 100px;
  padding-bottom: 87px;
}

.belief-section .page-width {
  max-width: 1430px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.belief-section .section-title {
  font-size: 85px;
  line-height: 100px;
  width: 100%;
  padding-bottom: 60px;
  text-transform: uppercase;
}

.belief-section .section-title span {
  color: #ed2230;
}

.belief-section .belief-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.belief-section .belief-information {
  width: calc(51.8% - 25px);
}

.belief-section .belief-image {
  width: calc(48.2% - 25px);
}

.belief-section .section-description:nth-child(2) {
  padding: 20px 0;
}

.belief-section .section-description:nth-child(4) {
  padding: 20px 0 25px 0;
}

.belief-section .section-description:nth-child(5) {
  padding-left: 20px;
  padding-top: 3px;
  position: relative;
}

.belief-section .section-description:nth-child(5):before {
  position: absolute;
  content: "";
  background: #ed2230;
  width: 4px;
  height: 40px;
  border-radius: 8px;
  top: -4px;
  bottom: 0;
  left: -2px;
}

.belief-section .belief-image img {
  max-width: 100%;
}

@media screen and (max-width: 1024px) {
  .belief-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .belief-section .section-title {
    font-size: 60px;
    line-height: 70px;
    padding-bottom: 40px;
    margin: 0;
  }

  .belief-section .belief-detail {
    gap: 30px;
  }

  .belief-section .section-description:nth-child(5):before {
    height: auto;
  }

  .belief-section .belief-detail p {
    margin: 0;
  }

  .belief-section .belief-information,
  .belief-section .belief-image {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 767px) {
  .belief-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .belief-section .section-title {
    font-size: 38px;
    line-height: 48px;
    padding-bottom: 30px;
  }

  .belief-section .belief-information,
  .belief-section .belief-image {
    width: 100%;
  }

  .belief-section .belief-detail {
    flex-direction: column-reverse;
  }

  .belief-section .section-description:nth-child(2) {
    padding: 10px 0;
  }

  .belief-section .section-description:nth-child(4) {
    padding: 10px 0 15px 0;
  }
}

/* ------------------------------------ IMAGE WIDTH TEXT CSS END ------------------------------------ */

/* ------------------------------------ INFORMATION SECTION CSS START ------------------------------------ */
.our-information {
  background-image: url(../images/philosophy-bg-image.jpg);
  padding: 150px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-information .outer-philosophy h2 {
  text-transform: math-auto;
  margin: 0;
}

.our-information .outer-philosophy p {
  margin: 0 0 20px 0;
}

.our-information .outer-philosophy p:last-child {
  margin: 0;
}

.our-information .outer-philosophy .inner-philosophy {
  width: calc(54% - 15px);
}

.our-information .outer-philosophy .section-heading {
  width: calc(46% - 15px);
}

.our-information .outer-philosophy {
  display: flex;
  gap: 30px;
}

.our-information .outer-philosophy p.left-border:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 4px;
  left: -2px;
  top: 0;
  bottom: 0;
  background: #ed2230;
  border-radius: 8px;
}

.our-information .outer-philosophy p.left-border {
  position: relative;
  padding: 6px 0 8px 20px;
}

@media screen and (max-width: 1204px) {
  .our-information {
    padding: 70px 0;
  }

  .our-information .outer-philosophy .inner-philosophy {
    width: calc(60% - 15px);
  }

  .our-information .outer-philosophy .section-heading {
    width: calc(40% - 15px);
  }
}

@media screen and (max-width: 767px) {
  .our-information {
    padding: 50px 0;
  }

  .our-information .outer-philosophy {
    flex-direction: column;
  }

  .our-information .outer-philosophy .section-heading,
  .our-information .outer-philosophy .inner-philosophy {
    width: 100%;
  }

  .our-information .outer-philosophy p {
    margin: 0 0 15px 0;
  }
}

/* ------------------------------------ INFORMATION SECTION CSS END ------------------------------------ */

/* ------------------------------------ CONTACT SECTION CSS START ------------------------------------ */
.workspace-section {
  padding: 150px 0;
}

.workspace-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
}

.workspace-image {
  border-radius: 15px;
  overflow: hidden;
}

.workspace-image img {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
  display: block;
}

.workspace-content {
  padding: 50px 55px 50px 123px;
  border-radius: 15px;
  position: relative;
  background: url(../images/contect-bg-image.png);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -60px;
  margin-top: -50px;
  margin-bottom: -50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.workspace-content h2 {
  text-transform: math-auto;
}

.workspace-content p {
  margin: 30px 0 30px 0;
}

.workspace-grid .btn-wrapper a {
  max-width: 281px;
  text-align: center;
  padding: 21px 30px;
  width: 100%;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 42px;
  margin-bottom: 50px;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
}

.contact-info a {
  color: #333333;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: 0.8px;
}

.contact-info a:hover {
  color: #ed2230;
}

.contact-info a img {
  height: 30px;
  width: 30px;
  display: block;
}

@media (max-width: 1199px) {
  .workspace-content {
    padding: 50px 40px 50px 110px;
  }
}

@media (max-width: 1024px) {
  .workspace-section {
    padding: 120px 0;
  }

  .workspace-content {
    padding: 40px 30px 40px 70px;
    margin-left: -40px;
  }

  .workspace-content h2 {
    margin: 0;
  }

  .primary-heading {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 20px;
  }

  .primary-text {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .contact-info {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .workspace-section {
    padding: 50px 0;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .workspace-content {
    padding: 60px 15px 30px 15px;
    margin: -30px 0 0 0;
  }

  .primary-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .workspace-content p {
    margin: 20px 0 20px 0;
  }

  .primary-text {
    font-size: 18px;
    line-height: 26px;
  }

  .contact-info {
    margin-bottom: 30px;
  }

  .workspace-grid .btn-wrapper a {
    max-width: 250px;
    padding: 21px 20px;
  }

  .workspace-image {
    border-radius: 15px;
    overflow: hidden;
    padding: 0 30px;
  }

  .contact-info a {
    gap: 10px;
  }
}

/* ------------------------------------ CONTACT SECTION CSS END ------------------------------------ */

/* ------------------------------------ FOOTER CSS START ------------------------------------ */
.footer {
  padding: 53px 0 0;
  font-family: "Josefin Sans", sans-serif;
  background: url("../images/footer-bg-image.png");
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer .primary-heading {
  color: #333333;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Baskervville", serif;
  margin-bottom: 21px;
}

.footer-inner {
  display: grid;
  gap: 0px;
  justify-content: center;
  text-align: center;
  grid-template-columns: 1fr;
}

.footer-col:first-child {
  max-width: 220px;
  margin: 0 auto 30px;
}

.footer-col {
  max-width: fit-content;
}

.footer-col ul {
  list-style: none;
}

.footer-inner p {
  margin-bottom: 24px;
}

.footer-inner p:last-child {
  margin-bottom: 0;
}

.footer-inner p,
.footer-inner p a {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  color: #333333;
  text-decoration: none;
}
.footer-inner p a:hover {
  color: #ed2230;
}
.footer-content {
  max-width: 830px;
  margin: 0 auto;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 17px;
}

.social-links a {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-bottom {
  background: #ed2230;
  padding: 9.5px 0;
  text-align: center;
  margin-top: 35px;
}

.footer-bottom p {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
  letter-spacing: 0;
}

@media screen and (max-width: 1124px) {
  .footer-col:first-child {
    max-width: 190px;
  }

  .footer-inner {
    grid-template-columns: 200px 129px 177px 224px 122px;
  }
}

@media screen and (max-width: 1024px) {
  .footer .primary-heading {
    font-size: 20px;
    line-height: 24px;
  }

  .footer {
    padding: 70px 0 0;
  }

  .footer-bottom {
    margin-top: 50px;
  }
}

@media screen and (max-width: 991px) {
  .footer-inner {
    gap: 30px 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .footer .primary-heading {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-bottom {
    margin-top: 45px;
  }
}

@media screen and (max-width: 600px) {
  .footer-inner {
    gap: 30px 20px;
    display: flex;
    flex-wrap: wrap;
  }
  .footer-inner p {
    font-size: 18px;
    line-height: 25px;
  }
  .footer-col:first-child {
    max-width: 200px;
    margin-bottom: 0;
    width: 100%;
    margin: 0 auto;
  }

  .footer-col {
    width: 100%;
    max-width: calc(50% - 10px);
  }

  .footer-col:first-child img {
    margin: 0 auto;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}

/* ------------------------------------ FOOTER CSS END ------------------------------------ */

/* ------------------------------------ MOBILE MENU & ACTIVE STATE CSS START ------------------------------------ */

/* Active State Highlighting */
.menu-bar .main-menu ul li a.active,
.mobile-drawer .mobile-nav li a.active {
  color: #ed2230;
  font-weight: 700;
}

/* Mobile Toggle Button (Hamburger) */
.mobile-toggle {
  display: none;
  /* Hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  padding: 0;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Drawer Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Mobile Drawer Container */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  /* Hidden off-canvas */
  width: 300px;
  height: 100%;
  background: #ffffff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  /* Smooth drawer effect */
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

/* Drawer Header */
.mobile-drawer .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.mobile-drawer .drawer-header .logo img {
  max-width: 120px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #333333;
  cursor: pointer;
}

/* Mobile Nav Links */
.mobile-drawer .mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-drawer .mobile-nav ul li {
  margin-bottom: 0;
  border-bottom: 1px solid #f9f9f9;
}

.mobile-drawer .mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-family: "Josefin Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  /* For arrow positioning context if needed */
}

.mobile-drawer .mobile-nav ul li a:hover {
  color: #ed2230;
}

/* Mobile Dropdown Styling */
.mobile-drawer .mobile-nav .has-dropdown .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  padding: 10px 0 15px 15px;
  min-width: unset;
  max-width: unset;
  display: none;
  margin-top: 0;
  border-top: 1px solid #eee;
}

.mobile-drawer .mobile-nav .has-dropdown.expanded .dropdown-menu {
  display: block;
}

/* Dropdown Arrow Indicator */
.mobile-drawer .mobile-nav .has-dropdown > a::after {
  content: "";
  width: 0;
  height: 0;
  vertical-align: middle;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  /* Dark arrow color */
  float: right;
  margin-top: 8px;
  /* Center vertically relative to text approx */
  margin-right: 5px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.mobile-drawer .mobile-nav .has-dropdown.expanded > a::after {
  transform: rotate(180deg);
  border-top-color: #ed2230;
  /* Active color */
}

/* Mobile Dropdown Headers */
.mobile-drawer .dropdown-header {
  font-size: 16px;
  color: #ed2230;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 0 5px;
  display: block;
  pointer-events: none;
  font-family: "Josefin Sans", sans-serif;
}

.mobile-drawer .dropdown-header:first-child {
  margin-top: 5px;
}

.mobile-drawer .dropdown-menu li {
  border-bottom: 1px dashed #eee;
  /* Lighter separator for sub-items */
}

.mobile-drawer .dropdown-menu li:last-child {
  border-bottom: none;
}

.mobile-drawer .dropdown-menu li a {
  font-size: 15px;
  /* Slightly smaller than main links */
  padding: 8px 0;
}

/* Media Query to Show Toggle */
@media screen and (max-width: 991px) {
  .mobile-toggle {
    display: flex;
  }
}
