@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.cdnfonts.com/css/academy-engraved-let');


:root {
	--main-color: #03858C;
	--second-color: #4e6285;
	--white-color: #fff;
	--black-color: #000;
	--gradient: linear-gradient(90deg, #03858C 0%, #4e6285 100%);
	--second-font: "DM Sans", sans-serif;
}

body {
  font-family: "Mulish", sans-serif !important;
  background-color: #F5F5F5;
  overflow-x: hidden !important;
}

/* nav */
.nav_logo {
  width: 180px;
}

.custom_inner-nav {
  background-color: #E6F2F2;
}

.page_nav_link .nav-item .nav-link {
  color: #484848;
  transition: 0.3s;
}

.page_nav_link .nav-item .nav-link:hover {
  color: #03858C;
  font-weight: 500;
  transition: 0.3s;
}

.page_nav_link .nav-item .nav-link.active {
  color: #03858C;
}

@media only screen and (min-width: 480px) and (max-width: 991px) and (max-height: 480px) and (orientation: landscape) {

  .home_bg{
    height: 800px !important;
  }
}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Hidden state */
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 60px; 
    height: 60px;
}

.logo-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px; 
    font-weight: bold;
    color: #ffffff;
    z-index: 10; 
}
.logo-placeholder img{
  width: 60px;
}


.loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    color: #208e89; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateZ(45deg); /* Centering + Initial Rotation */
}

.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}

.loader:after {
    color: #4d6184; 
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }

    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }

    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }

    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }

    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }

    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }

    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }

    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotateZ(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}

@keyframes rotateccw {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}


/* nav */

@media (min-width: 1400px) {
  .game-section .container {
    max-width: 85%;
  }
}

.nav-section {
  width: 90% !important;
}


/* language switcher */
.lang-switch {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 5px 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.lang-switch span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}

.lang-switch .ar {
  color: #34405f;
}

.lang-switch .divider {
  color: #34405f;
}

.lang-switch .en {
  color: #1e7d85;
}



.home_bg {
  background-image: url('../img/bg.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
}


.banner_title {
  color: #fff;
  padding: 0px 0px 100px 0px;
  max-width: 700px;


}

.banner_title h2 {
  font-size: 76px;
  font-weight: 800;
  line-height: 60px;
  overflow: hidden;
}

.banner_title h2 span {
  font-size: 64px;
  font-weight: 400;
}

.banner_title p {

  overflow: hidden;
  max-width: 650px;
}

.banner-content {
  width: 50%;
  overflow: hidden;
}





.owl-carousel .slide {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  overflow: hidden;
  padding: 5px;
  margin: 0;
}

.owl-carousel,
.owl-stage,
.owl-stage-outer,
.owl-item {
    display: flex !important;
}

.slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.slide h3 {
  font-size: 13px;
  padding: 10px;
  color: #333;
  font-weight: 500;
  margin: 0;
}

.owl-dots,
.owl-nav {
  display: none !important;
}

.custom-nav-wrapper {
  width: 100%;
  padding-top: 25px;
  display: flex;
  justify-content: flex-start;
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  font-weight: 600;
  user-select: none;
  margin-left: 25px;
}

.slider-nav span {
  color: #ffffff;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  transition: color 0.3s ease;
}

.slider-nav span.active {
  color: #00797e;
  padding-right: 70px;
}

.slider-nav span.active::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 1px;
  background-color: #ffffff;
}

/* slider */
/* home background */

/* drop navbar menu */

/* END drop navbar menu */
.navbar .dropdown-menu.custom-news {
  /* min-width: 220px; */
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 0;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(13, 38, 59, 0.08);
  transition: transform .12s ease, opacity .12s ease;
  margin-top: .45rem;
}
.navbar .dropdown-menu.custom-news .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #484848;
  padding: .55rem .9rem;
  border-radius: 6px;
  transition: background .12s ease, color .12s ease;
}
.navbar .dropdown-menu.custom-news .dropdown-item:hover,
.navbar .dropdown-menu.custom-news .dropdown-item:focus {
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
}

/* small divider spacing */
.navbar .dropdown-menu.custom-news .dropdown-item + .dropdown-item {
  margin-top: 6px;
}
@media (max-width: 991.98px) {
  .navbar .dropdown-menu.custom-news {
    position: static;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }
  .navbar .dropdown-menu.custom-news .dropdown-item {
    color: #222;
    padding: .6rem 1rem;
    /* background: #fff; */
    border-radius: 6px;
    margin-bottom: 6px;
  }
}



/* marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #EAEAEA;
  padding: 12px 0;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  color: white;
  -webkit-text-stroke: 1px #C0C0C0;
  font-size: 60px;

}

.marquee-content span {
  display: inline-block;
  padding-right: 30px;
  background: transparent;
  font-family: 'Academy Engraved LET', sans-serif;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Pause animation on hover */
.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

/* marquee */




/* section healing together */

.section_padding {
  padding: 80px 0px;
}

.healing_section {
  background: #A0C4C6;
}

.sub_head {
  font-weight: 600;
  color: #03858C;
  font-size: 17px;
}

.title_head {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
}

.main_para {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
}

.para_white {
  color: #ffffff;
}

.custom-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 50px;
  background: #03858C;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  z-index: 10;
  transition: color 0.4s ease;
  backdrop-filter: blur(8px);
}

.custom-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #10b981;
  /* Emerald green */
  border-radius: 50px;
  z-index: -1;
  transition: all 0.6s ease;
}

.custom-button:hover::before {
  left: 0;
}

.custom-button:hover {
  color: #fff;
}

/* Font Awesome Icon */
.arrow-icon {
  width: 30px;
  height: 30px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: all 0.3s ease;
  background: transparent;
  font-size: 14px;
}

.custom-button:hover .arrow-icon {
  background: #fff;
  border: none;
  transform: rotate(90deg);
  color: #333;
}

/* section healing together */

/* accordion */

h2.section-title {
  font-weight: 700;
  color: #414141;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

p.section-description {
  color: #6b7280;
  max-width: 600px;
  font-size: 0.95rem;
}

.accordion-button {
  font-weight: 600;
  color: #000000;
  background-color: #F5F5F5;
  box-shadow: none;
  border: none;
  padding: 1.5rem 1rem;
  font-size: 1.2rem;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #F5F5F5;
  color: #03858C;
  border-bottom: 1px solid #e5e7eb;
}

.accordion-item {
  border: 1px solid #dadada;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.accordion-item:first-child {
  border-top: 1px solid #F5F5F5;
}

.accordion-body {
  background-color: #F5F5F5;
  padding: 1.5rem 1rem;
}

.accordion-button::after {
  content: "+";
  font-size: 1.5rem;
  transform: none !important;
  background-image: none !important;
  color: #333333;
}

.accordion-button:not(.collapsed)::after {
  content: "–";
  font-size: 2rem;
  color: #03858C;
  height: auto;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 1rem;
  justify-content: space-between;
}

.service-card img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  object-fit: cover;
}

.service-details h5 {
  font-weight: 600;
  color: #000000;
  margin-bottom: 1.7rem;
  font-size: 1.5rem;
}

.service-details ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-details li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #666666;
  font-size: .9rem;
  line-height: 1.5;
}

/* Common bullet style */
.service-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Odd list items – Example: blue check icon */
.service-details li:nth-child(odd)::before {
  background-image: url("../img/bullet-point-odd.svg");
}

/* Even list items – Example: purple shield icon */
.service-details li:nth-child(even)::before {
  background-image: url("../img/bullet-point-even.svg");
}

@media (max-width: 400px){
.banner_title h2,
  .banner_title h2 span {
    font-size: 38px !important;
    line-height: 42px;
  }
}


@media (max-width: 768px) {

  .header-content {
    flex-direction: column;
    gap: 1rem !important;
    align-items: start !important;
  }

  .header-section {
    display: flex;
    justify-content: space-between;
    align-items: start !important;
    margin-bottom: 50px;
    flex-direction: column;
  }

  .home_bg {
    height: 900px;
  }

  .service-card {
    flex-direction: column;
  }

  .banner_title h2,
  .banner_title h2 span {
    font-size: 46px;
  }

  .service-card {
    gap: 2rem;
  }

  .section_padding {
    padding: 40px 0;
  }
}

@media (max-width: 1199px) {

  .banner-content {
    width: 100%;
  }
}








.image-section {
  padding: 30px;
  border-radius: 0 20px 20px 0;
}

.main-title {
  color: #0d9488;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
}

.description {
  color: #14b8a6;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

.partner-btn {
  background: #0d9488;
  color: white;
  padding: 14px 35px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.partner-btn:hover {
  background: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
  color: white;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

.column img {
  margin-top: 12px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 991px) {
  .main-title {
    font-size: 2.5rem;
  }

  .content-section {
    border-radius: 20px 20px 0 0;
  }


}

@media (max-width: 768px) {
  .main-title {
    font-size: 2rem;
  }




}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.75rem;
  }

  .description {
    font-size: 0.95rem;
  }

  .partner-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}




/* cta */

.cta-section {
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.image-container {
  position: relative;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  object-fit: cover;
}

.content-container {
  padding: 60px 40px;
}

.sub-heading {
  color: #6c757d;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.main-heading {
  color: #03858C;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 60px;
}

.email-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #03858C;
  border-radius: 6px;
  font-size: 14px;
  color: #6c757d;
}

.email-input:focus {
  outline: none;
  border-color: #03858C;
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.email-input::placeholder {
  color: #03858C;
}

.signup-btn {
  padding: 12px 32px;
  background-color: #03858C;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.signup-btn:hover {
  background-color: #0e7490;
}

.icon {
  margin-right: 6px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .content-container {
    padding: 40px 20px;
  }

  .email-form {
    flex-direction: column;
  }

  .signup-btn {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1550px) {
  .nav-section {
    width: 100% !important;
  }

  .nav_logo {
    width: 90px;
  }

  .page_nav_link .nav-item .nav-link {
    padding: 10px 0;
    font-size: 14px;
  }

  .lang-switch {
    gap: 5px;
  }

  .lang-switch span {
    font-size: 13px;
  }

  .header-nav {
    gap: 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {

  .page_nav_link .nav-item .nav-link {
    padding: 10px 0;
    font-size: 12px;
  }
}


/* faq */

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  line-height: 1.3;
}

.custom-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.faq-item.active {
  border: 1px solid #03858C;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: #526182;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #0d9488;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
  color: #8F7D6A;
}

.expert-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.conect-with img {
  margin-bottom: 20px;
}

.expert-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.expert-description {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.expert-btn {
  background: linear-gradient(270deg, rgba(82, 97, 130, 1) 0%, rgba(3, 133, 140, 1) 100%);
  color: white;
  padding: 20px 40px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.expert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

@media (max-width: 991px) {

  .game-section .item-content .number {
    font-size: 24px !important;
  }

  .game-section .item-content h3 {
    margin-bottom: 20px !important;
    font-size: 24px;
    line-height: 26px;
  }

  .header-content {
    flex-direction: column;
    gap: 1rem !important;
    align-items: start !important;
  }

  .game-section .container {
    margin-right: auto !important;
  }

  .expert-box {
    position: relative;
  }

  .header-nav li {
    margin: 5px 8px !important;
  }

  .service-card {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  .need-help {
    flex-direction: column;
    width: 100%;
    gap: 1rem !important;
  }

  .faq-title {
    font-size: 1.6rem;
  }

  .expert-box {
    padding: 30px 20px;
  }
}

/* --- Footer Wrapper and Background --- */
footer {
  background-color: #e8f5f7;
  /* Light background color matching the image */
}


/* --- Top Section (Logo, Social, Navigation) --- */
.footer-header {
  padding: 30px 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-circle {
  width: 30px;
  height: 30px;
  background: #0d9488;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d9488;
}

.logo-text span {
  font-weight: 400;
  color: #6b7280;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-right: 30px;
  /* Space between social icons and nav links */
}

.social-links a {
  color: #0d9488;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #14b8a6;
}

.header-nav {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  flex-wrap: wrap;
}

.header-nav li {
  position: relative;
}

.header-nav a {
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0 8px;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #0d9488;
}

/* .header-nav li:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -8px;
  color: #d1d5db;
  font-weight: 300;
} */


/* --- Middle Section (Address & Contact) --- */
.footer-content {
  padding: 30px 0;
  border-top: 1px solid #d1d5db;
}

.footer-address-area {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-address {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-box {
  padding: 12px 0px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.need-help {
  padding: 6px 20px;
  background: #fff;
  border-radius: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.9rem;
}

.contact-label {
  color: #6b7280;
  font-weight: 500;
}

.contact-phone-value {
  color: #0d9488;
  font-weight: 700;
  text-decoration: none;
  padding: 2px 5px;
  border-radius: 2px;
  transition: background-color 0.3s;
}

.contact-email-value {
  color: #6b7280;
  font-weight: 600;
  text-decoration: none;
  transition: text-decoration 0.3s;
}

.contact-phone-value:hover,
.contact-email-value:hover {
  text-decoration: underline;
}

/* --- Bottom Section (Copyright) --- */
.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid #d1d5db;
}

.footer-copyright {
  text-align: center;
  color: #9ca3af;
  font-size: 0.8rem;
  margin: 0;
}



/* Smooth fade effect when active item changes */
/* .item.fade-in {
  animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* Optional: active item highlight */
/* .item.active {
  transform: scale(1);
  transition: transform 2s ease;
} */





/* --- Responsive Design --- */
@media (max-width: 991px) {
  .footer-header .row>div {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }

  .social-links {
    justify-content: center;
    margin: 15px 0;
  }

  .header-nav {
    justify-content: center;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #d1d5db;
  }

  .header-nav li:not(:last-child)::after {
    display: none;
  }

  .footer-content {
    border-top: none;
    padding: 30px 0 20px;
  }

  .footer-contact-box {
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-contact-box {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-address {
    text-align: center;
  }
}




.header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.main-heading {
  font-size: 52px;
  line-height: 56px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.header-content {
  max-width: 90%;
  gap: 10rem;
  align-items: center;
}

.header-content p {
  font-size: 15px;
  line-height: 24px;
  color: #6a6a6a;
}

.custom-carousel-nav button {
  color: #fff;
  width: 45px;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  margin-left: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-size: 18px;
}

.custom-next-btn {
  background-color: #03858C;
}

.custom-prev-btn {
  background-color: #4D6184;
}

.game-section .owl-theme.custom-carousel .owl-dots {
  display: none;
}

.owl-theme .owl-nav {
  display: none;
}


.game-section .owl-stage {
  margin: 15px 0;
  display: flex;
}

.game-section .container {
  width: 100% !important;
  margin-right: 0;
}

.game-section .item {
  margin: 0 15px 60px;
  width: 320px;
  background: #D9D9D9;
  color: var(--color-text-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
  align-items: stretch;
  /* transition: width 0.5s ease-in-out, background 0.5s ease-in-out, box-shadow 0.5s ease-in-out; */
  cursor: pointer;
  height: 100%;
}

.game-section .item-content {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.game-section .item-content .number {
  font-size: 60px;
  font-weight: 700;
  color: #03858C;
  line-height: 1;
  margin-bottom: 20px;
}

.game-section .item-content h3 {
  font-size: 24px;
  line-height: 32px;
  margin: 0;
  height: 120px;
}

.game-section .item-content .details,
.game-section .item-content .image-placeholder {
  display: none;
}

.game-section .item.active {
  width: 750px;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  flex-direction: row;
  padding: 0;
}

.game-section .item.active .item-content {
  padding: 20px;
  width: 60%;
  background-color: #526182;
}

.game-section .item.active .image-placeholder {
  display: block;
  width: 40%;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.game-section .item.active .item-content .number {
  font-size: 24px;
  color: #ffffff;
}

.game-section .item.active .item-content h3 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 20px;
  height: auto;
}

.game-section .item.active .item-content .details {
  display: block;
}

.details ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.details ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 22px;
}

.details ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: #3E838B;
  font-size: 20px;
  line-height: 1;
}

.game-section .item:after,
.game-section .item-desc,
.game-section .item.active .item-desc,
.game-section .item-desc p,
.game-section .item.active .item-desc p {
  display: none !important;
}

@media (max-width: 991px) {
  .main-heading {
    font-size: 40px;
    line-height: 44px;
  }

  .header-content p {
    max-width: 100%;
  }

  .game-section .item {
    width: 100% !important;
    height: auto;
    min-height: 450px;
  }

  .game-section .item.active {
    width: 100% !important;
    flex-direction: column;
  }

  .game-section .item.active .item-content,
  .game-section .item.active .image-placeholder {
    width: 100%;
  }

  .game-section .item.active .image-placeholder {
    min-height: 250px;
  }

  .game-section .item {
    width: 100% !important;
    height: auto;
    min-height: 450px;
  }

  .game-section .item.active {
    width: 100% !important;
    flex-direction: column;
  }

  .game-section .item {
    width: 100% !important;
    height: auto;
    min-height: 450px;

    background: var(--color-primary);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .game-section .item-content {
    width: 100%;
    padding: 20px;
    background-color: #526182;
  }

  .game-section .item .image-placeholder {
    display: block;
    width: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 0;
  }

  .game-section .item .item-content .number,
  .game-section .item .item-content h3,
  .game-section .item .item-content .details {
    display: block !important;
    color: #ffffff;
  }


}

@media (max-width: 767px) {
  .game-section .item {
    margin: 0 10px 40px;
  }

  .main-heading {
    font-size: 32px;
    line-height: 38px;
  }

  .game-section .item-content {
    padding: 30px;
  }

  .game-section .item.active .item-content {
    padding: 10px;
  }
}






/* 🛑 ----------- index ------------ 🛑 */
.banner_slider .carousel-outr{
	max-height: 100vh;
	overflow: hidden;
}
.banner_slider .carousel-outr img{
	width: 100%;
	height: 100%;
	border-radius: 30px;
}
.banner_slider .carousel-outr .carousel-inner{
	height: 100%;
}
.banner_slider .carousel-outr .carousel-inner{
	height: 100%;
}
.banner_slider .carousel-outr .carousel-item{
	height: 100%;
}

.banner_slider .carousel-caption {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translate(-0%, -50%) !important;
  width: 55%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner_slider .carousel-caption h5 {
  font-size: 60px;
  font-weight: 300;
  line-height: 70px;
  color: var(--white-color);
  margin-bottom: 20px;
}
.banner_slider .carousel-caption h5 .heading-2{
	font-weight: 800;
}
.banner_slider .carousel-caption h5 .heading-3{
	color: var(--main-color);
}
.banner_slider .carousel-caption p {
  font-size: 17px;
  font-weight: 300;
  line-height: 30px;
  color: #d8d8d8;
  margin-bottom: 30px;
}
.banner_slider .carousel-caption .main-btn{
	padding: 14px 30px;
}
.banner_slider .carousel-caption .main-btn:hover{
	color: var(--black-color);
	background-color: var(--secondary-color);
}

.banner_slider .carousel-indicators {
  justify-content: initial;
  margin-right: 6%;
  margin-left: 11%;
}

.carousel-video::after {
	background: rgba(0, 0, 0, 0.54);
	top: 0px;
	left: 0px;
	position: absolute;
	content: "";
	height: 100%;
	width: 100%;
}
.carousel-video video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media (max-width: 1500px) {
  .banner_slider .carousel-caption{
    width: 80%;
  }
  .banner_slider .carousel-caption h5{
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 992px) {
	#slide-icon a span {
		width: 15px;
		height: 15px;
	}
	.banner_slider .carousel-indicators{
		display: none;
	}
  .banner_slider .carousel-caption h5{
    font-size: 35px;
    line-height: 45px;
  }
}

@media (max-width: 992px) {
  .banner_slider .carousel-caption h5{
    font-size: 25px;
    line-height: 30px;
  }
}

/* about */
.about{
  width: 100%;
  overflow: hidden;
  position: relative;
}
.about-content .title {
  position: relative;
  color: var(--main-color);
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.about-content .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 12px;
  width: 40px;
  height: 1px;
  background-color: #03858c;
}
.about-content h2 {
    font-size: 50px;
    font-weight: 700;
    /* color: var(--color-text-dark); */
    margin-bottom: 20px;
}
.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 25px;
    margin-bottom: 30px;
}

@media (max-width: 992px) {
  .about-content h2 {
    font-size: 35px;
  }
}
/* END about */


/* products */
.b-features-iner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  padding: 40px 60px;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin: 60px auto;
  flex-wrap: wrap;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.b-features-iner .feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 22%;
  min-width: 250px;
}
.b-features-iner .icon-circle {
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #eef1f5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-features-iner .icon-circle.light-green { background: #e6f1eb; }
.b-features-iner .icon-circle.light-pink { background: #f3eaea; }
.b-features-iner .icon-circle.light-yellow { background: #f9f7e6; }
.b-features-iner .icon-circle i {
  font-size: 22px;
  color: #4e6285;
}
.b-features-iner .feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
}
.b-features-iner .feature-text p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .b-features-iner {
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .b-features-iner .b-features {
    flex-wrap: wrap;
    justify-content: center;
  }
  .b-features-iner .feature {
    flex: 1 1 45%;
  }
}

@media (max-width: 600px) {
  .feature {
    flex: 1 1 100%;
  }
}
/* END products */

/* products and services */
.pfolio {
  position: relative;
  padding: 70px 0;
}

.pfolio .case-label{
  justify-content: center;
  margin-bottom: 8px;
}

.pfolio h2 {
  font-size: 50px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 35px;
  text-align: center;
}

.pfolio .carousel-wrap {
  position: relative;
}

.pfolio .carousel-wrap .item-content2 h4 {
  font-size: 18px;
  line-height: 25px;
  font-weight: bold;
  color: var(--black-color);
  text-transform: uppercase;
  margin-top: 15px;
}

.pfolio .owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
}

.pfolio .owl-nav>div {
  margin-top: -26px;
  position: absolute;
  top: 43%;
  color: #cdcbcd;
}

.pfolio .owl-nav i {
  font-size: 22px;
}

.pfolio .owl-nav .owl-prev {
  left: -30px;
}

.pfolio .owl-nav .owl-next {
  right: -30px;
}

.pfolio .item-content {
  position: relative;
  bottom: 0;
  left: 0;
  padding: 10px;
  color: #fff;
  width: 100%;
  background: #00000091;
  text-align: center;
  opacity: 0;
  transition: 1s all;
  bottom: 44px;
  border-radius: 0 0 22px 22px;
}

.pfolio .item-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.pfolio .item-subheading {
  font-size: 12px;
  font-weight: 200;
  color: white;
  margin-bottom: 0;
}

.pfolio .owl-carousel .item:hover .item-content {
  opacity: 1;
  transition: 1s all;
}

.pfolio .item-content2 {
  position: relative;
  text-align: center;
}
/* END products and services */

/* research section */
.research-section {
  padding: 120px 0;
  background-image: url(../img/research.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 60vh;
}
.research-content {
  max-width: 50%;
}
.research-content h2{
  color: #0d9488;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.research-content ul {
  list-style: none;
}
.research-content ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #666666;
  font-size: 1.2rem;
  line-height: 1.5;
}
.research-content ul li:nth-child(2n+1)::before {
  background-image: url("../img/bullet-point-odd.svg");
}
.research-content ul li:nth-child(2n)::before {
  background-image: url("../img/bullet-point-even.svg");
}
.research-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 992px) {
  .research-content {
    max-width: 80%;
  }
  .research-content h2 {
    font-size: 2.5rem;
  }
  .pfolio h2 {
    font-size: 35px;
  }
}
/* END research section */

/* services section */
.service-head{
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  height: 100%;
  text-align: left;
}
.bg-gray {
  background-color: #f9f9f9;
}
.site-heading {
  margin-bottom: 40px;
  overflow: hidden;
}
.carousel-shadow .owl-stage-outer {
  margin: -15px -15px 0;
  padding: 15px;
}
.we-offer-area .our-offer-carousel .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 2px solid;
  height: 15px;
  margin: 0 5px;
  width: 15px;
}
.we-offer-area .our-offer-carousel .owl-dots .owl-dot.active span {
  background: var(--main-color) none repeat scroll 0 0;
  border-color: var(--main-color);
}
.we-offer-area .item {
  background: #ffffff none repeat scroll 0 0;
  border-left: 2px solid var(--main-color);
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  overflow: hidden;
  padding: 30px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.we-offer-area.text-center .item {
  background: #ffffff none repeat scroll 0 0;
  border: medium none;
  padding: 67px 40px 64px;
}

.we-offer-area.text-center .item i {
  background: var(--main-color) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 40px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
  z-index: 1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
}

.we-offer-area.text-center .item i::after {
  border: 2px solid var(--main-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 90px;
  left: -5px;
  position: absolute;
  top: -5px;
  width: 90px;
  z-index: -1;
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.item-border-less .item {
  border: medium none;
}

.we-offer-area .our-offer-items.less-carousel .equal-height {
  margin-bottom: 30px;
}

.we-offer-area.item-border-less .item .number {
  font-family: "Poppins",sans-serif;
  font-size: 50px;
  font-weight: 900;
  opacity: 0.1;
  position: absolute;
  right: 30px;
  top: 30px;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item,
.we-offer-area.center-active .single-item:nth-child(2n) .item {
  background: var(--main-color) none repeat scroll 0 0;
}

.our-offer-carousel.center-active .owl-item:nth-child(2n) .item i,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item h4,
.our-offer-carousel.center-active .owl-item:nth-child(2n) .item p,
.we-offer-area.center-active .single-item:nth-child(2n) .item i,
.we-offer-area.center-active .single-item:nth-child(2n) .item h4,
.we-offer-area.center-active .single-item:nth-child(2n) .item p {
  color: #ffffff;
}

.we-offer-area .item i {
  color: var(--main-color);
  display: inline-block;
  font-size: 60px;
  margin-bottom: 20px;
}

.we-offer-area .item h4 {
  font-weight: 700;
  text-transform: capitalize;
}

.we-offer-area .item p {
  font-size: 15px;
  color: #555;
  line-height: 25px;
  margin-bottom: 30px;
}

.we-offer-area .item p {
  margin: 0;
}

.we-offer-area .item i,
.we-offer-area .item h4,
.we-offer-area .item p {
  transition: all 0.35s ease-in-out;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
}

.we-offer-area.text-left .item i {
  background: var(--main-color) none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 60px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  position: relative;
  width: 100px;
  z-index: 1;
  text-align: center;
}

.we-offer-area.text-left .item i::after {
  border: 2px solid var(--main-color);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  content: "";
  height: 120px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 120px;
}
/* END services section */





/* small banner */
.project-order-banner {
  padding: 30px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  overflow: hidden;
  position: relative;
  color: #fff;
  border-radius: 20px;
  background-color: var(--main-color);
  background-blend-mode: overlay;
  min-height: 200px;
}
.project-order-banner::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 174, 0, 0.3);
  border-radius: 50%;
  z-index: 0;
}
.project-order-banner .banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.project-order-banner .banner-text h2 {
  font-size: 30px;
  margin-bottom: 0px;
}
.project-order-banner .banner-text p{
  font-size: 15px;
  font-weight: 300;
  color: #dfdfdf;
  margin-bottom: 0px;
}
.project-order-banner .custom-button {
  background: #FFF;
  color: #000;
}

@media (max-width: 768px) {
  .project-order-banner .banner-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
/* END small banner */

/* last video section */
.case-study-section {
  min-height: 100vh;
  position: relative;
  background: #f5f5f5;
  display: flex;
  align-items: center;
}

.case-study-section .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.case-study-section .video-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}

.case-study-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 2;
}

.case-study-section .play-button {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 3;
  box-shadow: 0 0 0 0 rgba(60, 60, 142, 0.4);
  animation: pulse 2s infinite;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(60, 60, 142, 0.7);
  }

  70% {
    box-shadow: 0 0 0 30px rgba(60, 60, 142, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(60, 60, 142, 0);
  }
}

.case-study-section .play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-purple);
}

.case-study-section .play-button i {
  color: white;
  font-size: 40px;
  margin-left: 5px;
}

.case-study-section .content-wrapper {
  position: relative;
  z-index: 4;
  width: 100%;
}

.case-study-section .content-card {
  background: white;
  padding: 80px 60px;
  margin-left: auto;
  max-width: 650px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.case-label::before {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--main-color);
  margin-right: 15px;
}

.case-study-section .case-title {
  font-size: 35px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 35px;
  line-height: 1.1;
}

.case-study-section .case-description {
  font-size: 17px;
  line-height: 1.9;
  color: #999;
  margin-bottom: 50px;
  max-width: 500px;
}

.case-study-section .next-button {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 18px 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  align-self: flex-start;
}

.case-study-section .next-button:hover {
  background: var(--accent-purple);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(60, 60, 142, 0.4);
}

.case-study-section .next-button i {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.case-study-section .next-button:hover i {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .case-study-section .video-background {
    width: 100%;
    height: 50vh;
  }

  .case-study-section .video-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 1) 100%);
  }

  .case-study-section .play-button {
    left: 50%;
    top: 25vh;
    width: 80px;
    height: 80px;
  }

  .case-study-section .play-button i {
    font-size: 32px;
  }

  .case-study-section .content-card {
    padding: 50px 30px;
    max-width: 100%;
    min-height: auto;
    margin-top: 50vh;
  }

  .case-study-section .case-title {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .case-study-section .case-title {
    font-size: 32px;
  }

  .case-study-section .case-description {
    font-size: 15px;
  }

  .case-study-section .next-button {
    padding: 15px 35px;
    font-size: 12px;
  }
}
/* last video section */

/* 🛑 ------------ END index ------------ 🛑 */



/* contact page */
.contact-section {
  margin: 0 auto;
  background: #e8f5f7;
  border-radius: 30px;
  padding: 20px;
}

.contact-section .contact-card {
  background: white;
  border-radius: 24px;
  padding: 50px 45px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-section .contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: #F0F0F0;
  border-radius: 50px;
  font-size: 15px;
  color: #333;
  margin-bottom: 25px;
}

.contact-section .contact-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #B8E6DD;
  border-radius: 50%;
}

.contact-section .contact-title {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-section .contact-subtitle {
  font-size: 52px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 30px;
}

.contact-section .contact-description {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 520px;
}

.contact-section .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-section .contact-icon {
  width: 60px;
  height: 60px;
  background: #B8E6DD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-section .contact-icon i {
  font-size: 24px;
  color: #2d2d2d;
}

.contact-section .contact-info {
  flex: 1;
}

.contact-section .contact-label {
  font-size: 14px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 500;
}

.contact-section .contact-value {
  font-size: 22px;
  color: #1a1a1a;
  font-weight: 600;
}

.contact-section .image-card {
  background: linear-gradient(135deg, #1a4d5c 0%, #0a2432 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.contact-section .scientist-image-tag {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.contact-section .working-hours {
  padding: 25px;
  color: white;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.contact-section .working-hours-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #e0f2f7;
}

.contact-section .hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-section .hours-day {
  font-weight: 400;
  color: #c7e1e1;
}

.contact-section .hours-time {
  font-weight: 500;
  color: white;
}

.contact-section .working-hours {
  background-color: #FFFFFF1A;
  border: 1px solid #FFFFFF1A;
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(7px);
  color: white;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50%;

}

.contact-section .working-hours-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-section .hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-section .hours-day {
  color: #e0e0e0;
}

.contact-section .hours-time {
  color: #ffffff;
  font-weight: 500;
}

@media (max-width: 991px) {

  .contact-section .contact-title,
  .contact-section .contact-subtitle {
    font-size: 38px;
  }

  .contact-section .image-card {
    min-height: 400px;
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .contact-section .contact-card {
    padding: 35px 25px;
  }

  .contact-section .contact-title,
  .contact-section .contact-subtitle {
    font-size: 24px;
  }

  .contact-section .contact-value {
    font-size: 16px;
  }

  .contact-section .contact-icon {
    width: 40px;
    height: 40px;
  }

  .contact-section .contact-icon i {
    font-size: 18px;
  }

  .contact-section .working-hours {
    width: auto;
    padding: 20px;
  }

  .contact-section .hours-row {
    margin-bottom: 5px;
  }

  .contact-section .working-hours-title {
    margin-bottom: 10px;
  }
}

/* breadcrumb */

/* .breadcrumb-hero {
            background-image: url("/assets/img/breadcrumb.webp");
            background-size: cover;
            background-position: center;
            min-height: 450px;
            display: flex;
            align-items: end;
            justify-content: center;
            position: relative;
            padding: 80px 20px;
        } */
.breadcrumb-hero {
  position: relative;

  min-height: 450px;
  padding: 80px 20px;

  display: flex;
  align-items: end;
  justify-content: center;

  z-index: 1;
}

.hero-background-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 0;
}


.breadcrumb-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(20, 40, 60, 0.65), rgba(20, 40, 60, 0.65));

}

.breadcrumb-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
}

.breadcrumb-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #B8E6DD;
}

.breadcrumb-separator {
  color: #ffffff;
  font-size: 14px;
}

.breadcrumb-current {
  color: #B8E6DD;
}

@media (max-width: 768px) {
  .breadcrumb-hero {
    min-height: 300px;
    padding: 60px 20px;
  }

  .breadcrumb-title {
    font-size: 42px;
  }

  .breadcrumb-nav {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .breadcrumb-title {
    font-size: 36px;
  }
}


.contact-wrapper .form-section {
  background: #4d6184;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-wrapper {
  border-radius: 20px;
  overflow: hidden;
}



.contact-wrapper .form-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-wrapper .form-description {
  font-size: 16px;
  color: #b8c5d0;
  margin-bottom: 25 px;
  line-height: 1.6;
}

.contact-wrapper .form-control,
.form-control-custom {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 12px;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-wrapper .form-control:focus,
.form-control-custom:focus {
  outline: none;
  /* box-shadow: 0 0 0 3px rgba(184, 230, 221, 0.3); */
  background-color: #1e3a4c;
  color: #ffffff;
}

.contact-wrapper .form-control::placeholder,
.form-control-custom::placeholder {
  color: #ffffff;
}

.contact-wrapper textarea.form-control {
  min-height: 180px;
  resize: vertical;
}

.contact-wrapper .submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: #B8E6DD;
  color: #1e3a4c;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-wrapper .submit-btn:hover {
  background: #a0d9cc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 230, 221, 0.4);
}

.contact-wrapper .map-section {
  position: relative;
  background: #e5e5e5;
  height: 100%;
}

.contact-wrapper .map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.contact-wrapper .map-placeholder {
  width: 100%;
  height: 100%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}

.contact-wrapper .map-info-card {
  position: absolute;
  top: 30px;
  left: 30px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.contact-wrapper .map-location-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-wrapper .map-location-address {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.contact-wrapper .map-link {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.contact-wrapper .map-link:hover {
  text-decoration: underline;
}

.contact-wrapper .map-directions {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
}

.contact-wrapper .map-directions:hover {
  text-decoration: underline;
}

.contact-wrapper .map-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 991px) {
  .contact-wrapper .form-section {
    padding: 60px 40px;
    min-height: auto;
  }

  .contact-wrapper .map-section {
    min-height: 500px;
  }

  .contact-wrapper .form-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .contact-wrapper .form-section {
    padding: 50px 30px;
  }

  .contact-wrapper .form-title {
    font-size: 32px;
  }

  .contact-wrapper .map-info-card {
    left: 15px;
    right: 15px;
    top: 15px;
  }
}

@media (max-width: 576px) {
  .contact-wrapper .form-section {
    padding: 40px 20px;
  }
}

/* pharmacovigilance */

.faq-section2 {
  padding: 80px 20px 40px 20px;
  background-image: url("/assets/img/b-logo.png");
  background-repeat: no-repeat;
  background-position: top right;
}

.faq-badge {
  display: inline-block;
  padding: 10px 24px;
  background: #E8F5F3;
  color: #2D9B87;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
}

.faq-title2 {
  font-size: 48px;
  font-weight: 700;
  color: #02868b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-description {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 24px;
  max-width: 800px;
  margin: 0 auto 60px;
}

.faq-container {
  margin: 0 auto;
}

.faq-item2 {
  margin-bottom: 40px;
}

.faq-question2 {
  font-size: 24px;
  font-weight: 700;
  color: #02868b;
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-answer2 {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 24px;
}

@media (max-width: 991px) {
  .faq-section2 {
    padding: 60px 20px;
  }

  .faq-title2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .faq-title2 {
    font-size: 32px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-item2 {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .faq-section2 {
    padding: 50px 15px;
  }

  .faq-title2 {
    font-size: 28px;
  }
}


.adr-alert {
  /* Simulating the border/indicator next to the text */
  border-left: 5px solid #dc3545;
  /* Red border */
  padding: 15px;
  margin-bottom: 25px;
  background-color: #fff;
}

.section-header {
  background-color: #e6f2f2;
  /* Light green background for section titles */
  padding: 10px 15px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #02868b;
  /* Darker green text */
  font-weight: bold;
}

.download-button,
.submit-button {
  background-color: #02868b;
  /* Green color */
  border-color: #02868b;
  padding: 10px 20px;
  font-weight: bold;
  color: white;
  /* Ensure text is white */
}

.submit-button {
  width: 150px;
  /* Adjust width as needed */
}

/* Adjusting form-label style for better alignment with the image */
.form-label-star::after {
  content: " *";
  color: red;
}

.pharmacovigilance-page {
  background-color: #ffffff;
}

.card2 {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 20px;
  margin-bottom: 100px;
}

/* contact2 */

/* Header Styling */
.contact-2 .contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-2 .contact-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #02868b;
  /* Teal text */
  border: 1px solid #c7e1e1;
  /* Light teal border */
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
  background-color: #eaf3f3;
  /* Very light teal background */
}

.contact-2 .contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  /* Dark gray for "Out to Us" */
}

.contact-2 .contact-title span {
  color: #02868b;
  /* Teal color for "Reach" */
}

/* Card Styling */
.contact-2 .info-card {
  background-color: white;
  border: 1px solid #e1e7e9;
  /* Very light border */
  border-radius: 15px;
  /* Highly rounded corners */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Subtle shadow */
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  /* Ensure all cards are the same height */
  transition: transform 0.3s;
}

.contact-2 .info-card:hover {
  transform: translateY(-5px);
  /* Lift effect on hover */
}

/* Icon Styling */
.contact-2 .icon-circle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  background-color: #e1eded;
  /* Light teal/gray background */
  color: #02868b;
  /* Teal icon color */
  font-size: 1.5rem;
}

/* Content Text Styling */
.contact-2 .card-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 10px;
}

.contact-2 .card-text {
  font-size: 15px;
  line-height: 24px;
  color: #6a6a6a;
}

.contact-2 .card-text a {
  display: block;
  color: #6c757d;
  /* Default text color for emails/phones */
  text-decoration: none;
  transition: color 0.3s;
}

.contact-2 .card-text a:hover {
  color: #02868b;
}

/* Live Chat Link */
.contact-2 .live-chat-link {
  color: #02868b !important;
  /* Teal color for 'Need help?' */
  font-weight: 600;
  margin-top: 5px;
}

.contact-2 .live-chat-link:hover {
  text-decoration: underline;
}

/* about */

.about-section {
  /* padding: 60px 20px; */
  /* max-width: 1400px; */
  margin: 0 auto;
}

.about-section .section-tag {
  display: inline-block;
  color: #475569;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
}

.about-section h2 {
  font-size: 55px;
  font-weight: 700;
  /* color: #1e293b; */
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-section .description-text {
  font-size: 15px;
  color: #6a6a6a;
  line-height: 25px;
  margin-bottom: 25px;
}

.about-section .lab-image-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 550px;
}

.about-section .lab-image-card .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .about-section .overlay-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 20px 28px;
  border-radius: 16px;
  display: block;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-section .avatar-group {
  display: flex;
  align-items: center;
}

.about-section .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -12px;
  object-fit: cover;
}

.about-section .avatar:first-child {
  margin-left: 0;
} */

.about-section .add-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #a7f3d0;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #065f46;
  margin-left: -12px;
  cursor: pointer;
  transition: background 0.3s;
}

.about-section .add-button:hover {
  background: #6ee7b7;
}

.about-section .badge-text {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
  padding-left: 10px;
}

.about-section .feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.about-section .feature-icon {
  width: 60px;
  height: 60px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-section .feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: #065f46;
}

.about-section .feature-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.about-section .feature-content p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.about-section .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #a7f3d0;
  color: #065f46;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.about-section .contact-btn:hover {
  background: #6ee7b7;
  color: #065f46;
  transform: translateY(-2px);
}

.about-section .contact-btn svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 991px) {
  .about-section .main-heading {
    font-size: 38px;
  }

  .about-section .lab-image-card {
    min-height: 400px;
    margin-bottom: 30px;
  }

  .about-section .overlay-badge {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 576px) {
  .about-section .main-heading {
    font-size: 32px;
  }

  .about-section .overlay-badge {
    padding: 15px 20px;
  }

  .about-section .avatar {
    width: 36px;
    height: 36px;
  }

  .about-section .add-button {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .about-section .badge-text {
    font-size: 14px;
  }
}


/* approach section */
.approach {
  background-color: #4d6184;
  padding: 50px;
  border-radius: 20px;
}

.approach .section-label {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.approach .section-label::before {
  content: "•";
  margin-right: 10px;
}

.approach .main-heading {
  color: #ffffff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 50px;
}

.approach .content-box {
  color: #ffffff;
}

.approach .section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.approach .section-description {
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  opacity: 0.95;
}

.approach .image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.approach .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 350px;
}

.approach .vision-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.approach .vision-list li {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.approach .vision-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.approach .mission-section {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .approach .main-heading {
    font-size: 36px;
  }

  .approach .section-title {
    font-size: 28px;
  }

  .approach .section-description {
    font-size: 16px;
  }

  .approach {
    padding: 20px 10px;
  }
}


/* about client section */
.team {
    padding: 20px;
    /* margin-bottom: 30px; */
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    height: 100%;
}
.team .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 15px;
}
.team .team-img img {
    width: 100%;
    height: auto;
}
.team .team-content {
    text-align: center;
}
.team .team-content h2 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.team .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    color: #797979;
}


/* --- mission Styling --- */
.feature-card {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-icon {
  margin-bottom: 20px;
  font-size: 3rem;
  display: flex;
  justify-content: center;
}

.icon-money-bag {
  display: flex;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid #03868b;
  background-color: transparent;
  position: relative;
  justify-content: center;
  align-items: center;
}

.icon-money-bag2 {
  border: 2px solid #4e6384;

}


.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.card-text {
  color: #111111;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.card-link {
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-bottom: 2px solid #333;
  padding-bottom: 2px;
  transition: border-color 0.3s;
  font-size: 1rem;
}

.card-link:hover {
  color: #555;
  border-bottom-color: #555;
}

/* Arrow icon next to text */
.card-link i {
  font-size: 0.9rem;
  margin-left: 5px;
}
        
.feature-card::after {
  content: '';
  background-image: url("/assets/img/b-logo.png");
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

/* ceo message */
.testimonial-card {
  background-color: white;
  border-radius: 15px;
  padding: 40px;
  width: 100%;

}

.quote-block {
  background-color: #4d6184;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 300px;
}

.quote-block2 {
  background-color: #02868b;

}

.person-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.quote-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.ceo-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
}

.ceo-title {
  font-size: 0.9rem;
  opacity: 0.8;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.quote-block::before {
  content: '*';
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 100px;
  left: 20px;
  line-height: 0;
  transform: rotate(-10deg);
}

.quote-block2::before {
  right: 20px;
  left: unset;
}

.quote-block::after {
  content: '"';
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 10px;
  right: 50px;
  line-height: 1;
  transform: rotate(30deg);
}

.quote-block2::after {
  left: 50px;
  transform: rotate(-30deg);

  right: unset;

}

.ceo-message {
  padding: 25px;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 10px;
  }

  .ceo-message {
    padding: 15px;
  }

}


/* career */

.career .job-card-wrapper {
  position: relative;
  height: 100%;
}

.career .job-card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  position: relative;
}

.career .job-card-image-wrapper {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.career .job-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career .job-card-content {
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.career .part-time-badge {
  color: #03858c;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.career .job-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.career .job-description {
  font-size: 15px;
  color: #5a5a5a;
  line-height: 1.7;
  margin-bottom: 20px;
  padding: 0 10px;
}

.career .custom-button {
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}



.career .application-form {
  background: #4d6184;
  border-radius: 30px;
  padding: 60px 55px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  height: 100%;
  min-height: 500px;
}

.career .form-label-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
  opacity: 0.95;
}

.career .form-heading {
  font-size: 45px;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.career .form-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.92;
}

/* .form-control-custom {
            background: #ffffff;
            border: none;
            border-radius: 50px;
            padding: 16px 28px;
            font-size: 14px;
            color: #333;
            height: 56px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

         .form-control-custom::placeholder {
            color: #aaa;
            font-weight: 400;
        }

         .form-control-custom:focus {
            outline: none;
            box-shadow: 0 5px 18px rgba(0, 0, 0, 0.12);
            background: #ffffff;
        } */

.career .submit-btn {
  background: #3d74bf;
  color: #ffffff;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.25);
  height: 56px;
  text-transform: capitalize;
}

.career .submit-btn:hover {
  background: #2d64af;
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.35);
}

@media (max-width: 991px) {
  .career .job-card {
    margin-bottom: 30px;
    min-height: auto;
  }

  .career .application-form {
    padding: 45px 40px;
    min-height: auto;
  }

  .career .form-heading {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .career .form-heading {
    font-size: 30px;
  }

  .career .job-title {
    font-size: 24px;
  }

  .career .application-form {
    padding: 35px 25px;
  }

  .career .job-card-content {
    padding: 40px 25px 35px;
  }
}

/* benefit */

.benefit .section-label {
  color: #03858c;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 18px;
}

.benefit .section-heading {
  color: #000000;
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.benefit .section-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto 60px;
}

.benefit .benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefit .benefit-icon {
  width: 80px;
  height: 80px;
  background: #03858c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.benefit .benefit-card:hover .benefit-icon {
  background: #03858c;
  transform: scale(1.1);
}

.benefit .benefit-icon i {
  font-size: 32px;
  color: #ffffff;
}

.benefit .benefit-title {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.benefit .benefit-text {
  color: #777;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit .section-heading {
    font-size: 32px;
  }

  .benefit .section-description {
    font-size: 15px;
  }


  .benefit .benefit-card {
    padding: 40px 30px;
  }
}

/* news */
.news {
  background-color: #e6f2f2;
}

.news .news-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  height: 100%;
}

.news .news-card a {
  text-decoration: none;
}

.news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news .news-card-inner {
  /* display: flex;
            flex-direction: row; */
  height: 100%;
}

/* .news .news-card-image-wrapper {
            width: 180px;
            flex-shrink: 0;
        } */

.news .news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
}

.news .news-card-content {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news .news-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.news .news-card-description {
  font-size: 14px;
  color: #111111;
  line-height: 1.5;
  margin-bottom: 12px;
  flex: 1;
}

.news .news-card-footer {
  display: flex;
  align-items: center;
}

.news .news-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #888;
}

.news .clock-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 991px) {
  .news .news-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .news .news-card-image-wrapper {
    width: 100px;
  }

  .news .news-card-title {
    font-size: 14px;
  }

  .news .news-card-description {
    font-size: 12px;
  }

  .news .news-card-content {
    padding: 14px 16px;
  }
}


/* gallery */

.gallery-item {
  padding: 10px;
  cursor: pointer;
}

.img-gal {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.img-gal:hover {
  transform: scale(1.02);
}

/* Modal Image Styling */
.modal-content {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-img {
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
}

.modal-footer {
  justify-content: center;
  border: none;
}

.modal-btn {
  border: none;
  background-color: #02868b;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-btn:hover {
  background-color: #02868b;
}

.btn-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background-color: white;
  border-radius: 50%;
  padding: 10px;
}



/* --------- news details page ------------*/
.blog-header h2 {
  font-size: 3em;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.blog-intro {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}

.featured-image {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-info h4 {
  font-size: 1em;
  color: #2c3e50;
  margin-bottom: 3px;
}

.author-info p {
  font-size: 0.9em;
  color: #888;
}

.article-content h2 {
  font-size: 1.8em;
  color: #2c3e50;
  margin: 35px 0 20px;
}

.article-content p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
}

.article-content ol {
  margin-left: 25px;
  margin-bottom: 30px;
}

.article-content li {
  margin-bottom: 25px;
  font-size: 1.05em;
  color: #555;
  line-height: 1.8;
  list-style: none;
}

.article-content li strong {
  color: #2c3e50;
  font-size: 1.15em;
  display: block;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .blog-header h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 600px) {
  .blog-header h2 {
    font-size: 1.5em;
  }
  .article-content h2 {
    font-size: 20px;
  }
}

/* --------- news details page ------------*/

