/*font-family*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(
    255,
    255,
    255,
    0.905
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #eb893a; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #eb893a; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "DM Sans", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0.8);
  --heading-color: #ffffff;
  --contrast-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: fit-content;
  margin-right: 8px;
  max-height: 80px;
  max-width: 180px;
}

.header .logo h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
  font-family: "Aleo", serif;
}

.header .logo span {
  color: var(--accent-color);
  font-size: 32px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 8px 30px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--default-color);
  background: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(0, 0, 0, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  background-color: rgba(255, 255, 255, 0.8);
}

.index-page.scrolled .header .navmenu a,
.navmenu a:focus {
  color: #000;
}

.index-page.scrolled .header .navmenu a:hover {
  color:#eb893a;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #fff;
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: color-mix(in srgb, var(--accent-color), white 90%);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding: 50px 0;
  background-color: color-mix(
    in srgb,
    var(--footer-background-color) 90%,
    white 10%
  );
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 10px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--default-color) 5%, white 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 4px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: color-mix(
    in srgb,
    var(--footer-background-color) 90%,
    white 15%
  );
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(
    in srgb,
    var(--footer-background-color) 90%,
    white 15%
  );
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 30px 0;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--nav-hover-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 80px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: end;
  justify-content: end;
}

.hero .aleo-text {
  font-family: "Aleo", serif;
  color: #fff;
  font-style: italic;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* .hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  font-family: var(--nav-font);
}

.hero h2 span {
  color: var(--accent-color);
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 40px;
  color: #fff;
}

.hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: var(--accent-color);
}

.hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.hero .icon-box h3 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
  border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 44px;
  font-weight: 400;
  color: #204172;
  font-family: "Aleo", serif;
}

.aboutUs-content {
  font-size: 18px;
  margin-top: 30px;
}

.aboutUs-content span {
  color: #204172;
  font-weight: 700;
}

.yellowBorder {
  border: 3px solid #eb893a;
  width: 30%;
}

.whyUssection .yellowBorder.orangeBorder {
  width: 24%;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about.section img {
  margin-left: 25%
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

.team .team-member {
  background-color: var(--surface-color);
  overflow: hidden;
  border-radius: 5px;
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  height: 100%;
}

.team {
  background-image: url(/assets/img/leadership_board/leadership_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}

.team .member-info .row {
  display: flex;
  justify-content: center;
  align-items: end;
}

.team .member-info .designation {
  padding-right: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
}

.team .member-info .linkedinlogo img {
  width: 120%;
}

.team .leadershipRow {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.team .member-info .designation h4 {
  color: #204172;
  font-size: 17px;
  font-weight: 600;
}

.team .member-info .designation span {
  color: #204172;
  font-size: 12px;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}

.team .team-member .linekdInicon {
  position: absolute;
  top: 8px;
  left: 87%;
  max-width: 30px;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 12px;
  right: 0;
  opacity: 1;
  transition: ease-in-out 0.3s;
  text-align: center;
}
/* 
.team .team-member .social a {
  background: color-mix(in srgb, var(--contrast-color), transparent 25%);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: ease-in-out 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
} */
/* 
.team .team-member .social a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
} */

.team .team-member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .team-member .member-info {
  padding: 10px 15px;
  background-color: #f8f8f8;
  opacity: 0.9;
  border-radius: 8px;
  margin-left: 10px;
  margin-right: 10px;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 18px;
}

/*video style*/

#myVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  object-fit: cover;
}

/*leadership styling*/

.leadershipTitle p {
  font-size: 44px;
  color: #272727;
  font-weight: 400;
}

/*why-us section styling*/

.whyUssection .mainBackground {
  background-image: url(/assets/img/whyus/why_us_main.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 100%;
  right: 32%;
  height: 100vh;
}

.whyUssection .mainBackground h3 {
  position: absolute;
  top: 70px;
  font-size: 44px;
  color: #fff;
  left: 34%;
  font-family: "Aleo", serif;
}

.whyUssection .whyusRow {
  display: flex;
  justify-content: center;
  /* align-items: baseline; */
}

.whyUssection {
  background-color: #fff;
  height: 100vh;
  padding-top: 40px;
}

.whyUssection .whyUsIcon {
  position: relative;
}

.whyUscontent .whyus-title {
  color: #272727;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
  border-bottom: 3px solid #eb893a;
}

.whyUssection .whyUscontent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  margin-top: 30px;
}

.whyUscontent .content {
  font-size: 18px;
  color: #272727;
  margin-top: 10px;
}

.whyUscontent .detailedContent {
  margin-bottom: 30px;
}

.whyUssection .yellowBorder {
  width: 40%;
}

.whyUsIcon .icons img {
  max-width: 50%;
}

/* .whyUsIcon .icons .iconone {
  position: absolute;
  left: 50%;
  top: 75px;
} */

.whyUsIcon .icons .iconone {
  position: absolute;
  left: 46%;
  top: 140px;
}

.whyUsIcon .icons .icontwo {
  position: absolute;
  top: 255px;
  left: 56%;
}

.whyUsIcon .icons .iconthree {
  position: absolute;
  top: 395px;
  left: 54%;
}

.whyUscontent .whyUsintro {
  color: #272727;
  font-weight: 400;
  font-size: 18px;
}

/*why-us mobile styling*/

.whyUsmobile {
padding-top: 0;
}

.sub-lastsection span {
  font-size: 44px;
    font-weight: 400;
    color: #204172;
    font-family: "Aleo", serif;
}

#clmcardsmaindiv .card-body.redbg.whyusCardone img{
  max-width: 20%;
}

.featurecarddiv {
  background: #fff;
  padding: 1rem 1rem;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 4px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

/*our-mission section styling*/

.ourmissionSection {
  background-color: #204172;
  height: 100vh;
  background-image: url(/assets/img/our_mission/mission_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.ourmissionSection .ourmission-title {
  font-size: 44px;
  color: #fff;
  font-family: "Aleo", serif;
  margin-left: 30px;
}

.ourmissionSection .ourmission-image {
  background-image: url(/assets/img/our_mission/infographic.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 78vh;
  position: absolute;
  right: 10%;
}

/*our-focus section styling*/

.ourfocusSection {
  padding-top: 20px;
  padding-bottom: 20px;
}

ul.ourfocusSection {
  display: flex;
  /* min-height: 100vh; */
  max-height: 100vh;
  margin: 0;
  padding: 30px;
  overflow: hidden;
  list-style-type: none;
  /* background-image: url(/assets/img/focus/gradient.png); */
  background-repeat: no-repeat;
  background-size: cover;
}

.ourfocusSection li {
  flex: 1;
  display: flex;
  align-items: stretch;
  padding: 20px;
  /* background: #e74c3c; */
  cursor: pointer;
  transition: all 0.5s ease;
}
/* .ourfocusSection li:hover {
  background: #e53f2e;
} */
.ourfocusSection li.active {
  flex: 5;
  /* background: #fff; */
  cursor: default;
}
.ourfocusSection li.active h2 {
  color: #e74c3c;
}
.ourfocusSection li.active .section-content {
  flex: 4;
  opacity: 1;
  transform: scaleX(1);
  color: #e74c3c;
}
.ourfocusSection li .accordion-title {
  flex: 1;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  color: white;
}
.ourfocusSection li .accordion-title h2 {
  margin: 0;
  transform: rotate(-90deg);
  white-space: nowrap;
}
.ourfocusSection li .section-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: all 0.25s 0.1s ease-out;
  flex-direction: column;
  justify-content: center;
}
.ourfocusSectionBlue h3 {
  font-size: 44px;
  color: #fff;
  font-family: "Aleo", serif;
  margin-left: 30px;
}

.ourfocusSection h3 {
  font-size: 44px;
  color: #204172;
  font-family: "Aleo", serif;
  margin-left: 30px;
}

.ourfocusSection .pillartitleOne {
  background-image: url(/assets/img/focus/yellow_pillar.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60vh;
  margin-left: 15%;
}


.ourfocusSection .pillartitleTwo {
  background-image: url(/assets/img/focus/green_pillar.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60vh;
}

.ourfocusSection .pillartitleThree {
  background-image: url(/assets/img/focus/blue_pillar.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60vh;
}

.ourfocusSection .pillartitleOne .section-content {
  background-color: #eb893a;
  /* background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(235, 137, 58, 1)); */
  /* background-image: linear-gradient(to right, rgba(66, 30, 30, 0), rgba(235, 137, 58, 1)); */
  padding: 20px;
  height: 39vh;
  margin-left: -11%;
  margin-top: 10.7vh;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ourfocusSection .pillartitleTwo .section-content {
  background-color: #204172;
  padding: 20px;
  height: 39vh;
  margin-left: -11%;
  margin-top: 10.7vh;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ourfocusSection .pillartitleThree .section-content {
  background-color: #eb893a;
  padding: 20px;
  height: 39vh;
  margin-left: -11%;
  margin-top: 10.7vh;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.ourfocusSection .pillartitleOne .blackborder {
  border: 1px solid #272727;
  width: 30%;
}

.ourfocusSection .pillartitleOne .pillarHead {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 10px;
}

.ourfocusSection .pillartitleOne .pillarBody {
  font-size: 17px;
  color: #fff;
  margin-top: 15px;
}

.ourfocusSection .pillartitleOne .pillarBody span {
  font-weight: 600;
  font-style: italic;
}

.ourfocusSection .pillartitleTwo .pillarHead {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 10px;
}

.ourfocusSection .pillartitleTwo .pillarBody {
  font-size: 17px;
  color: #fff;
  margin-top: 15px;
}

.ourfocusSection .pillartitleTwo .pillarBody span {
  font-weight: 600;
  font-style: italic;
}

.ourfocusSection .whiteborder {
  border: 1px solid #fff;
  width: 30%;
}

.ourfocusSection .pillartitleThree .pillarHead {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0;
  padding-top: 10px;
}

.ourfocusSection .pillartitleThree .pillarBody {
  font-size: 17px;
  color: #fff;
  margin-top: 15px;
}

.ourfocusSection .pillartitleThree .pillarBody span {
  font-weight: 600;
  font-style: italic;
}

/* .ourfocusSection {
  background-image: url(/assets/img/focus/our_focus_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
} */

/*our focus mobile styling*/

.ourFocuscards {
  padding-top: 10px;
}

#focusMobile .card-body.pillarCardone {
background-color: #eb893a !important;
}

#focusMobile .card-body.pillarCardblue {
  background-color: #204172 !important;
  border: 1px solid #204172 !important;
  }

  #focusMobile .card-body.redbg.whyusCardone .card-title {
  color: #fff !important;
  }

  .ourFocuscards li span {
    font-weight: 600;
    font-style: italic;
  }


/* Resource Library Section */
.resourceLibrary {
  padding: 40px 0;
  background-color: #f8f9fa; /* Light background */
}

/* Heading Style */
.resourceLibrary h2 {
  font-size: 44px;
  color: #204172;
  font-family: "Aleo", serif;
  text-align: left;
  margin-bottom: 20px;
}

/* Search Bar */
.resourceLibrary .search-bar {
  max-width: 400px;
  margin-bottom: 20px;
}

/* Carousel Container */
.resourceLibrary .carousel {
  position: relative;
}

/* Carousel Item */
.resourceLibrary .carousel-item {
  text-align: center;
}

/* Cards */
.resourceLibrary .card {
  width: 18rem;
  border: none;
  border-radius: 10px;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
  background-color: transparent;
  cursor: pointer;
}

.resourceLibrary .card:hover {
  transform: translateY(-5px);
}

/* Card Images */
.resourceLibrary .card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Card Titles */
.resourceLibrary .card-title {
  font-size: 18px;
  text-align: left;
  color: #272727;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3.2em;
}

/* Card Date */
.resourceLibrary .card p {
  font-size: 16px;
  color: #272727;
  text-align: left;
}

/* Navigation Arrows */
.resourceLibrary .carousel-control-prev-icon,
.resourceLibrary .carousel-control-next-icon {
  background-color: black;
  border-radius: 50%;
  padding: 10px;
}

/* Pagination Indicators */
.resourceLibrary .carousel-indicators button {
  background-color: #333;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.resourceLibrary .carousel-indicators .active {
  opacity: 1;
  background-color: #eb893a;
}

.carousel-control-prev img {
  max-width: 20%;
}

.carousel-control-next img {
  max-width: 20%;
}

.resourceLibrary .searchBar {
  display: flex;
  justify-content: flex-end;
}

.searchBar .form-control {
  width: auto;
}

.resourceLibrary .yellowBorder {
  border: 1px solid #eb893a;
}

.resourceLibrary .searchBar ::placeholder {
  color: #a2a2a2;
}

/*modal styling*/

.resourcemodal .readmore {
  display: flex;
  justify-content: flex-end;
}

.resourcemodal h4 {
  font-size: 18px;
  color: #272727;
  font-weight: 500;
}

.resourcemodal p {
  margin-bottom: 0;
  font-size: 16px;
  color: #272727;
  margin-top: 10px;
}

.resourcemodal .readmore button {
  background-color: transparent;
  border: 0;
  text-transform: lowercase;
}

.resourcemodal .brandLine {
  max-width: 25%;
}

.resourcemodal .iconsSection {
  display: flex;
  justify-content: flex-end;
}

.resourcemodal .iconsSection .downloadBtn {
  background-color: transparent;
  border: 0;
  display: flex;
  justify-content: flex-end;
}

.resourcemodal .iconsSection img {
  width: 20px;
}

.resourcemodal .modal-content {
  background-color: #004167;
}

.resourcemodal .modal-header {
  border-bottom: 0;
}

.resourcemodal .modal-body {
  padding: 30px 16px;
  padding-top: 0;
  padding-left: 25px;
}

.resourcemodal .coverSection {
  padding: 0;
  z-index: 999;
}

.resourcemodal .resourceDetail {
  background: #f2f5f7;
  padding: 10px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-left: -1%;
}

.resourcemodal .resourceDetail.pdfone {
  padding-top: 15px;
  padding-bottom: 15px;
}

/*our approach styling*/

#ourapproach {
  background: linear-gradient(180deg, #204172 0%, #ffffff 100%);
}

#ourapproach img {
  width: 100%;
  object-fit: cover;
}

/*news and case study styling*/

.newscasesection {
  background-color: #204172;
  /* height: 100vh; */
  padding-bottom: 0;
}

.newscasesection h3 {
  font-size: 44px;
  color: #fff;
  font-family: "Aleo", serif;
  margin-left: 30px;
  padding-bottom: 20px;
}

.newscasesection .resourceCards {
  background-color: transparent;
  border: 0;
}

.newscasesection .carousel-indicators button {
  background-color: #a2a2a2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.newscasesection .carousel-indicators .active {
  opacity: 1;
  background-color: #eb893a;
}

.newscasesection .carousel-item {
  height: 455px;
}

.newscasesection .card-img,
.newscasesection .card-img-top {
  width: 250px;
  height: auto;
}

.newscasesection .carousel-control-prev img,
.newscasesection .carousel-control-next img {
  max-width: 15%;
}

.newscasesection .card-title {
  color: #fff;
  font-size: 18px;
  height: 70px;
  margin-bottom: 0;
}

.newscasesection .yellowText {
  color: #eb893a;
  margin-bottom: 0;
}

.newscasesection .carousel-indicators {
  bottom: 40px;
}

.newscasesection .carousel-control-next,
.newscasesection .carousel-control-prev {
  bottom: 50px;
}

.newscasesection .carousel-control-next {
  right: 45px;
}

.newscasesection .carousel-control-prev {
  left: 30px;
}

.newscasesection .owl-buttons{
  display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      bottom: 244px;
      width: 100%;
}


.newscasesection .owl-theme .owl-controls .owl-buttons div {
  background-color: #eb893a;
  align-items: center;
  color: #214172;
  padding: 9px 12px;
}

.newscasesection .fa-solid {
  font-size: 20px;
}

.newscasesection .owl-theme .owl-controls .owl-page.active span {
  background-color: #eb893a;
}

.newscasesection .owl-theme .owl-buttons .owl-prev {
  margin-left: -54px;
}

/*contact us styling*/

.contactsection .transparentBg {
  background-image: url(/assets/img/contactus/transparent_logobg.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  height: 60vh;
  position: absolute;
  left: 72%;
  background-position: center;
}

.contactsection .contact-details img {
  max-width: 20%;
}

.contactsection h3 {
  font-size: 44px;
  color: #204172;
  font-family: "Aleo", serif;
  margin-left: 30px;
}

.contactsection .contact-details {
  padding: 30px;
  margin-top: 100px;
}

.contact-details .contactInfo .contactTye {
  color: #204172;
  font-weight: 500;
  font-size: 18px;
}

.contact-details .contactInfo p {
  color: #204172;
  font-size: 16px;
  margin-bottom: 0;
}

.contact-details .blueBorder {
  border: 1px solid #204172;
  width: 10%;
}

.contact-details .rightColumn .blueBorder {
  width: 7.7%;
}

.contact-details .leftColumn {
  padding-left: 25px;
}

.rightColumn .contactTye {
  margin-top: 20px;
}

/* our aim section */

#aim #pills-tab button {
  background-color: transparent !important;
  color: #000;
  z-index: 999;
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem);
}

#aim .border-timeline {
  background-size: 100% 3px;
  height: 3px;
  border-bottom: 2px solid #fff;
  top: 36px;
  position: absolute;
  width: 100%;
}

#aim #pills-tab button {
  background-color: #ea893a !important;
  color: #000;
  z-index: 999;
  position: sticky;
  width: 50px;
  height: 50px;
}

#aim button {
  background: transparent;
  border: 5px solid #fff;
  border-radius: 50%;
  padding: 0.3rem !important;
}

#clmcardsmaindiv .redbg,
#clmcardsmaindiv .card {
  background-color: transparent !important;
  border-color: #eb893a;
  color: #fff !important;
}

#aim #clmcardsmaindiv p {
  color: #595959 !important;
}

#clmcardsmaindiv .card-title {
  color: #000;
}

#aim #pills-profile-tab,
#clmcardsmaindiv .cardtwo {
  /* background-color: #ed7d31 !important; */
  border-color: #fff !important;
}

#aim #pills-contact-tab,
#clmcardsmaindiv .cardthree {
  /* background-color: #997617 !important; */
  border-color: #fff !important;
}

#aim #pills-pilot-tab,
#clmcardsmaindiv .cardfour {
  /* background-color: #ff274a !important; */
  border-color: #fff !important;
}

#clmcardsmaindiv img {
  max-width: 100px;
}

#aim #pills-tab img {
  max-width: 60px;
}

#aim #pills-tab button:hover img {
  /* transform: scale(1.2, 1.2); */
  filter: brightness(0) invert(1);
  cursor: pointer;
}

#aim #pills-tab button:hover {
  background-color: #f4a261 !important;
}

#aim #pills-tab #pills-profile-tab:hover {
  background-color: #f4a261 !important;
}

#aim #pills-tab #pills-contact-tab:hover {
  background-color: #f4a261 !important;
}

#aim #pills-tab #pills-pilot-tab:hover {
  background-color: #f4a261 !important;
}

#aim #pills-tab #pills-feedback-tab:hover {
  background-color: #f4a261 !important;
}

#aim .main-tab-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#aim .clm-tab {
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
  text-align: center;
}

#aim h4 {
  /* font-size: 22px; */
  font-size: clamp(1.375rem, 0.119vw + 1.351rem, 1.5rem);
  text-align: center;
  height: 55px;
  font-family: "Poppins", sans-serif !important;
  letter-spacing: 0.5px;
}

#aim p {
  color: #fff;
  font-size: clamp(0.875rem, 0.125vw + 0.85rem, 1rem) !important;
  text-align: center;
  margin-top: 65px;
}

#aim h4 {
  color: #fff !important;
}

#aim .second-tab h4 {
  color: #fff !important;
}

#aim .third-tab h4 {
  color: #fff !important;
}

#aim .fourth-tab h4 {
  color: #fff !important;
}

#aim #pills-tab .nav-item {
  border-radius: 50%;
  /* border: 2px dashed #cecece; */
  padding: 11px;
}

.clm-tab-second {
  margin-top: 30px;
}

#clmtabPara1,
#clmtabPara2,
#clmtabPara3,
#clmtabPara4,
#clmtabPara5 {
  display: none;
}

#clmtabPara1,
#clmtabPara2,
#clmtabPara3,
#clmtabPara4,
#clmtabPara5 {
  display: none;
}

#aim.bg-main-gray.bg-black .clmParaOne:hover .clmtabPara {
  display: block !important;
}

.clmParaOne {
  cursor: pointer;
}

#aim {
  background-color: #204172;
}

.clmtabPara {
  text-align: left;
  color: #fff;
  margin-top: 70px;
}

.firstBox{
  display: flex !important;
  flex-direction: row !important;
  padding: 0px !important;
}

.shadowLine{
  height:39vh;
  box-shadow: 10px 0px 5px 0px rgba(202, 119, 53, 1);
    width: 12%; 
}

.secondBox .shadowLine {
  box-shadow: 10px 0px 5px 0px rgb(32 62 106);
}

.boxCotent{
  padding-left: 20px
}

/* our aim section css end */

/*our aim mobile styling*/

#aim .card-body.whyusCardone .card-title.aimTitle {
  color: #fff !important;
}

.aim .aimTabs {
list-style: none;
}


.custom-nav {
  position: relative;
}

.custom-prev, .custom-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  cursor: pointer;
  z-index: 1000;
}

.custom-prev {
  left: 50px; 
}

.custom-next {
  right: 50px;
}
