:root {
  --theme-color: #fe5722 !important;
  --theme-color2: #684DF4;
  --title-color: #141D38;
  --body-color: #737887;
  --smoke-color: #F5F5F5;
  --smoke-color2: #E2E8FA;
  --smoke-color3: #EFF1F9;
  --black-color: #000000;
  --black-color2: #080E1C;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #E0E0E0;
  --title-font: 'Barlow', sans-serif;
  --body-font: 'Roboto', sans-serif;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 24px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Barlow', sans-serif;
}

body {
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background-color: #222021;
  color: white;
  padding: 35px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0px;
  position: relative;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.contact-info i {
  font-size: 14px;
}

.social-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  position: relative;
  top: -22px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  text-decoration: none;
}

/* Navigation Bar */
.nav-bar {
  background-color: #ffffff !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 3%;
  position: relative;
  margin-left: 56px;
  margin-right: 68px;
  top: -48px;
  border-radius: 10px;
}

.nav-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 15%;
  height: 100%;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 1;
}

.logo {
  position: relative;
  z-index: 2;
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  gap: 25px;
  margin-left: 50px;
}



.menu a {
  color: #484848;
  text-decoration: none;
  /* font-weight: bold; */
  font-size: 14px;
  /* text-transform: uppercase; */
  transition: color 0.3s;
  position: relative;
}

.menu a:hover {
  color: #FF5722;
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FF5722;
}

.right-menu {
  display: flex;
  gap: 10px;
}

.search-btn,
.events-btn {
  background-color: #FF5722;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
 
}

/* .search-btn:hover, .events-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
} */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: rgb(54, 54, 54);
  transition: all 0.3s;
}

/* Fullscreen Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0B1120;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
  transform: translateY(-100%);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
}

/* Delay each menu item for cascade effect */
.mobile-menu-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-links a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-links a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-links a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-links a:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu-links a:nth-child(6) {
  transition-delay: 0.6s;
}

.mobile-menu-links a.active {
  color: #FF5722;
}

.mobile-menu-links a:hover {
  color: #FF5722;
}

.mobile-menu-social {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0.7s;
}

.mobile-menu.active .mobile-menu-social {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-social a {
  color: white;
  font-size: 24px;
  transition: color 0.3s;
}

.mobile-menu-social a:hover {
  color: #FF5722;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: #0B1120;
  padding: 80px 20px 20px;
  transition: right 0.5s ease;
  z-index: 1000;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
  z-index: 10000;
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.sidebar h3 {
  color: #FF5722;
  margin-bottom: 20px;
  border-bottom: 1px solid #FF5722;
  padding-bottom: 10px;
}

.sidebar-events {
  color: white;
}

.sidebar-events .event {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-events .event h4 {
  margin-bottom: 10px;
  color: #FF5722;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.overlay.active {
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .menu {
    gap: 15px;
  }
  .menu a {
     font-size: 12px;
  }
  .logo img {
  height: 30px;
}
.events-btn {
 padding: 4px 15px;
 font-size: 12px;

}

  .nav-bar::before {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 10px 5%;
  }

  .contact-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
  }

  .social-follow {
    margin-top: 5px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: white;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: white;
  }

  .nav-bar::before {
    width: 30%;
  }
}

@media (max-width: 576px) {
  .contact-info div {
    font-size: 12px;
  }

  .social-follow {
    font-size: 12px;
    display: none;
  }

  .nav-bar {
    padding: 15px 3%;
    margin-right: 0px;
    margin-left: 0px;
    border-radius: 0px;
    position: relative;
    top: -15px;
  }

  .right-menu {
    gap: 5px;
  }

  .search-btn,
  .events-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .logo img {
    height: 40px;
  }

  .nav-bar::before {
    width: 40%;
  }

  .top-actions {
    top: -8px !important;
  }

  .content-container {
    padding: 20px 20px !important;
  }
}


.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  color: #FF5722;
  font-weight: bold;
  font-size: 18px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.title {
  font-size: 32px;
  font-weight: bold;
  color: #1a2a3a;
}

.title span {
  color: #FF5722;
}

.view-all {
  background-color: #FF5722;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.view-all:hover {
  background-color: #e64a19;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  margin: 10px;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  opacity: 100;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card:hover .card-overlay {
  opacity: 1;
}

.location-name {
  font-size: 24px;
  font-weight: bold;
  color: #FF5722;

}

.add-button {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF5722;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.location-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF5722;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .location-icon {
  opacity: 1;
}

/* Owl Carousel custom styling */
.owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  left: 5px;
}

.owl-prev,
.owl-next {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF5722 !important;
  font-size: 24px;
  pointer-events: auto;
}

.owl-dots {
  margin-top: 20px;
}

.owl-dot span {
  background-color: #ddd !important;
}

.owl-dot.active span {
  background-color: #FF5722 !important;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }
}


.section-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.image-container {
  flex: 1;
  min-width: 300px;
  position: relative;
  margin-right: 40px;
}

.background-shape {
  position: absolute;
  width: 92%;
  height: 100%;
  background-color: #ffd6c9;
  border-radius: 50%;
  z-index: -1;
  transform: scale(1.1);
}

.image-content {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 90%;
  margin: 0 auto;
}

.image-content img {
  width: 100%;
  height: auto;
  display: block;
}

.content-container {
  flex: 1;
  min-width: 300px;
  padding: 20px 0;
}

.get-to-know {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.get-to-know svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.get-to-know-text {
  color: #FF5722;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.main-heading {
  font-size: 40px;
  font-weight: bold;
  color: #1a2a3a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.company-name {
  font-size: 40px;
  color: #FF5722;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight-text{
  color: #FF5722;
}

.description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: center;
  margin-right: 40px;
  margin-bottom: 20px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  color: #6366F1;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: bold;
  color: #1a2a3a;
  margin-bottom: 5px;
}

.feature-description {
  color: #666;
  font-size: 14px;
}

.cta-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.read-more {
  background-color: #FF5722;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 20px;
  margin-bottom: 20px;
}

.call-us {
  display: flex;
  align-items: center;
}

.call-icon-container {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 87, 34, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.call-icon {
  color: #FF5722;
  font-size: 24px;
}

.call-content {
  display: flex;
  flex-direction: column;
}

.call-title {
  color: #666;
  font-size: 14px;
}

.call-number {
  font-weight: bold;
  color: #1a2a3a;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #eee;
  margin: 20px 0;
}

@media (max-width: 992px) {
  .section-container {
    flex-direction: column;
    margin-top: 91px;
  }

  .image-container {
    margin-right: 0;
    margin-bottom: 40px;
    max-width: 500px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 28px;
  }

  .company-name {
    font-size: 15px;
  }
}


/* Service Card ---------------------------------- */
.service-card {
  padding: 40px;
  position: relative;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card:before,
.service-card:after {
  content: '';
  position: absolute;
  height: 110px;
  width: 110px;
  background-color: var(--theme-color);
  opacity: 0.6;
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.service-card:before {
  bottom: -73px;
  right: -28px;
}

.service-card:after {
  right: -73px;
  bottom: -28px;
}

.service-card .shape-icon {
  margin-bottom: 30px;
}

.service-card .box-title a:hover {
  color: var(--smoke-color2);
}

.service-card .bg-shape {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  pointer-events: none;
}

.service-card .bg-shape img {
  width: 100%;
}

.service-card_number {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 100px;
  line-height: 1;
  font-weight: bold;
  color: var(--smoke-color2);
  opacity: 0.3;
}

.service-card_text {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  margin-bottom: 22px;
}

.service-card .th-btn {
  background-color: var(--smoke-color2);
  color: var(--title-color);
  padding: 12.5px 20px;
  box-shadow: none;
}

.service-card .th-btn:before,
.service-card .th-btn:after {
  background-color: var(--smoke-color2);
}

.service-card:hover {
  width: 100%;
}

.service-card:hover:before,
.service-card:hover:after {
  opacity: 1;
  height: 120%;
  width: 120%;
  border-radius: 0;
}

.service-card:hover .shape-icon:before {
  background-color: var(--white-color);
}

.service-card:hover .bg-shape {
  bottom: 0;
  opacity: 1;
}

.service-card:hover .box-title {
  color: var(--smoke-color2);
}

.service-card:hover .th-btn {
  background-color: var(--white-color);
}

.service-card:hover .service-card_text {
  color: var(--white-color);
}

.service-sec {
  background-size: auto;
  background-position: top center;
  background-color: var(--smoke-color);
}

/* Extra small devices */
@media (max-width: 375px) {
  .service-card {
    padding: 40px 30px;
  }
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 700;
  margin-top: -0.32em;
}

.box-title a {
  color: inherit;
}

.box-title a:hover {
  color: var(--theme-color);
}

/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 10px);
  margin-top: -0.32em;
  text-transform: capitalize;
}

.sec-title.sec-title2 span {
  display: inline-block;
  position: relative;
  color: var(--theme-color);
}

.sec-title.sec-title2 span:after {
  content: "";
  height: 15px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='215' height='19' viewBox='0 0 215 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16.9999C37.6667 5.9999 129.8 -9.4001 213 16.9999' stroke='%23407360' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
  background-size: cover;
  background-repeat: repeat-x;
  position: absolute;
  bottom: -7px;
  left: 0;
  -webkit-animation: titleFill 3s linear infinite;
  animation: titleFill 3s linear infinite;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}



/*------------------- 4.00. Counter  -------------------*/
/* Counter 1 ---------------------------------- */
.counter-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.counter-card_icon {
  width: 112px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
  padding-left: 15px;
  margin-bottom: 2px;
  z-index: 2;
}

.counter-card_icon:before,
.counter-card_icon:after {
  content: '';
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--black-color2);
  -webkit-clip-path: path("M13.3648 23.689C12.3113 18.0885 13.5019 11.7494 18.6938 9.40012C35.1267 1.96429 68.7714 -9.44147 82.3112 14.0815C100.548 45.7649 138.846 59.5402 82.3112 87.5508C66.122 95.5719 56.2138 98.9992 50.3168 99.8059C42.2525 100.909 34.515 87.5508 26.3756 87.5508H13.8433C10.9933 87.5508 8.2154 86.3499 6.50037 84.0737C-12.7867 58.4757 17.3824 45.0461 13.3648 23.689Z");
  clip-path: path("M13.3648 23.689C12.3113 18.0885 13.5019 11.7494 18.6938 9.40012C35.1267 1.96429 68.7714 -9.44147 82.3112 14.0815C100.548 45.7649 138.846 59.5402 82.3112 87.5508C66.122 95.5719 56.2138 98.9992 50.3168 99.8059C42.2525 100.909 34.515 87.5508 26.3756 87.5508H13.8433C10.9933 87.5508 8.2154 86.3499 6.50037 84.0737C-12.7867 58.4757 17.3824 45.0461 13.3648 23.689Z");
  z-index: -2;
}

.counter-card_icon:after {
  background-color: var(--white-color);
  top: 2px;
  left: 10px;
  z-index: -1;
}

.counter-card_icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-card_number {
  font-size: 40px;
  color: var(--white-color);
  font-weight: 900;
  margin-bottom: 8px;
  margin-top: -0.3em;
}

.counter-card_text {
  font-weight: 500;
  color: var(--white-color);
  display: block;
  margin-bottom: -0.5em;
}

.counter-card .icon {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.counter-card:hover .counter-card_icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.counter-card:hover .icon {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .counter-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .counter-card_number {
    margin-bottom: 4px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .counter-card_number {
    font-size: 36px;
  }

  .counter-card_text {
    font-size: 14px;
  }
}

.counter-card-wrap {
  background-color: #080E1C;
  border-radius: 10px;
  padding: 61px 11px;
  /* Extra small devices */
}

.counter-card-wrap .counter-card_icon:before {
  background-color: var(--theme-color);
  opacity: 0.6;
}

.counter-card-wrap .counter-card_number {
  font-weight: 700;
}

@media (max-width: 575px) {
  .counter-card-wrap {
    padding: 65px 10px;
  }
}



.gallery-container {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
}

.filter-buttons {
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  margin: 0 5px;
  border: none;
  background: #333;
  color: #fff;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: #555;
  transform: scale(1.1) rotate(0deg);
}

.filter-btn.active {
  background: #fe5722;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 185px;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(2deg);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .overlay {
  transform: translateY(0);
}

/* Hidden class for filtering */
.hidden {
  display: none !important;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}



.marquee-slider {
  padding: 100px 0;
  background: #222;
  width: 100%;
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.marquee-slider__list {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  flex: none;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.38, 1.399);
}

.marquee-slider__list--item {
  color: #fff;
  width: 100%;
  height: 100%;
  max-width: 260px;
  min-height: 260px;
  grid-column-gap: 1.6rem;
  border-radius: 0.8rem;
  flex: none;
  display: flex;
  padding: 1.2rem;
  position: relative;
  align-items: center;
  grid-row-gap: 1.6rem;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  /* background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)); */
}

.left-section {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.right-section {
  flex: 1;
  min-width: 300px;
}

.appointment-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  display: flex;
  align-items: center;
  color: #ff5722;
  font-weight: bold;
}

.logo-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.appointment-title {
  margin-left: auto;
  font-size: 24px;
  color: #1a2345;
  font-weight: bold;
}

.opportunities-heading {
  font-size: 36px;
  color: #1a2345;
  margin-bottom: 20px;
  line-height: 1.2;
}

.opportunities-text {
  color: #ff5722;
  font-weight: bold;
  font-size: 36px;
}

.description-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.divider {
  height: 1px;
  background-color: #ddd;
  margin: 20px 0;
  width: 100%;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.contact-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  min-width: 220px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
  background-color: #ff5722;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}

.card-icon svg {
  fill: white;
  width: 24px;
  height: 24px;
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-title {
  color: #666;
  font-size: 14px;
  margin-bottom: 5px;
}

.card-value {
  color: #1a2345;
  font-weight: bold;
}

/* Form Styles */
.form-container {
  max-width: 100%;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
}

textarea {
  height: 120px;
  resize: vertical;
}

select {
  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='%23333' 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 15px center;
  background-size: 15px;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-section {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .opportunities-heading {
    font-size: 28px;
  }

  .opportunities-text {
    font-size: 28px;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.diagonal-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #f1f3fa;
  transform: skewX(-15deg) translateX(20%);
  z-index: -1;
}

.container-blog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.news-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ff5722;
  font-weight: bold;
}

.news-badge svg {
  margin-right: 8px;
}

.page-title {
  font-size: 36px;
  color: #1a2345;
  margin-bottom: 10px;
  position: relative;
  /* display: inline-block; */
}

.highlight {
  color: #ff5722;
}

.notification-dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #ff5722;
  border: 2px solid #fff;
  border-radius: 50%;
  top: 0;
  right: -15px;
}

/* Slider container */
.slider-container {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

/* Slider track */
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* Blog cards */
.blog-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #6c757d;
  font-size: 14px;
}

.blog-date,
.blog-comments {
  display: flex;
  align-items: center;
}

.blog-date svg,
.blog-comments svg {
  margin-right: 5px;
}

.blog-title {
  font-size: 18px;
  color: #1a2345;
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-top: 1px solid #eee;
}

.blog-author {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 14px;
}

.read-more {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, font-size 0.3s ease;
}

/* Hover effect */
.read-more:hover {
  color: #ffffff;
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
  .read-more {
    font-size: 12px;
  }
}

.how-work {
  position: relative;
  top: 80px;
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
  .read-more {
    font-size: 10px;
  }

  .how-work {
    position: relative;
    top: 10px;
  }
}


.read-more svg {
  margin-left: 5px;
}

.rating {
  display: flex;
  align-items: center;
  color: #6c757d;
  font-size: 14px;
}

.rating span {
  margin-right: 5px;
}

/* Navigation dots */
.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #ff5722;
}

@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .blog-card {
    flex: 0 0 calc(100% - 20px);
  }

  .page-title {
    font-size: 28px;
  }
}




/* Style for the floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 5px;
  right: 30px;
  background-color: #25D366;
  /* WhatsApp green color */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  text-decoration: none;
}

/* Center the icon vertically */
.whatsapp-float i {
  line-height: 60px;
}

/* Hover effect */
.whatsapp-float:hover {
  background-color: #20bd57;
  color: #fff;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #BB191E;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #3498db;
  transform: translateY(-3px);
}




.carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  perspective: 1000px;
  top: -86px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;

  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-item.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s ease-in-out;
  filter: brightness(0.8);
}

.carousel-item.active img {
  transform: scale(1);
  filter: brightness(1);
}

.content {
  position: absolute;
  top: 128px;
  left: 64px;
  width: 100%;
  padding: 60px 40px;
  color: white;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.carousel-item.active .content {
  opacity: 1;
  transform: translateY(0);
}

.caption {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 70%;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
}



.cta:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(58, 134, 255, 0.4);
}

.carousel-item.active .caption,
.carousel-item.active .subtitle,
.carousel-item.active .cta {
  transform: translateY(0);
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-right: 30px;
  z-index: 10;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.carousel-btn:active {
  transform: scale(0.95);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.indicators {
  position: absolute;
  bottom: 30px;
  left: 560px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator-progress {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-progress:hover {
  background: rgba(255, 255, 255, 0.5);
}

.indicator-bar {
  display: block;
  height: 100%;
  width: 0;
  background: white;
  border-radius: 2px;
  transition: width 0.1s linear;
}

.indicator-progress.active .indicator-bar {
  animation: progress-animation 6s linear forwards;
}

@keyframes progress-animation {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.slide-number {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.current {
  font-size: 2.5rem;
  font-weight: 800;
}

.divider {
  width: 30px;
  height: 2px;
  background: white;
  margin: 0 5px;
}

.total {
  opacity: 0.7;
}

.progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 10;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transition: width 0.1s linear;
}

.carousel-item .bg-shape {
  position: absolute;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-item.active .bg-shape {
  transform: translate(-50%, -50%) scale(1);
}

.carousel-item .bg-shape-1 {
  width: 100vh;
  height: 100vh;
  top: 30%;
  left: 70%;
  transition-delay: 0.2s;
}

.carousel-item .bg-shape-2 {
  width: 80vh;
  height: 80vh;
  top: 60%;
  left: 30%;
  transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .caption {
    font-size: 2.5rem;
  }

  .subtitle {
    max-width: 80%;
  }
}

@media (max-width: 992px) {
  .carousel-container {
    height: 450px;
  }

  .caption {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
    max-width: 85%;
  }

  .content {
    padding: 40px 30px;
  }

  .carousel-controls {
    padding-right: 20px;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .carousel-container {
    height: 400px;
    border-radius: 12px;
  }

  .caption {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1rem;
    max-width: 95%;
  }



  .content {
    padding: 0px 0px !important;
  }

  .carousel-controls {
    top: initial;
    bottom: 30px;
    right: 30px;
    transform: none;
    flex-direction: row;
    padding-right: 0;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .indicators {
    bottom: 25px;
    left: 25px;
  }

  .indicator-progress {
    width: 50px;
  }

  .slide-number {
    top: 25px;
    right: 25px;
    font-size: 1rem;
  }

  .current {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .diagonal-bg {
    display: none;
  }

  .carousel-container {
    height: 350px;
    border-radius: 10px;
  }

  .caption {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
    max-width: 100%;
  }


  .content {
    padding: 0px 0px;
  }

  .carousel-controls {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .indicators {
    bottom: 20px;
    left: 20px;
    gap: 8px;
    display: none;
  }

  .indicator-progress {
    width: 40px;
    height: 3px;
  }

  .slide-number {
    top: 20px;
    right: 20px;
    font-size: 0.9rem;
  }

  .current {
    font-size: 1.6rem;
  }
}

/* Animation for page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-wrapper {
  animation: fadeIn 0.8s ease-out forwards;
}


.banner {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -120px;
  height: 400px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  /* Add a semi-transparent overlay */
}

/* Breadcrumb Container */
.breadcrumb-container {
  position: absolute;
  text-align: start;
  color: white;
  left: 50%;
  transform: translateX(-50%);
}

.breadcrumb-container h1 {
  font-size: 48px;
  margin: 0;
  font-weight: bold;
}

/* Breadcrumb Styling */
.breadcrumb {
  font-size: 18px;
  margin-top: 5px;
}

.breadcrumb a {
  color: #ff5722;
  /* Highlighted Home link */
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb span {
  color: white;
  margin: 0 5px;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .banner {
    top: -80px;
    /* Adjust top position for smaller screens */
  }

  .breadcrumb-container h1 {
    font-size: 36px;
    /* Reduce font size for tablets */
  }

  .breadcrumb {
    font-size: 16px;
    /* Reduce font size for tablets */
  }
}

@media screen and (max-width: 767px) {
  .banner {
    top: -50px;
    /* Adjust top position for mobile screens */
  }

  .breadcrumb-container h1 {
    font-size: 24px;
    /* Reduce font size for mobile screens */
  }

  .breadcrumb {
    font-size: 14px;
    /* Reduce font size for mobile screens */
  }

  .breadcrumb-container {
    left: 39%;
    transform: translateX(-50%);
    padding: 20px 0px;
    margin-top: 189px;
    font-size: 11px;
  }

}

/* Wave Shape */



.banner-commitment {
  position: relative;
  height: 75vh;
  background-image: url('/api/placeholder/1920/1080');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.banner-commitment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.content-commitment {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1.5s ease-out;
}

.content-commitment h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
  animation: titleShimmer 3s infinite alternate;
}

.content-commitment p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleShimmer {
  from {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
  }

  to {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 768px) {
  .content-commitment {
    padding: 10px;
  }

  .content-commitment h1 {
    font-size: 2rem;
  }

  .content-commitment p {
    font-size: 1rem;
  }
}


.success-section {
  display: flex;

  height: 607px;
  margin: 32px auto;
  /* box-shadow: 0 4px 6px rgba(0,0,0,0.1); */
  overflow: hidden;
}

.content-wrapper {
  width: 60%;
  padding: 30px 113px 30px 30px;
  /* background: white; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-title {
  font-size: 1.8rem;
  color: black;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-description {
  font-size: 16px;
  color: #666;
  text-align: justify;
}

.visual-wrapper {
  width: 40%;
  position: relative;
  background: white;
  overflow: hidden;
}

.orange-shape-top {
  position: absolute;
  top: 0;
  right: 235px;
  width: 150px;
  height: 150px;
  background: #ff4500;
  transform: rotate(45deg);
  transform-origin: top right;
  z-index: 1;
}

.person-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orange-curved-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 100px;
  background: #ff4500;
  border-top-left-radius: 100px;
}

@media (max-width: 500px) {
  .success-section {
    width: 100%;
    flex-direction: column;
    height: auto;
  }

  .content-wrapper,
  .visual-wrapper {
    width: 100%;
  }

  .visual-wrapper {
    height: 300px;
  }

  .banner {
    position: relative;
    top: -19px;
  }
  .popup {

    width: 350px;

  }
}







/* Service Page */

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: #1a2a3a;
}


.floating-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 150px;
  background-color: #ff5722;
  color: white;
  border-radius: 5px 0 0 5px;
  border: none;
  cursor: pointer;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 100000;
}


.banner-overlays {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(23, 24, 26, 0.7), rgba(61, 90, 128, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}