/*================================================================
  TABLE OF CONTENTS
  ----------------------------------------------------------------
  * Refactoring Notes:
  * - Increased use of SCSS variables for consistency.
  * - Leveraged nesting to group related styles and reduce repetition.
  * - Co-located media queries within their parent selectors for better maintainability.
  * - Introduced a mixin for common CSS properties (e.g., transitions).
  * - Combined redundant selectors into single rule sets.
  ----------------------------------------------------------------
  1.  Variables, Mixins & Root Properties
  2.  Global & Layout Styles
  3.  Header
  4.  Slider
  5.  Buttons
  6.  Forms (Contact & Sliding Modal)
  7.  Page Sections & Components
      - About Us
      - Services
      - Our Goal / What We Work
      - Contact Banner
      - FAQs
      - Cards & Images
      - Testimonials
      - Contact Section
  8.  Footer
================================================================*/
/*--------------------------------------------------------------
  1. Variables, Mixins & Root Properties
--------------------------------------------------------------*/
/*** SCSS Variables ***/
/*** SCSS Mixins ***/
/*** CSS Custom Properties (Variables) ***/
:root {
  --footer-bg: #f8f9fa;
  --footer-text-dark: #212529;
  --footer-text-light: #6c757d;
  --footer-border-color: #e9ecef;
  --footer-accent-color: #007bff;
}

/*--------------------------------------------------------------
  2. Global & Layout Styles
--------------------------------------------------------------*/
body:not(.template-slider) #Header {
  min-height: 104px;
}
@media only screen and (max-width: 767px) {
  body:not(.template-slider) #Header {
    min-height: 80px;
  }
}

.themecolor {
  color: #e12534;
}

.mcb-bg {
  background-color: rgba(48, 48, 130, 0.9);
}

.mcb-section {
  padding: 80px 0;
}
.mcb-section .hover_color {
  border-radius: 12px;
}
@media only screen and (max-width: 991px) {
  .mcb-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .mcb-section h2 {
    text-align: center;
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .mcb-section p {
    font-size: 1.15rem;
    line-height: 27px;
  }
}

#Content {
  position: relative;
}

#Content .section.mcb-section .column_attr h1 {
  font-size: 64px;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  #Content .section.mcb-section .column_attr h2 b {
    font-size: 2.2rem;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 767px) {
  #Content .section.mcb-section .column_attr h5 {
    font-size: 1.1rem;
  }
}
#Content .section.mcb-section .icon_box {
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: 12px;
}
@media only screen and (max-width: 767px) {
  #Content .section.mcb-section.full-width {
    padding-top: 120px;
    background-image: none !important;
  }
  #Content .section.mcb-section.full-width .row.justify-content-around {
    flex-direction: column-reverse;
  }
  #Content .section.mcb-section.full-width .col-md-5,
  #Content .section.mcb-section.full-width .col-md-6 {
    margin-bottom: 30px;
  }
  #Content .section.mcb-section.full-width h1,
  #Content .section.mcb-section.full-width h1 b {
    font-size: 2.5rem;
    text-align: center;
  }
}

.mcb-wrap {
  float: left;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.mcb-wrap .column_image {
  margin: 0 1% 40px;
}
.mcb-wrap.one-third {
  width: 33.333%;
}
@media only screen and (max-width: 767px) {
  .mcb-wrap.one-third {
    width: 100%;
  }
}

.mcb-wrap-inner .two-third.column {
  width: 64.666% !important;
}
.mcb-wrap-inner .one-third.column {
  width: 31.333% !important;
}

/*--------------------------------------------------------------
  3. Header
--------------------------------------------------------------*/
.header-classic #Top_bar {
  position: relative;
  background-color: #fff;
}

.header-classic #Top_bar .bottom_ribbon {
  will-change: transform;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .header-classic #Top_bar .bottom_ribbon {
    position: fixed;
  }
}

.header-classic #Top_bar .bottom_ribbon.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#Top_bar .container-top {
  width: 77%;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  #Top_bar .container-top {
    width: 90%;
  }
}
#Top_bar .top_bar_left {
  width: 100%;
}
#Top_bar #logo {
  height: auto;
  line-height: 56px;
}
#Top_bar #logo img {
  height: 3.5rem;
}
@media only screen and (max-width: 767px) {
  #Top_bar #logo img {
    height: 2.5rem;
  }
}
.page #Top_bar .menu > li.current-menu-item > a {
  color: #303082;
}
#Top_bar .top_ribbon {
  border: 1px solid rgba(48, 48, 130, 0.5);
  padding: 0.5rem;
}
#Top_bar .top_ribbon ul {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  gap: 1rem;
}
#Top_bar .top_ribbon ul li {
  position: relative;
}
#Top_bar .top_ribbon ul li a {
  font-size: 1.25rem;
}
#Top_bar .top_ribbon .social-icons a {
  margin: 0 15px;
  font-size: 18px;
  display: inline-block;
  border: 1px solid #303082;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: transform, color, background-color 250ms ease-in-out;
}
#Top_bar .top_ribbon .social-icons a:hover {
  color: #fff;
  background-color: #303082;
  transform: translateY(-3px);
}
@media only screen and (max-width: 767px) {
  #Top_bar .top_ribbon {
    display: none;
  }
}
#Top_bar .icon-menu-fine:before {
  color: #1f1f4d;
  transform: translateY(-3px);
}
#Top_bar.is-sticky {
  z-index: 30;
}
@media only screen and (min-width: 768px) {
  #Top_bar.is-sticky {
    height: 6.1rem;
  }
  #Top_bar.is-sticky #logo {
    padding: 9px 0 !important;
    height: 80px !important;
  }
  #Top_bar.is-sticky #logo img.logo-sticky {
    max-height: 5rem;
  }
}
@media only screen and (max-width: 767px) {
  #Top_bar.is-sticky {
    height: 5rem;
  }
}
#Top_bar.is-sticky .icon-menu-fine:before {
  color: #1f1f4d !important;
  margin-top: 1rem;
}
#Top_bar.is-sticky .menu_wrapper .menu > li > a {
  color: #1f1f4d;
  padding: 7px 0;
}
#Top_bar.is-sticky .menu_wrapper .menu > li > a.button {
  padding: 7px 2rem;
}
#Top_bar.is-sticky .menu_wrapper .menu > li.hover > a {
  color: #fff;
}

.menu-highlight #Top_bar .menu_wrapper {
  display: flex;
  align-items: center;
}
.menu-highlight #Top_bar .menu > li > a span {
  padding-top: 4px;
}
body:not(.home) .menu-highlight #Top_bar .menu > li > a {
  color: #1f1f4d;
}
.menu-highlight #Top_bar #menu {
  background-color: transparent;
}
.menu-highlight #Top_bar #menu ul li a:hover {
  background: #e12534;
  color: #fff;
}
.menu-highlight #Top_bar #menu ul li.current-menu-item a {
  background: transparent;
}
.menu-highlight #Top_bar #menu ul li.current-menu-item a:hover {
  background: rgb(185.4758064516, 25.5241935484, 38.2862903226);
}
.menu-highlight #Top_bar #menu ul li:last-of-type a {
  border-radius: 6px;
  font-weight: 800;
  background: #e12534;
}
@media only screen and (min-width: 768px) {
  .menu-highlight #Top_bar #menu ul li:last-of-type a {
    padding: 0 2rem;
    font-size: 19px;
    margin-left: 1rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .menu-highlight #Top_bar #menu ul li:last-of-type a {
    padding: 0.85rem 2rem;
  }
}
.menu-highlight #Top_bar #menu ul li:last-of-type a span {
  color: #fff;
}
.menu-highlight #Top_bar .menu_button {
  align-self: center;
}
.menu-highlight #Top_bar .menu_button #sliding_trigger {
  padding: 15px 20px;
  line-height: 50px;
  border-radius: 5px;
  color: #fff;
  font-family: "Avenir Next LT Pro";
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background-color 250ms ease-in-out;
}
.menu-highlight #Top_bar .menu_button #sliding_trigger:hover {
  background-color: #e12534;
}

#Side_slide .menu_wrapper #menu ul li:last-of-type a {
  font-weight: 800;
  background-color: #e12534;
  margin-right: 0;
}
#Side_slide .menu_wrapper #menu ul li:last-of-type a span {
  color: #fff;
}

/*--------------------------------------------------------------
  4. Slider
--------------------------------------------------------------*/
.mfn-main-slider {
  height: 75vh !important;
  position: relative; /* ensure top works */
  top: 0;
}
.mfn-main-slider rs-slide {
  height: 75vh !important;
}
.mfn-main-slider rs-sbg {
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .mfn-main-slider {
    height: 45vh !important;
  }
  .mfn-main-slider rs-slide {
    height: 45vh !important;
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  #slider-1-slide-1-layer-9 {
    font-size: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .home .mfn-main-slider rs-layer {
    font-size: 21px !important;
    line-height: 30px !important;
  }
  .home .mfn-main-slider a.rs-layer.rev-btn {
    left: 15px !important;
    font-size: 15px !important;
  }
  .home .mfn-main-slider a.rs-layer.trp-btn {
    left: 50px !important;
    top: 630px !important;
  }
}

/*--------------------------------------------------------------
  5. Buttons
--------------------------------------------------------------*/
.mfn-main-slider a {
  padding: 5px 35px;
}
.mfn-main-slider a.rev-btn {
  background-color: #e12534;
}
.mfn-main-slider a.rev-btn:hover {
  background-color: #e12534;
}
.mfn-main-slider a.trp-btn {
  border: 1px solid #fff !important;
  padding: 4px 33px !important;
}
@media only screen and (max-width: 767px) {
  .mfn-main-slider a.trp-btn {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .mfn-main-slider a#slider-1-slide-1-layer-11.rs-layer.trp-btn {
    left: 280px !important;
  }
}
@media only screen and (max-width: 767px) {
  .mfn-main-slider a {
    padding: 10px 35px !important;
  }
}

.button-custom .button {
  color: #fff;
  background-color: #e12534;
  transition: filter 250ms ease-in-out;
}
.button-custom .button:hover {
  color: #fff;
  background-color: #e12534;
  filter: brightness(120%);
}
@media only screen and (max-width: 767px) {
  .button-custom .button {
    margin: 0 auto !important;
  }
}

/*--------------------------------------------------------------
  6. Forms (Contact & Sliding Modal)
--------------------------------------------------------------*/
/*** Sliding Form Modal ***/
#sliding_trigger {
  cursor: pointer;
}

#sliding_area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sliding_area.z-under {
  z-index: 2;
}
#sliding_area.z-over {
  z-index: 30;
}
#sliding_area #sliding_box {
  position: absolute;
  width: 500px;
  height: 100vh;
  right: -520px;
  transition: right 300ms ease-in;
}
#sliding_area #sliding_box.active {
  right: 0;
}
#sliding_area #sliding_box .sliding_content {
  padding: 120px 60px 80px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1360px) {
  #sliding_area #sliding_box .sliding_content {
    padding: 55px 60px 80px;
  }
}

/*** Contact Form ***/
form {
  margin: 0 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #333;
}
@media only screen and (max-width: 767px) {
  form {
    margin: 0;
    padding: 1.5rem;
  }
}
form .form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
form label {
  margin-bottom: 1.1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #555;
  line-height: 22px;
}
form label .optional {
  color: #888;
  font-weight: 400;
  font-style: italic;
  margin-left: 0.25rem;
}
form input[type=text],
form input[type=email],
form input[type=tel],
form input[type=number],
form input[type=date],
form select,
form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f8f9fa;
  font-family: inherit;
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
  transition: border-color, box-shadow 250ms ease-in-out;
}
form input[type=text]::placeholder,
form input[type=email]::placeholder,
form input[type=tel]::placeholder,
form input[type=number]::placeholder,
form input[type=date]::placeholder,
form select::placeholder,
form textarea::placeholder {
  color: #aaa;
}
form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=date]:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  background-color: #fff;
}
form select {
  padding: 0.9rem 1rem;
}
form textarea {
  resize: vertical;
  min-height: 120px;
}
form .submit-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #303082;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color, transform 250ms ease-in-out;
}
form .submit-btn:hover {
  background-color: rgb(0, 98.4, 204);
}
form .submit-btn:active {
  transform: scale(0.99);
}
form .submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
}

/*--------------------------------------------------------------
  7. Page Sections & Components
--------------------------------------------------------------*/
/*** About Us ***/
.column_about {
  margin-bottom: 1.5rem;
}
.column_about h4 {
  margin-top: 1.5rem;
}

@media only screen and (max-width: 767px) {
  .container .column_button {
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .page.be-page-14 .card-layout .hover_color_wrapper {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .home .flex-column-reverse.flex-md-row .col-md-6 {
    text-align: center;
  }
}

.choice_section .card_shadow:hover {
  box-shadow: 2px 4px 8px 0px #d5d5d5;
  transition: box-shadow 200ms ease-in;
}

/*** Services ***/
#Services {
  background-size: 12%;
  background-position: 75% 85%;
  background-repeat: no-repeat;
}

.mcb-section .hover_color_wrapper .single-icon {
  font-size: 25px;
  line-height: 25px;
}
.mcb-section .hover_color_wrapper h4 {
  margin-bottom: 1rem;
}
.mcb-section .hover_color_wrapper h5 {
  color: #e12534;
  margin-bottom: 0;
  padding: 1rem 0;
  font-size: 1.45rem;
}
@media only screen and (max-width: 767px) {
  .mcb-section .hover_color_wrapper h5 {
    padding: 1.5rem 0;
  }
}
.mcb-section .hover_color_wrapper p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  font-size: 21px;
}
@media only screen and (max-width: 767px) {
  .mcb-section .hover_color_wrapper p {
    font-size: 18px;
  }
}

.simple-list-section {
  padding: 80px 0;
  background-color: rgba(48, 48, 130, 0.05);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.included-item {
  font-size: 1.25rem;
  padding: 15px 15px 10px;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 2px 4px 8px 0px #d5d5d5;
  transition: background-color 0.3s ease;
}

.included-item:hover {
  background-color: rgba(48, 48, 130, 0.05);
}

.included-item .fa-check-circle {
  color: #28a745; /* A nice green for the checkmark */
  margin-right: 12px;
}

@media only screen and (max-width: 767px) {
  .page.be-page-16 .mcb-section.mcb-bg .hover_color_wrapper .single_icon.themecolor i {
    color: #fff !important;
  }
}

.style-simple .icon_box .desc_wrapper .title {
  letter-spacing: 3px;
}

#Services img.scale-with-grid,
#Content img {
  aspect-ratio: 16/9;
  object-fit: cover;
}

#Services .col-md-4:last-of-type > *:not(.hover_color) img.scale-with-grid {
  aspect-ratio: inherit;
  max-width: 74%;
}

/*** Our Goal / What We Work ***/
#our-goal .col-md-6:first-child {
  padding: 0 10% 0 1.5%;
}
#our-goal .col-md-6:last-child {
  padding: 0 0 0 4%;
}
@media only screen and (max-width: 767px) {
  #our-goal .col-md-6:first-child, #our-goal .col-md-6:last-child {
    padding: 0;
  }
}

/*** Why Choose Us ***/
.section-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 1s ease-out;
}

.section-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

/*
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  border-radius: 2px;
}
*/
.section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #303082, #303082);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.icon-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(0deg);
  transition: transform 300ms ease;
}

.feature-card:hover .icon-container {
  transform: scale(1.1) rotate(0deg);
}

.feature-card:hover .icon-container::before {
  transform: scale(0.005) rotate(180deg);
  transition: transform 300ms ease;
}

.section .cards-grid .feature-card .icon-container .icon {
  font-size: 2rem;
  z-index: 1;
}
.section .cards-grid .feature-card .icon-container .icon img {
  width: 40px;
  aspect-ratio: auto !important;
  object-fit: contain !important;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-description {
  font-size: 1.25rem;
  line-height: 1.6;
}

.feature-card:hover .feature-title {
  color: #e12534;
}

/* Floating elements for visual interest */
.floating-shape {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 60px;
  height: 60px;
  background: #ff6b6b;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  top: 20%;
  right: 10%;
  width: 40px;
  height: 40px;
  background: #4ecdc4;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.shape-3 {
  bottom: 15%;
  left: 8%;
  width: 50px;
  height: 50px;
  background: #45b7d1;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 30px 20px;
  }
}
/* Additional interactive elements */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*** Contact Banner ***/
#contact-banner .col-md-6:last-child {
  padding: 5% 0 0 10%;
}
@media only screen and (max-width: 767px) {
  #contact-banner .col-md-6:last-child {
    padding: 0;
    margin-top: 2.5rem;
  }
}

.iframe_container {
  background-color: #fff;
  padding: 20px 20px 12px;
  border-radius: 12px;
}
.iframe_container iframe {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .iframe_container iframe {
    height: 450px;
  }
}
@media only screen and (max-width: 767px) {
  .iframe_container iframe {
    height: 250px;
  }
}

/*** FAQs ***/
.faq-section .card {
  padding: 80px 60px 65px;
  background-color: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .faq-section .card {
    padding: 40px;
  }
}

/*** Cards & Images ***/
.image_frame img.scale-with-grid,
.image_frame .image_wrapper img {
  border-radius: 16px;
}

/*** Testimonials ***/
.card-layout .hover_color_wrapper {
  padding: 2.5rem;
}
@media only screen and (max-width: 991px) {
  .card-layout .col-lg-6:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #Testimonials .card-layout .hover_color_wrapper p,
  #Testimonials .card-layout .hover_color_wrapper h4 {
    text-align: center;
  }
}

/*** Contact Section ***/
.contact-section {
  background-color: #f7e4dc;
}
.contact-section h2,
.contact-section p,
.contact-section h4,
.contact-section h4 a {
  color: #1f1f4d;
}
@media only screen and (max-width: 767px) {
  .contact-section.page.be-page-19 .column_icon_box {
    margin-bottom: 40px;
  }
  .contact-section.page.be-page-19 .column_icon_box .icon_box {
    text-align: center;
  }
  .contact-section.page.be-page-19 .column_icon_box .icon_box .image_wrapper {
    margin: 0 auto 20px;
  }
  .contact-section.page.be-page-19 form .row .col-6 {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  8. Footer
--------------------------------------------------------------*/
/*** Legacy Footer Styles ***/
.footer-copy-center #Footer {
  background-image: none;
  background-color: #fff;
}
.footer-copy-center #Footer a,
.footer-copy-center #Footer p,
.footer-copy-center #Footer h5 {
  color: #1f1f4d;
}
.footer-copy-center #Footer h5 {
  font-size: 1.25rem;
}
.footer-copy-center #Footer p:not(.copyright-text) {
  font-size: 21px;
}
.footer-copy-center #Footer .footer_button {
  color: #fff !important;
}
.footer-copy-center #Footer .footer_copy a#back_to_top {
  margin: 1rem 0;
}
.footer-copy-center #Footer .footer_copy .one {
  padding-top: 15px;
}
.footer-copy-center #Footer .copyright {
  color: #fff;
}
.footer-copy-center #Footer .copyright a {
  color: #626262;
}

/*** Modern Footer Styles ***/
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text-light);
  padding: 80px 0 2rem;
  border-top: 1px solid var(--footer-border-color);
  font-size: 1.2rem;
  line-height: 1.7;
}
.site-footer .row > div {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .site-footer .row > div {
    margin-bottom: 0;
  }
}
.site-footer .footer-heading {
  font-weight: 600;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--footer-text-dark);
}
.site-footer .footer-about .footer-logo {
  height: 60px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .site-footer .footer-about .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer .footer-about p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .site-footer .footer-links ul,
  .site-footer .footer-contact ul {
    padding-left: 0;
  }
}
.site-footer .footer-links ul li {
  margin-bottom: 15px;
}
.site-footer .footer-links ul a {
  color: var(--footer-text-light);
  text-decoration: none;
  transition: color, padding-left 250ms ease-in-out;
}
.site-footer .footer-links ul a:hover {
  color: var(--footer-accent-color);
  padding-left: 5px;
}
.site-footer .footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.site-footer .footer-contact ul i {
  color: var(--footer-accent-color);
  margin-right: 15px;
  margin-top: 5px;
  width: 20px;
  text-align: center;
}
.site-footer .footer-contact ul a,
.site-footer .footer-contact ul span {
  color: var(--footer-text-light);
  text-decoration: none;
  transition: color 250ms ease-in-out;
}
.site-footer .footer-contact ul a:hover {
  color: var(--footer-accent-color);
}
.site-footer .footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--footer-border-color);
}
.site-footer .footer-bottom .social-icons a {
  color: var(--footer-text-light);
  margin: 0 15px;
  font-size: 22px;
  display: inline-block;
  transition: transform, color 250ms ease-in-out;
}
.site-footer .footer-bottom .social-icons a:hover {
  color: var(--footer-accent-color);
  transform: translateY(-3px);
}
.site-footer .footer-bottom .copyright-text {
  font-size: 1rem;
  color: var(--footer-text-light);
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    margin-top: 30px;
    padding-top: 30px;
  }
  .site-footer .footer-bottom .social-icons {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .site-footer {
    padding-top: 60px;
  }
}

.custom-slider-container {
  position: relative;
  width: 100%;
  height: 72vh; /* Fullscreen height */
  max-height: 1000px; /* Cap the height */
  overflow: hidden;
  background-color: #333; /* Fallback background */
  touch-action: pan-y; /* Allow vertical scrolling but handle horizontal touches */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.custom-slider-container .container {
  width: 1250px;
}
.custom-slider-container .slide-title-main,
.custom-slider-container .slide-title-sub {
  color: #fff;
}
.custom-slider-container button.slider-arrow {
  border: 1px solid #e12534;
}

.custom-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align content to the left */
  color: #fff;
  min-height: 300px; /* Adjust as needed */
  background-attachment: scroll; /* Better for mobile performance */
}

.custom-slide.active {
  opacity: 1;
  z-index: 1;
}

.custom-slide::after {
  /* Dark overlay for better text readability */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
@media only screen and (min-width: 768px) {
  .slide-content {
    padding-top: 200px;
  }
}

.slide-title-main,
.slide-title-sub {
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-title-main {
  font-size: 60px;
  margin-bottom: 20px;
}

.slide-title-sub {
  font-size: 60px;
  margin-bottom: 40px;
}

.slide-buttons {
  display: flex;
  gap: 20px;
}

.slide-btn {
  padding: 0 30px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 40px;
  text-align: center;
}

.slide-btn.btn-primary {
  background-color: #e12534;
  border-color: #e12534;
  color: #fff;
  width: fit-content;
}

.slide-btn.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0b5ed7;
}

.slide-btn.btn-secondary {
  background-color: transparent;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .slide-btn.btn-secondary {
    display: none !important;
  }
}

.slide-btn.btn-secondary:hover {
  background-color: #fff;
  color: #333;
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Navigation Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #fff;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .slide-content {
    padding-left: 50px;
    padding-right: 50px;
  }
  .slide-title-main,
  .slide-title-sub {
    font-size: 44px;
  }
}
@media (max-width: 768px) {
  .custom-slider-container {
    height: 58vh; /* Shorter on mobile */
  }
  .slide-content {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
  }
  .slide-title-main {
    font-size: 27px;
    margin-bottom: 10px;
  }
  .slide-title-sub {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .slide-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .slider-arrow {
    display: none;
  }
}

/*# sourceMappingURL=custom.css.map */
