@font-face {
  font-family: "avenir-lt-std-35-light";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-35-light.otf);
}

@font-face {
  font-family: "avenir-lt-std-45-book-oblique";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-45-book-oblique.otf);
}

@font-face {
  font-family: "avenir-lt-std-45-book";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-45-book.otf);
}

@font-face {
  font-family: "avenir-lt-std-55-oblique";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-55-oblique.otf);
}

@font-face {
  font-family: "avenir-lt-std-55-roman";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-55-roman.otf);
}

@font-face {
  font-family: "avenir-lt-std-65-medium-oblique";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-65-medium-oblique.otf);
}

@font-face {
  font-family: "avenir-lt-std-65-medium";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-65-medium.otf);
}

@font-face {
  font-family: "avenir-lt-std-85-heavy-oblique";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-85-heavy-oblique.otf);
}

@font-face {
  font-family: "avenir-lt-std-85-heavy";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-85-heavy.otf);
}

@font-face {
  font-family: "avenir-lt-std-95-black-oblique";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-95-black-oblique.otf);
}

@font-face {
  font-family: "avenir-lt-std-95-black";
  src: url(../fonts/avenir-lt-std/avenir-lt-std-95-black.otf);
}

.my-bround-35{
    border-radius: 35px;
}
/* Font Classes */
.fc-avenir-lt-std-65-medium {
  font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
}

.avenir-lt-std-85-heavy {
  font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif !important;
}

.avenir-lt-std-85-light {
    font-family: "avenir-lt-std-35-light", "Poppins", sans-serif; !important;
}

/* Animations */

.slide-right {
  -webkit-animation: slide-right 3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    infinite both;
  animation: slide-right 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@-webkit-keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slide-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

:root {
  --primary-color: #26a9e1;
  --secondary-color: #4f4f4f;
  --dark-color: #000;
  --bluish-dark-color: #333b4a;
  --light-color: #fff;
  --bg-color: #f5f5f5;
}

body {
  font-family: "avenir-lt-std-35-light", "Poppins", sans-serif;
  overflow-x: hidden;
  font-size: 14px;
  /*color: var(--secondary-color);*/
  color: black;
}

.bg-color {
  --bs-bg-opacity: 1;
  background-color: var(--bg-color) !important;
}

.bg-primary-color {
    --bs-bg-opacity: 1;
    background-color: var(--primary-color) !important;
}

.bg-dark-color {
    --bs-bg-opacity: 1;
    background-color: var(--bluish-dark-color) !important;
}

.my-text-primary{
    color: var(--primary-color);
}

/* Top Navbar */
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar .nav-item a.nav-link {
  color: #fff;
    margin: 15px;
}

.navbar-white {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-plain {
    background-color: white;
}

.navbar-plain .nav-link {
    color: var(--dark-color) !important;
}

.navbar-plain .navbar-toggler {
    color: var(--dark-color);
}

.navbar-plain .navbar-brand {
    display: none;
}

.navbar-plain .navbar-brand-black {
    display: block;
}

.navbar-white .nav-link {
  color: var(--dark-color) !important;
}

.navbar-brand {
  display: block;
}

.navbar-brand img {
  height: 47px;
  transition: all 0.3s ease;
}

.navbar-brand-footer img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-white .navbar-brand {
  display: none;
}

/* .navbar-white .navbar-brand img {
  filter: brightness(0);
} */

.navbar-brand-black {
  display: none;
}

.navbar-brand-black img {
  height: 47px;
  transition: all 0.3s ease;
}

.navbar-white .navbar-brand-black {
  display: block;
}

.nav-link {
  font-weight: 500;
  margin: 0 10px;
    font-size: 17px;
}

/* For Bootstrap dropdown arrows */
.dropdown-toggle::after {
    font-size: 28px;
    /*margin-top: 10px;*/
    border-top: 0.3em solid; /* Customize arrow appearance */
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

/* Or if you want to target only the arrow without affecting text */
.dropdown-toggle {
    position: relative;
}

.dropdown-toggle::after {
    position: absolute;
    font-size: 28px;
    top: 18px;
    right: -13px; /* Adjust positioning */
}

/* @media only screen and (max-width: 992.99px) {
  .navbar-brand {
    display: none;
  }

  .navbar-brand-black {
    display: block;
  }
} */

/* Navbar toggler for small screen*/
.navbar-toggler {
  border: none;
  padding: 0.4rem 0.6rem;
  outline: none;
  color: var(--light-color);
}

.navbar-white .navbar-toggler {
  color: var(--dark-color);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(58, 134, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: none;
  width: 1.5em;
  height: 1.5em;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-toggler-icon i {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .bi-list {
  opacity: 0;
  transform: rotate(90deg);
}

.navbar-toggler[aria-expanded="false"] .bi-x {
  opacity: 0;
  transform: rotate(-90deg);
}

.navbar-toggler .bi-x {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bi-x {
  opacity: 1;
  transform: rotate(0deg);
}

/* Overlay Menu */
/* .overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.98);
  overflow-x: hidden;
  transition: height 0.5s ease;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 12px;
  text-decoration: none;
  font-size: 1.8rem;
  color: #f8f9fa;
  display: block;
  transition: 0.3s;
}

.overlay a:hover,
.overlay a:focus {
  color: #0d6efd;
  transform: scale(1.05);
}

.overlay .closebtn {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: #f8f9fa;
}

.navbar-toggler {
  border: none;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none;
} */

.overlay {
            height: 0;
            width: 100%;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.98);
            overflow-x: hidden;
            transition: height 0.5s ease;
        }

        .overlay-content {
            position: relative;
            top: 20%;
            width: 100%;
            text-align: center;
            margin-top: 30px;
        }

        .overlay a {
            padding: 12px;
            text-decoration: none;
            font-size: 1.8rem;
            color: #f8f9fa;
            display: block;
            transition: 0.3s;
        }

        .overlay a:hover, .overlay a:focus {
            color: var(--primary-color);
            transform: scale(1.05);
        }

        .overlay .closebtn {
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 40px;
            color: #f8f9fa;
        }

        .navbar-toggler {
            border: none;
            background: transparent !important;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Submenu styles */
        .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }

        .submenu.active {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }

        .submenu a {
            font-size: 1.5rem;
            color: #ccc;
            padding: 10px 20px;
        }

        .submenu a:hover {
            color: #0d6efd;
            transform: scale(1.02);
            background-color: rgba(255, 255, 255, 0.05);
        }

        .menu-item {
            position: relative;
        }

        .menu-item .submenu-toggle {
            position: absolute;
            right: 20%;
            top: 50%;
            transform: translateY(-50%);
            background: transparent;
            border: none;
            color: #f8f9fa;
            font-size: 1.5rem;
            cursor: pointer;
            transition: 0.3s;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        .menu-item .submenu-toggle:hover {
            color: #0d6efd;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-item .submenu-toggle.rotated {
            transform: translateY(-50%) rotate(180deg);
        }

/* Hide overlay toggle on large screens */
@media (min-width: 992px) {
  .overlay-toggle {
    display: none !important;
  }

  .desktop-menu {
    display: flex !important;
  }
}

/* Show overlay toggle on small screens */
@media (max-width: 991.98px) {
  .desktop-menu {
    display: none !important;
  }

  .overlay-toggle {
    display: block !important;
  }
}

/* Homepage Hero Section */

.hero-section {
  position: relative;
  min-height: 400px;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-section.subsidiaries{
    color: white;
}

.hero-section.subsidiaries .subsidiaries-hero-section-name {
    position: absolute;
    bottom: 24%;
    font-weight: 900;
    font-size: 50px;
    right: 0;
    left: 0;

    text-shadow: 2px 0 #FFFFFF;
    letter-spacing: 1.3px;
}


.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.hero-content {
    margin-top:auto;
    position: relative;
    z-index: 1;
}

.hero-slide {
    /*padding: 20px;*/
}

.hero-slide h1 {
    color: white;
    font-size: 3.0rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-slide p {
    color: white;
    font-size: 2.0rem;
    /*max-width: 800px;*/
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    text-align: left
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
}

.scroll-down img {
  height: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.section-title {
  /*font-size: 2.5rem;*/
  /*font-weight: 700;*/
  /*margin-bottom: .5rem;*/

    font-size: 30px;
    font-weight: 600 !important;
    letter-spacing: 2px;
}
.section-title-governance{
    letter-spacing: 0.2px !important;
}

.section-title-people {
    /*font-size: 2.5rem;*/
    /*font-weight: 700;*/
    /*margin-bottom: .5rem;*/

    font-size: 38px;
    font-weight: 600 !important;
    letter-spacing: 1px;
}

.section-title-registered-office {
    /*font-size: 2.5rem;*/
    /*font-weight: 700;*/
    /*margin-bottom: .5rem;*/

    font-size: 22px !important;
    font-weight: 600 !important;
    letter-spacing: .5px;
}

.icon-box {
  text-align: center;
  padding: 0px 20px;
  transition: all 0.3s ease;
    /*min-width: 400px;*/
}

.icon-box img {
  width: 35px;
  height: 35px;
}

.icon-box img.home-page {
    width: 45px;
    height: 45px;
}

.icon-box img.home-page-leaf {
    width: 50px;
    height: 50px;
}

.icon-box img.icon-box-medal {
    width: 20px;
    height: 30px;
}

.icon-box img.irc {
    width: 20px;
    height: 20px;
}

.icon-box img.icon-box-bars{
    width: 25px;
    height: 25px;
}

/*.icon-box:hover {*/
/*  transform: translateY(-10px);*/
/*}*/

ul.values-list{
    list-style-type: none;
    padding-left: 0;
}

ul.values-list li{
    font-size: 18px;
    /*font-weight: 600 !important;*/
    color: black;
    line-height: 33px;
    letter-spacing: 0.5px;
}


.icare{
    height: 15px;
    width: 14px;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .icare{
        height: 13px;
        width: 12px;
    }
}

.values-list-initials{
    color: var(--primary-color);
}

.icon-box i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.icon-box h5 {
  /*font-weight: 200 !important;*/
  /*margin-bottom: 2px;*/
    color: black;
    font-size: 18px;
    letter-spacing: 0.3px;
    font-family: "avenir-lt-std-35-light", "Poppins", sans-serif !important;
    text-transform: capitalize;
}


.icon-box p {
    font-size: 18px;

}

/* .product-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  margin-bottom: 30px;
  border-radius: 8px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
} */

/* Products Card */
.card-container {
  margin-bottom: 2rem;
}

.card-wrapper {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 300px;
  transition: transform 0.3s ease;
}

.card-wrapper:hover {
  transform: translateY(-5px);
}

.card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.card-wrapper:hover .card-bg {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  transition: background 0.5s ease;
}

.card-wrapper:hover .card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.9)
  );
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.card-desc {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  max-height: 0;
}

.card-wrapper:hover .card-title {
  transform: translateY(0);
}

.card-wrapper:hover .card-desc {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

.card-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  align-self: flex-end;
}

.card-wrapper:hover .card-btn {
  opacity: 1;
  transform: translateY(0);
}

.card-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Impact */
.impact-section {
  background-image: url("../img/misc/mountains.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.impact-heading {
  color: white;
  margin-top: -100px;
  font-size: 110px;
  vertical-align: middle;
  display: inline-block;
}

@media (max-width: 768px) {
  .impact-heading {
    font-size: 80px;
    margin-top: -75px;
  }
}

@media (max-width: 576px) {
  .impact-section {
    background-size: contain;
    height: 400px;
  }

  .impact-heading {
    font-size: 50px;
    margin-top: -150px;
  }
}

.counter-section {
  background-color: white;
  margin-top: -150px;
}

.counter-card {
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
}
/* .counter-card:hover {
            transform: translateY(-5px);
        } */
.profile-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.profile-icon img {
  width: 70px;
  height: 70px;
}

.counter-card-content {
  padding: 15px;
  display: flex;
  align-items: center;
  height: 100%;
}
.text-primary {
  color: #6c5ce7 !important;
}

@media (min-width: 768px) {
  .sustainable-world {
    max-width: 400px;
  }
}

/* .impact-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.impact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.impact-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
} */

.impact-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
}

/* footer {
  background-color: var(--bluish-dark-color);
  padding: 60px 0 30px;
  color:white;
}

footer a {

}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background: var(--dark-color);
} */

.top-menu .dropdown-menu{
    min-width: 240px;
    background: var(--bluish-dark-color);
    color:white;
    padding: 0px;
    border: none;
    border-radius: 20px;

}

.top-menu .dropdown-menu ul li a{
    color:white;
}

.top-menu .dropdown-menu ul li{
    padding: 5px 15px;
    margin:0;
    border: 1px solid var(--bluish-dark-color);
}

.top-menu .dropdown-menu ul li.f-li{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.top-menu .dropdown-menu ul li.l-li{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.top-menu .dropdown-menu ul li:hover{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.top-menu .dropdown-menu ul li:hover.f-li{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.top-menu .dropdown-menu ul li:hover.l-li{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}



/* Mega menu */
.mega-menu {
  width: 90%;
  left: 5% !important;
  right: 5% !important;
  padding: 0px;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  margin-top: 10px;
}

.mega-menu-section {
  /* padding: 0; */
  margin-left: 12px;
}

.mega-menu-column-left {
  padding: 50px 15px 15px 50px;
  border-right: 1px solid #E0E0E0;
}

.mega-menu-column-right {
  padding: 25px 50px 25px 25px;
}

.mega-menu-row {
  border-top: 1px solid #E0E0E0;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list li {
  margin-bottom: 12px;
  transition: all 0.3s;
}

.menu-list li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 5px 20px;
  transition: all 0.3s;
  font-weight: 500;
}

.menu-list li a:hover {
  color: var(--primary-color);
  /*padding-left: 5px;*/
}

.featured-heading {
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* .featured-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  transition: transform 0.3s;
  height: 200px;
  width: 300px;
} */

/* .featured-image {
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s;
  height: 200px;
  width: 300px;
  background-size: cover;
  background-position: center;
} */

.featured-image {

            border-radius: 0px;
            overflow: hidden;
            margin-bottom: 15px;
            transition: transform 0.3s;
            height: 150px;
            width: 100%;

            }



.featured-image:hover {
  transform: translateY(-5px);
}

.people-initiative{
    border-top-right-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}


/*
.featured-image img {
  width: 100%;
  height: auto;
} */

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s;
        }

.social-icons-top {
  display: flex;
  gap: 10px;
}

.social-icons-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--dark-color);
  border-radius: 50%;
  color: var(--light-color);
  transition: all 0.3s;
  text-decoration: none;
  outline: 0;
  cursor: auto;
}

.social-icons-top a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.careers-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.careers-link:hover {
  background-color: #0b5ed7;
  transform: translateY(-2px);
}

.careers-link-text {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

@media (min-width: 992px) {
  .mega-menu.show {
    min-width: 600px;
  }

  /* .dropdown-menu.mega-menu {
          left: auto;
          right: 0;
          transform: none !important;
        }

        /* For dropdowns that would go off-screen */
  .dropdown-menu.mega-menu.dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
  }

  .dropdown-menu.mega-menu.dropdown-menu-start {
    left: 0 !important;
    right: auto !important;
  }
}

/* @media (max-width: 991.98px) {
  .navbar-collapse {
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 15px;
  }

  .fixed-top {
    position: relative;
  }

  .navbar .nav-item a.nav-link {
    color: black;
  }
} */

/* Search  */

.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-content {
  width: 80%;
  max-width: 700px;
  position: relative;
}

.search-input-group {
  position: relative;
  display: flex;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.search-overlay .form-control {
  height: 50px;
  font-size: 1.2rem;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 0;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.95);
}

.search-overlay .form-control:focus {
  box-shadow: none;
  outline: none;
}

.search-overlay-btn {
  height: 50px;
  width: 100px;
  background: linear-gradient(90deg, #26a9e1 0%, #333b4a 100%);
  color: white;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-overlay-btn:hover {
  background: linear-gradient(90deg, #333b4a 0%, #26a9e1 100%);
}

.close-button {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1090;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-button:hover {
  color: white;
  transform: scale(1.1);
}

.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  color: #6c757d;
}

/* .search-results {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: 2rem;
  padding: 1.5rem;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.search-results.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.result-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}

.result-item:hover {
  background-color: #f8f9fa;
}

.result-item:last-child {
  border-bottom: none;
} */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* .popular-searches {
  margin-top: 2rem;
  color: white;
}

.popular-badge {
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.popular-badge:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3) !important;
} */

/* Video Player */
.video-container {
  border-radius: 0px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
  transition: transform 0.3s ease;
  position: relative;
}

.video-container:hover {
  transform: translateY(-5px);
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  background: #000;
}

.video-thumbnail {
  width: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.video-player {
  width: 100%;
  display: none;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.video-wrapper:hover .play-button {
  color: #fff;
  font-size: 75px;
}

/* Video controls overlay */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
}

.video-wrapper:hover .video-controls,
.video-controls.active {
  opacity: 1;
}

.control-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.progress-container {
  flex-grow: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 15px;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: #3498db;
  width: 0%;
  border-radius: 5px;
  transition: width 0.2s ease;
}

.time-display {
  color: white;
  font-size: 14px;
  margin: 0 10px;
  min-width: 100px;
  text-align: center;
}

.volume-control {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.volume-slider {
  width: 80px;
  margin-left: 10px;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #3498db;
  cursor: pointer;
}

/* Team Section Homepage */
.team-image-warapper {
  max-height: 550px;
  max-width: 1050px;
  overflow: hidden;
  object-position: 30% 70%;
    position: relative;
    border-radius: 20px;
}

.team-image {
  object-position: 30% 70%;
}

.hover-button {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*background-color: #3498db;*/
    color: white;
    border: 1px solid white;
    padding: 6px 24px;
    font-size: .8rem;
    border-radius: 50px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /*font-weight: 600;*/
    text-decoration: none;
    display: inline-block;
    /*z-index: 100;*/
}

.team-image-warapper:hover .hover-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
}

.hover-button:hover {
    background-color: #2980b9;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}


.hollow-button-black {
    /*position: absolute;*/
    /*top: 90%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    /*background-color: #3498db;*/
    color: black;
    border: 1px solid black;
    padding: 6px 24px;
    font-size: .8rem;
    border-radius: 50px;
    cursor: pointer;
    /*opacity: 0;*/
    /*transition: all 0.3s ease;*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
    /*font-weight: 600;*/
    text-decoration: none;
    display: inline-block;
    /*z-index: 100;*/
}

.hollow-button-black:hover {
    background-color: var(--primary-color);
    /*transform: translate(-50%, -50%) scale(1.1);*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);*/
}


.team-image {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    display: block;
}

.team-image-warapper:hover .team-image {
    transform: scale(1.03);
    filter: brightness(0.8);
}


.s-button {
    position: relative;
    /*top: 90%;*/
    /*left: 50%;*/
    transform: translate(-50%, -50%);
    /*background-color: #3498db;*/
    color: white;
    border: 1px solid white;
    padding: 6px 24px;
    font-size: .8rem;
    border-radius: 50px;
    cursor: pointer;
    /*transition: all 0.3s ease;*/
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    /*font-weight: 600;*/
    text-decoration: none;
    /*display: inline-block;*/
    /*z-index: 100;*/
}

.s-button:hover {
    background-color: #2980b9;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.s-button-dark-flat {
    /*position: relative;*/
    /*top: 90%;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
    background-color: var(--bluish-dark-color);
    color: white;
    border: 1px solid var(--bluish-dark-color);
    padding: 6px 24px;
    font-size: .8rem;
    border-radius: 50px;
    cursor: pointer;
    /*transition: all 0.3s ease;*/
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
    /*font-weight: 600;*/
    text-decoration: none;
    /*display: inline-block;*/
    /*z-index: 100;*/
}

.s-button-dark-flat:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--bluish-dark-color);
    /*transform: translate(-50%, -50%) scale(1.1);*/
    /*box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);*/
}

/* Custom Buttons */

.btn-more-text{
  text-decoration:none;
  color: var(--dark-color);
  font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif !important;
  font-weight: 900;
}

.btn-more-text:hover{
  color: var(--primary-color);
}

.btn-outline-bluish-dark {
  color: var(--bluish-dark-color);
  border-color: var(--bluish-dark-color);
}

.btn-outline-bluish-dark:hover {
  background-color: var(--bluish-dark-color);
  color: var(--primary-color);
}

.btn-custom-filled-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--light-color);
}

.btn-custom-filled-primary:hover {
  background-color: #1e8cbb;
  border-color: #1e8cbb;
  color: var(--light-color);
}

.btn-bluish-dark-filled {
  background-color: var(--bluish-dark-color);
  border-color: var(--bluish-dark-color);
  color: var(--light-color);
}

.btn-bluish-dark-filled:hover {
  background-color: #1e8cbb;
  border-color: #1e8cbb;
  color: var(--light-color);
}

/* Services Section Home Page */
.services-section {
  color: black;
}

.services-section p{
    color: black;
    font-size: 18px;
}

.our-culture p{
    color: black;
    font-size: 18px;
}

/* Homepage Carasoul */
.carousel-content {
  padding-left: 15px;
}
.owl-carousel-services .item {
  border-radius: 30px;
  overflow: hidden;
}
.owl-carousel-services .item img {
  border-radius: 0px;
  height: 300px;
  object-fit: cover;
}
.owl-theme .owl-nav {
  margin-top: 15px;
}
.owl-theme .owl-nav [class*="owl-"] {
  background: rgba(0, 0, 0, 0.2) !important;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--primary-color) !important;
}

.owl-nav .owl-next,
.owl-nav .owl-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.owl-nav .owl-next {
  right: 0;
  display: flex;
  margin-right: 2%;
  font-size: 25px !important;
}
.owl-nav .owl-prev {
  left: 0;
  display: flex;
  margin-left: 2%;
  font-size: 25px !important;
}

.owl-stage {
  padding-left: 0px !important;
}

/* News and Events */
.news-container {
    border-radius: 25px;
  margin-top: 30px;
    margin-bottom: 100px;
  /* background: white;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin-top: 20px; */
}


.news-container .news-item {
   border-bottom: 1px solid var(--secondary-color);
  padding: 40px 0;
  transition: transform 0.3s;
}
/* .news-item:hover {
            transform: translateY(-5px);
        } */
/*.news-container .news-item:last-child {*/
/*  border-bottom: none;*/
/*}*/
/* .news-img {
   border-radius: 8px;
   object-fit: cover;
   max-width: 360px;
  max-width: 100%;
} */
.news-img-wrapper {
  position: relative;
}

.news-img{
    border-radius: 20px;
}

.news-date {
  color: #ADADAD;
  font-size: 0.9rem;
    margin-bottom: 20px;
    margin-top: 20px;
}
.news-title {
    text-decoration: none;
  color: #212529;
  font-weight: 600;
  margin: 10px 0;
  transition: color 0.3s;
    font-size: 22px;
}
.news-title:hover {
  color: var(--primary-color);
}
.news-description {
  color: #495057;
  line-height: 1.6;
}
/* .news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
} */
.news-read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}


.news-section-title{
    color: var(--primary-color);
}

/* Footer */
.footer {
  color: white;
  padding: 3rem 0px 0rem 0px;
}

.footer-heading {
  color: white;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-link {
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.footer-link a{
  color: white;
  text-decoration: none;
}

.footer-link a:hover {
  color: var(--primary-color);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--dark-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

a.social-icon {
  text-decoration: none;
  color: var(--light-color);

  outline: 0;
  cursor: auto;
}


.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: var(--bluish-dark-color);
}


.social-icon-second{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /*background-color: var(--dark-color);*/
    border-radius: 50%;
    /*margin-right: 10px;*/
    transition: all 0.3s;
}

a.social-icon-second {
    text-decoration: none;
    color: var(--light-color);

    font-size: 25px !important;

    outline: 0;
    cursor: auto;
}


.social-icon-second:hover {
/*    background-color: var(--primary-color);*/
/*    transform: translateY(-3px);*/
/*    color: var(--bluish-dark-color);*/
color: var(--primary-color);
    cursor: pointer;
}

/* CSS for maintaining 16:9 aspect ratio */
.ratio-16x9 {
    padding-top: 56.25%; /* 9/16 = 0.5625 */
}

.ratio-container {
    position: relative;
    width: 100%;
}

.ratio-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ratio-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------- Stories page ------- */
/* Left Sidebar Menu */
/*.sidebar-menu .nav-link {*/
/*    color: var(--bluish-dark-color);*/
/*    font-weight: 600;*/
/*    padding: 8px 12px;*/
/*    border: none;*/
/*    border-left: 3px solid transparent;*/
/*    text-align: left;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.sidebar-menu .nav-link.active {*/
/*    background-color: var(--bg-color);*/
/*    color: var(--primary-color);*/
/*    border-left: 3px solid var(--primary-color);*/
/*}*/

/*.sidebar-menu .nav-link:hover {*/
/*    background-color: var(--bg-color);*/
/*    color: var(--primary-color);*/
/*}*/

/* Blog cards */
/*.blog-card {*/
/*    transition: transform 0.3s ease;*/
/*    height: 100%;*/
/*}*/

/*.blog-card:hover {*/
/*    transform: translateY(-5px);*/
/*}*/

/*.blog-card .card-img-top {*/
/*    !*height: 250px;*!*/
/*    object-fit: cover;*/
/*}*/

/*.blog-card .card-title {*/
/*    font-weight: 600;*/
/*    min-height: 60px;*/
/*}*/

/*.blog-card .card-text {*/
/*    color: var(--secondary-color);*/
/*    min-height: 130px;*/
/*    overflow: hidden;*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 3;*/
/*    -webkit-box-orient: vertical;*/
/*}*/

/*.blog-date {*/
/*    color: var(--primary-color);*/
/*    font-size: 0.875rem;*/
/*}*/


.stories-tabs a{
    font-size: 22px !important;
}

/*********** Story page ***********/
.story-img{
    border-radius: 25px;
}

.news-title-detail{
    font-size: 30px;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
}

.story-bg{
    --bs-bg-opacity: 1;
    background-color: var(--bg-color) !important;
    border-radius: 25px;
    padding: 80px;
    margin-top: 80px;
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .story-bg{
        padding: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*********** Stories ***********/
.news-card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: var(--bg-color) !important;
}

/*.news-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 10px 20px rgba(0,0,0,0.1);*/
/*}*/

.news-card img {
    /*height: 400px;*/
    object-fit: cover;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.news-card .card-title {
    font-weight: 600;
    line-height: 1.4;
    height: 68px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    font-size: 16px;
}

/*.news-date {*/
/*    color: #6c757d;*/
/*    font-size: 0.9rem;*/
/*}*/

.insights-card {
    /*border: none;*/
    text-align: center;
    /*transition: transform 0.3s ease;*/
    border: 1px solid #000;
    border-radius: 10px;
    background-color: var(--bg-color) !important;

}

.insights-card:hover {
    /*transform: translateY(-5px);*/
}

.insights-card img {
    border-radius: 8px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    margin-bottom: 15px;
}

.insights-card h5 {
    color:var(--primary-color);
    font-size: 22px;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
    margin: 15px 5px;
}


/* Contact Us Page*/
.contact-info svg {
    width: 18px;
    margin-right: 10px;
    color: var(--interloop-blue);
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--interloop-blue);
}

.nav-pills .nav-link {
    border-radius: 0;
    color: #333;
    text-align: left;
    padding: 15px 20px;
    margin-bottom: 5px;
    border-left: 3px solid transparent;
}

.nav-pills .nav-link.active {
    background-color: #f8f9fa;
    color: var(--interloop-blue);
    border-left: 3px solid var(--interloop-blue);
}

.tab-content {
    padding: 20px;
    /*background-color: #f8f9fa;*/
    min-height: 300px;
}




/*Homepage: subsidiaries section*/

/* Desktop Accordion Layout */
.img-accordion {
    display: flex;
    height: 300px;
    margin: 0.5rem 0;
    gap: 10px;
}

.img-accordion-item {
    flex: 1;
    background-position: center;
    background-size: cover;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
}

.img-accordion-item:hover {
    flex: 3;
}

.img-accordion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 20%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.5s ease;
    text-align: center;
}

.img-accordion-item:hover .img-accordion-overlay {
    transform: translateY(0);
}

.img-accordion-overlay h3 {
    font-size: 30px;
    margin-bottom: 0.7rem;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
}

.img-accordion-overlay p {
    margin-bottom: 1rem;
    font-size: 18px;
}

/*.s-button {*/
/*    display: inline-block;*/
/*    background: #3498db;*/
/*    color: white;*/
/*    padding: 0.5rem 1rem;*/
/*    border-radius: 5px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.s-button:hover {*/
/*    background: #2980b9;*/
/*    transform: translateY(-2px);*/
/*}*/

/* Mobile Card Layout */
.mobile-cards {
    display: none;
}

.mobile-card {
    width: 100%;
    height: 250px;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1.5rem;
}

.mobile-card-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.mobile-card-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .img-accordion {
        display: none;
    }

    .mobile-cards {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .subsidiaries-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mobile-card {
        height: 200px;
    }

    .mobile-card-overlay {
        padding: 1.2rem;
    }

    .mobile-card-overlay h3 {
        font-size: 1.25rem;
    }
}


/****** Governance page ******/

/*********Hero Section*/
.my-margin-top-100{
    margin-top: 120px;
}
.my-hero-section {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

/*.my-hero-section:hover {*/
/*    transform: translateY(-10px);*/
/*    box-shadow: 0 15px 30px rgba(0,0,0,0.15);*/
/*}*/

.my-hero-section-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 35px;
}

.my-hero-section-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0,0,0,0.2);  /* linear-gradient(to top, rgba(0,0,0,0.8), transparent);*/
    color: white;
    padding: 20px;
    /*transform: translateY(0);*/
    /*transition: transform 0.3s;*/
    border-radius: 35px;
}

/*.my-hero-section-member:hover .my-hero-section-overlay {*/
/*    transform: translateY(0);*/
/*}*/

.my-hero-section-name {
    position: absolute;
    bottom: 50px;
    left: 80px;
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif !important;

    text-shadow: 2px 0 #FFFFFF;

}


@media only screen and (max-width: 768px) {
    .my-hero-section-name {
        position: absolute;
        bottom: 30px;
        left: 30px;
        font-size: 25px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #FFFFFF;
        font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif !important;
    }
}



/***********************/
.hero-section {
    /*background-color: var(--accent-color);*/
    /*padding: 30px 0;*/
    text-align: center;
    color: black;
}

.section-title {
    /*margin-bottom: 10px;*/
    position: relative;
    padding-bottom: 10px;
}

/*.section-title:after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 60px;*/
/*    height: 3px;*/
/*    background-color: var(--secondary-color);*/
/*}*/

.center-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Team Member Cards */
.team-member {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    /*border-radius: 8px;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,.5); /*linear-gradient(to top, rgba(0,0,0,1), transparent);*/
    color: white;
    padding: 20px;
    transform: translateY(0);
    transition: transform 0.3s;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.team-member:hover .team-overlay {
    transform: translateY(0);
}

.team-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-position {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.message-section {
    /*background-color: var(--accent-color);*/
    padding: 80px 0;
    /*background: var(--bg-color);*/
}

.message-section p{
    font-size: 18px;
}

.message-img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .message-section {
        padding: 60px 0;
    }

    .team-img {
        height: 250px;
    }
}


/********** Impact page **************/
.custom-tabs {
    width: 100%;
}

.tab-panel-wrapper {
    display: flex;
    gap: 20px;
    overflow: hidden;
    height: auto;
    margin-top: 20px;
    align-items: center;
}

.tab-left {
    flex: 0 0 55%;
    padding-left: 30px;
}

.tab-buttons {
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab-buttons button {
    padding: 12px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.tab-buttons button.active {
    border-bottom: 1px solid var(--primary-color);
    font-weight: bold;
}

.tab-text-wrapper {
    margin-top: 20px;
    width: 80%;
}

.tab-text {
    display: none;
    animation: slideInLeft 0.6s forwards;
}

.tab-text.active {
    display: block;
    font-weight: 500;
    font-size: 18px;
}

.tab-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tab-image img {
    width: 100%;
    max-width: 530px;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.tab-image img.active {
    opacity: 1;
    position: relative;
    animation: slideInRight 0.6s forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tab-panel-wrapper {
        flex-direction: column;
    }

    .tab-left, .tab-image {
        flex: 1 1 100%;
    }

    .tab-buttons {
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-buttons button {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 15px;
    }

    .tab-image img {
        max-width: 100%;
        height: auto;
    }

    .tab-text.active {
        font-size: 14px;
    }

    .tab-left {
        padding-left: 10px;
    }

    .hero-section {
        padding: 60px 0;
    }
}

/******** Contact us Page **********/
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}
.contact-card {
    background: white;
    border-radius: 10px;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.1);*/
    margin-bottom: 30px;
    /*transition: transform 0.3s ease;*/
    height: 100%;
}
.contact-card:hover {
    /*transform: translateY(-5px);*/
}
.card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #eee;
    height: 100%;
}
.card-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}
.card-details {
    padding: 25px;
}
.card-details h5 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif;
    color: black;
    font-size: 15px;
}

.contact-item-registered-office{
    font-family: "avenir-lt-std-35-light", "Poppins", sans-serif; !important;
    font-size: 17px !important;

}

.contact-item i {
    color: #0d6efd;
    margin-right: 12px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}
.contact-item a {
    color: black;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-item a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .card-logo {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}


/****** Subsidiaries Counter *******/
.custom-blue {
    color: #34a6de;
}
.feature-box {
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 20px;
}
.feature-box h4{
    font-size: 20px;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif;
}
.feature-box p{
    font-size: 18px;
    color: black !important;
    /*font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif;*/
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.feature-icon {
    margin-bottom: 15px;
    height: 28px;
}
.logo-container {
    margin-bottom: 30px;
}
.logo-container img{
    height: 50px;
}

.logo-container-irc {
    margin-bottom: 30px;
}
.logo-container-irc img{
    height: 80px;
}

.description-container {
    padding-right: 30px;
}

.description-container p{
    font-size: 18px;
}

@media (max-width: 768px) {
    .description-container {
        padding-right: 0;
        margin-bottom: 30px;
    }
}


/****** Card Text Section *******/
.card-text-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}


.image-container {
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-card {
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    height: 320px; /* Reduced height */
    margin-left: -80px; /* Negative margin to overlap image */
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

}

.text-card h3 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-card p {
    color: white;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .text-card {
        margin-left: 0;
        margin-top: -50px;
        height: auto;
        min-height: 280px;
    }

    .image-container {
        height: 400px;
    }

    .image-container {
        border-radius: 0;
    }

    .text-card {
        border-radius: 0;
    }
}

@media (max-width: 576px) {
    .text-card {
        margin-top: -30px;
        padding: 20px;
    }

    .card-text-section {
        padding: 50px 0;
    }
    .image-container {
        border-radius: 0;
    }

    .text-card {
        border-radius: 0;
    }
}


/********** Gallery View **********/
.gallery-section {
    padding: 60px 0;
}


.gallery-section h2{
    color: var(--primary-color);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-title {
    font-size: 35px;
    margin-bottom: 25px;
    font-weight: 900;
    font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif;
    text-shadow: 1px 0 #FFFFFF;
    letter-spacing: 1.3px;
}

.gallery-description {
    font-size: 15px;
    opacity: 0.9;
}

/* Custom widths for different columns */
.col-custom-1 {
    flex: 0 0 auto;
    /*width: 60%;*/
}

.col-custom-2 {
    flex: 0 0 auto;
    /*width: 40%;*/
}

@media (max-width: 768px) {
    .col-custom-1, .col-custom-2 {
        width: 100%;
    }

    .gallery-image {
        height: 300px;
    }

}


/********* Initiative Section ***********/
.initiative-card {
    transition: transform 0.3s ease;
    border: none;
    /*box-shadow: 0 4px 6px rgba(0,0,0,0.1);*/
}
.initiative-card:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 8px 15px rgba(0,0,0,0.1);*/
}
.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    margin-bottom: 1rem;
}

.icon-container .icon{

    font-size: 30px;
}
.section-title {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    /*font-weight: 600;*/
}

.aboutInterloop p{
    font-size: 18px;
    font-weight: 400;
    color:black;
}

.who-we-are-icon-head{
    font-family: "avenir-lt-std-85-heavy", "Poppins", sans-serif !important;
    font-size: 22px !important;
    font-weight: 900;
}

.who-we-are-icon-detail{
    font-size: 16px !important;
}

.mission-lead{
    font-size: 18px;
    font-weight: 500;
}

.initiative-text {
    color: black;
    line-height: 1.6;
    font-size: 17px;
}
.featured-image {
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    /*height: auto;*/
    height: 500px;
}

.excellence-logo{
    height: 120px;
}

@media (max-width: 768px) {
    .featured-image {
        width: 100%;
        height: auto;
        border-radius: 30px !important;
    }
}

.section-padding {
    padding: 1rem 0;
}

.tech-adv p{
    font-size: 18px;
    color: black;
}

.our-vision p{
    font-size: 18px;
    color: black;
}

/********* Contact Card *******/
.contact-card-bottom {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
    margin: 2rem 0;
}
.contact-card-bottom h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
}
.contact-card-bottom p {
    color: black;
    margin-bottom: 1.5rem;
    font-size: 16px;
}
.contact-card-bottom .contact-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}
.contact-card-bottom .contact-btn:hover {
    background-color: var(--primary-color);
}
.contact-card-bottom-model .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-card-bottom-model .modal-body {
    padding-top: 0;
}
.contact-card-bottom-model .contact-list {
    list-style: none;
    padding-left: 0;
}
.contact-card-bottom-model .contact-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}
.contact-card-bottom-model .contact-list a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.contact-card-bottom-model .contact-list a:hover {
    color: var(--primary-color)
}
.contact-card-bottom-model .contact-list i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}
.contact-card-bottom-model .modal-logo {
    max-width: 300px;
    margin: 0 auto 1.5rem;
    display: block;
}

.contact-item i{
    color: var(--primary-color);
    font-size: 18px;
}


/******** Trusted Section **********/
.trusted-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.trusted-section .trusted-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    color: #333;
}

.trusted-section .logo-slider {
    margin: 0 auto;
    /*max-width: 1200px;*/



}

.trusted-section .recognitions-logo-slider {
    margin: 0 auto;
    /*max-width: 1200px;*/
}

.trusted-section .logo-item, .med-logo-item, .big-logo-item, .logo-item-momentum, .med-logo-item-momentum, .big-logo-item-momentum, .logo-item-octan, .med-logo-item-octan, .big-logo-item-octan, .logo-item-recog-printkraft, .logo-item-recog-irc {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.trusted-section .logo-item img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 80%;
    margin: 0 auto;

}

.trusted-section .med-logo-item img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 60%;
    margin: 0 auto;

}

.trusted-section .big-logo-item img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 40%;
    /*display: block;*/
    margin: 0 auto;

}

.trusted-section .logo-item-momentum img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 70%;
    margin: 0 auto;

}

.trusted-section .med-logo-item-momentum img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 50%;
    margin: 0 auto;

}

.trusted-section .big-logo-item-momentum img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 30%;
    /*display: block;*/
    margin: 0 auto;

}

.trusted-section .logo-item-octan img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 90%;
    margin: 0 auto;

}

.trusted-section .med-logo-item-octan img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 70%;
    margin: 0 auto;

}

.trusted-section .big-logo-item-octan img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 50%;
    /*display: block;*/
    margin: 0 auto;

}

.trusted-section .logo-item-recog-printkraft img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 85%;
    margin: 0 auto;

}

.trusted-section .logo-item-recog-irc img {
    /*max-width: 100px;*/
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
    max-width: 40%;
    margin: 0 auto;

}

.trusted-section .logo-item img.hp-fix {
    max-width: 25px;
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
}

.trusted-section .recognitions-logo-slider .logo-item img {
    max-width: 100px;
    /*max-height: 80px;*/
    /*filter: grayscale(100%);*/
    /*transition: all 0.3s ease;*/
}

.trusted-section .logo-item:hover img {
    /*filter: grayscale(0%);*/
    /*transform: scale(1.05);*/
}

.trusted-section .owl-nav {
    display: none;
}

.trusted-section .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.trusted-section .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #ddd;
    display: block;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.trusted-section .owl-dot.active span {
    background: #0d6efd;
}


/********* Contact us Page ***********/

.contact-form-section {
    background-color: #f8f9fa;
    padding: 60px 0;
    padding-top: 10px;
}

.contact-form-section img{
    border-radius: 30px;
    /*min-height : 420px;*/
}

.contact-form-section .form-control{
    background-color: #ffffff;
    border-color: #9E8C8C8C;
    border-radius: 10px 10px 10px 10px;
}

.contact-form-section .form-control:focus{
    box-shadow: none;
    outline: none;
}

.send-us-message{
    letter-spacing: 0.2px;
}

.read-more-btn{
    text-decoration:none;
    color: black;
}

.nav-tabs{
    border-bottom: 0;
}
.nav-tabs .nav-link{
    border: 0;
    color: black;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;

}
.nav-tabs .nav-link.active{
    border-bottom: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.governance-model .designation{
    color: black;
    font-size: 15px !important;
    font-weight: 900;

}

.governance-model .details{
    color: black;
    font-size: 18px !important;
    font-weight: 400;
    text-align: justify;

}



.governance-model .modal-header{
    border-bottom: none;
}

.governance-model .modal-header .modal-title{
    font-size: 30px;
    font-family: "avenir-lt-std-65-medium", "Poppins", sans-serif !important;
    color: var(--primary-color);
    text-transform: capitalize !important;
}

.governance-model .modal-content {
    border-radius: 2rem; /* Example: Set a custom border-radius */
    background-color: #F4F4FF;
}

/****** Fix On About Us *******/
.fix-eg{
    margin-bottom: 42px;
}

.fix-iw{
    margin-bottom: 43px;
}
