
:root {
  --default-font: "Outfit", sans-serif;
  --heading-font: "Outfit", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* 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: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #32353a; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FBB24B; /* 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: #ffffff; /* 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: #3a3939;  /* The default color of the main navmenu links */
  --nav-hover-color: #FBB24B; /* 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: #3a3939; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FBB24B; /* 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. */
.bold500{
  font-weight: 500;
}
.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

ul.wp-block-list li{
    text-align:justify;
}
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);
}
p{
  color: #666666;
  font-size: 18px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
}
.topHeader.py-3.border-bottom {
    border-color: #444444 !important;
}
/* Ensure all menu items are correctly positioned */
.navmenu ul li a {
    position: relative;
}

/* Base state for all links (no underline initially) */
.navmenu ul li a::after {
    display: block;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    margin: 0 auto;
    height: 2.5px;
    background: #726658;
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
}
/* Show underline on hover */
.navmenu ul li a:hover::after,
.navmenu ul li a.active::after {
    transform: scaleX(1);
}

.title h2{
  font-size: 38px;
}
#header.is-sticky {
  position: fixed;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  background-color: #ffffff;
  animation: slideDown 0.35s ease-out;
  right: 0;
  left: 0;
  top: 0;
  color: #000000;
}
main.main {
  margin-top: -11em;
  z-index: -1;
}
.mainHeader {
  position: relative;
  z-index: 111;
  background: #00000085;
} 
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 600;
  padding-left: 3px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.orgBtn{
  background: #FBB24C;
}
.orgBtn:hover{
  background: #FBB24C;
}
.subTitle p {
    text-align: center;
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}
/* breadcrumbs css start */
.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  padding: 0 5px;
  color: white;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #999999;
  --nav-hover-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
  --heading-color: #32353a;
  --nav-color: #3a3939;
  --nav-hover-color: #FBB24B;
}

/*--------------------------------------------------------------
# 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: #999999;
    padding: 18px 15px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .topHeader p {
    color: #808080;
}
.is-sticky .navmenu li:hover>a, .is-sticky .navmenu .active, .is-sticky .navmenu .active:focus{
  color: #222222 !important;
}
  .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: #fff;
  }

  .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: 4px;
    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 {
    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: #fff;
    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;
    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), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  nav#navmenu li a {
    color: #999999;
}
nav#navmenu a.active:after {
  content: "";
  border-bottom: 2.5px solid #726658;
  position: absolute;
  bottom: 10px;
  height: 2.5px;
  width: 49%;
  left: 19px;
}
  .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;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 18px;
  font-family: var(--heading-font);
}
.footer-links {
    padding-left: 5em;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 2.1em;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 200;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
  font-size: 20px;
  font-weight: 200;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  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(--accent-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;
  }
  
  
  .mainHeader{
      padding-bottom:11px !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;
  font-size: 16px;
  font-weight: 600;
}

.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%);
}

#shadow-host-companion{
    padding:0px !important;
}

.accordion-button:not(.collapsed){
    background:transparent;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 98px;
  /* overflow: clip; */
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 64px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 227px 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
  z-index: 1;
}

.heroTextBoxRow{

}
.heroMainText{
    display: flex;
    flex-direction: column;
    height: 80vh;
    justify-content: center;
}
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}



@media screen and (min-width: 376px) and (max-width: 767px){
      .heroMainText {
    height: 53vh !important;

}
}


@media screen and (max-width: 768px){
    .heroMainText {
    display: flex;
    flex-direction: column;
    height: 69vh;
    justify-content: center;
    min-height: 100%;
    max-height: 100%;
}
}


section#hero img {
    object-fit: cover;
}
.innerBg {
    background: #0000008a;
    padding: 5em 2em;
    border-radius: 25px;
}


.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 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
} */

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 37px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 5px 0 0 0;
  font-size: 18px;
}

.hero .sign-up-form {
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 7px;
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  display: flex;
}

.hero .sign-up-form input[type=email] {
  background-color: transparent;
  border: 0;
  padding: 4px 10px;
  width: 100%;
}

.hero .sign-up-form input[type=email]:focus-visible {
  outline: none;
}

.hero .sign-up-form input[type=submit] {
  border: 0;
  box-shadow: none;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 8px 20px 10px 20px;
  border-radius: 7px;
  color: var(--contrast-color);
  transition: 0.3s;
}

.hero .sign-up-form input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}

@media (max-width: 768px) {
    
    .list-unstyled.two-column-list{
        display:grid;
    }
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 25px;
  
}


.about .content .read-more:hover i {
    margin-left: 10px;
    padding-right: 10px;
    transition: transform 0.4s ease;
}

.aboutBoxes img {
  border: 8px solid #fff;
  border-radius: 158.5px;
}
.aboutImg1 {
  margin-left: 60px;
}
.aboutImg3 {
  margin-left: 5em;
  margin-top: -11em;
}
.about .content span {
  font-weight: 300;
}
/* .about {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
} */


/* .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
} */


/*======== Job details css start ========*/

.jobProfilePic img{
    border: 10px solid #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 9px 24px -4px rgba(194,194,194,0.57);
-moz-box-shadow: 0px 9px 24px -4px rgba(194,194,194,0.57);
box-shadow: 0px 9px 24px -4px rgba(194,194,194,0.57);
}
.jobProfileDetails ul li {
    font-size: 18px;
    color: #666666;
}
.jobApplyBtn .btn {
    background: #FBB24C;
    padding: 10px 25px;
    color: #ffffff;
}
section.jobProfileDetails p {
    font-size: 18px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
  .aboutImg1 {
    margin-left: 0px;
  }
  .aboutImg3 {
    margin-left: 0;
    margin-top: -9em;
}
.joinTogetherSec .col-md-4 {
  margin-left: 0 !important;
}
.innerBg {
    background: #0000008a;
    padding: 40px 5px;
    border-radius: 25px;
    margin: 27px 20px 0 !important;
    width: 95%;
}
    .hero {
        min-height: auto;
        padding: 187px 0 47px;
        height: 330px;
    }
.aboutImg1{
    height: 300px !important;
}
.aboutImg2{
    height: 300px !important;
}
.aboutImg3{
    height: 250px !important;
}

.aboutImg2 {
    margin-top: -15em;
    object-fit: cover;
    float: inline-end;
}
.ourServices{
    background-position: 0 -18px;
}
.serviceTitle{
    font-size: 20px !important;
}
/*.serviceTitle {*/
/*    text-align: right;*/
/*}*/
.sliderNumText h1{
    text-align: center;
}
}
.our-values .img-overlay {
  position: relative;
  /* width:25%; */
}

.our-values .img-overlay-image {
display: block;
    width: 100%;
    height: 267px;
    border: double 5px transparent;
    border-radius: 20px;
    background-image: linear-gradient(white, white), 
                    linear-gradient(to right, #F8F8F8, #EAEAEA);
    background-origin: border-box;
    background-clip: content-box, border-box;
}


img, svg {
  vertical-align: middle;
}

.our-values .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-image: url(../img/bg-cards.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  -webkit-box-shadow: -3px 4px 12px 0px rgba(75,182,250,1);
-moz-box-shadow: -3px 4px 12px 0px rgba(75,182,250,1);
box-shadow: -3px 4px 12px 0px rgba(75,182,250,1);
}

.our-values .img-overlay:hover .overlay {
  opacity: 1;
  border-radius: 20px;
}
.our-values .innerText {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 267px;
  width: 94%;
  position: absolute;
  top: 0;
}
.our-values .innerText:after {
  width: 12px;
  content: "";
  max-width: 100%;
  height: 214px;
  position: absolute;
  right: 0;
  background: #fff;
  border-radius: 50px;
}
.our-values .text {
  color: #000;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 267px;
  transform: translate(-50%, -35%);
  -ms-transform: translate(-50%, -50%);
  text-align: left;
  width: 100%;
  padding: 0 20px;
}

/*===== search section css start ======*/

button#ServicesBtn {
  background: #FBB24B;
  color: #fff;
  font-size: 22px;
}
.searchSec input[type=text] {
  font-size: 20px;
  font-weight: 200;
  padding: 16px 18px;
}
/*===== search section css end ======*/

/*===== Our services section css start ======*/
.mainServiceSec{
  display: contents;
}
.serviceTextBox p {
  font-size: 15px;
}
.ourServices {
  background-image: url(../img/services/serviceBg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  left: 0;
  width: 100%;
}

.serviceCard .card {
  border-radius: 30px;
}
.serviceCard {
  z-index: 11;
}
.serviceTextBox .mainHeading h2 {
  font-size: 45px;
}
.serviceCard .learnMore {
  font-size: 14px;
  font-weight: 500;
}
.viewAllbtn a {
  padding: 18px 40px;
  display: inline-flex;
  gap: 16px;
  color: #4BB6FA;
}
.viewAllbtn .read-more{
    padding: 18px 40px !important;
    color: #4BB6FA;
}
.viewAllbtn .read-more:hover{
    color: #4BB6FA;
}

.viewAllbtn .read-more:hover i{
    margin-left: 10px;
    color: #4BB6FA;
}


.btn i {
    padding-left: 8px;
    transition: transform 0.3s ease-out;
}


.btn:hover i {
    transform: translateX(4px);
}


#findoutSlider {
    position: relative;
}
.swiper-button-next, .swiper-button-prev {
    background: #fbb24b !important;
    padding: 33px;
    border-radius: 50%;
    color: #000 !important;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-size: 30px !important;
}
#findoutSlider h1{
    cursor: default;
}
.serviceAccortion ul li svg {
    rotate: 326deg;
}
/*===== Our services section css end ======*/

.vectorDesign img {
  margin-top: -57px;
  z-index: 1;
  overflow: visible;
  position: relative;
}

/*===== Slider section css start =====*/
.sliderBg{
  background-image: url(../img/services/sliderbg.png);
}
.sliderNumText h1 {
  font-size: 345px;
  font-family: 'Big Shoulders Text';
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-color: #E0E0E0;
  -webkit-text-stroke-width: 10px;
}
.sliderTitle h1 {
  font-size: 45px;
  font-weight: 100;
}
.sliderText p {
  font-size: 20px;
  color: #666666;
  font-weight: 300;
  line-height: 25.2px;
}
.swiper-slide .swiper-slide--inner{
  padding-left: 0%;
  padding-right: 0%;
}
.sliderAvatar img {
  width: 418px;
}

@media screen and (max-width: 600px){
  .sliderAvatar img {
    width: 100% !important;
}
}

/*======== Knowledge Hub css start =========*/

.postCard .card {
  background-color: rgba(248, 248, 248, 1);
  border: 5px solid rgba(248, 248, 248, 1);
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 16px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.postCard .card-img-top {
  border-radius: 25px 25px 0 0;
}
.viewAllBtn .btn {
  background: #FBB24C;
  padding: 10px 20px;
}
.viewAllBtn .btn:hover {
  background: #FBB24C;
  padding: 10px 20px;
}
.viewAllBtn {
  text-align: center; /* Center align the button */
}

.viewAllBtn button {
  position: relative; /* Ensure the button is positioned relative to its parent */
  background-color: transparent; /* Remove default button background */
  color: white; /* Text color */
  padding: 8px 16px; /* Adjust padding as needed */
  border: none; /* Remove default button border */
}

.viewAllBtn::before,
.viewAllBtn::after {
  content: ''; /* Required for pseudo-elements */
  display: block;
  width: 100%; /* Full width */
  height: 1px; /* Adjust the thickness of the lines */
  background-color: black; /* Adjust the color of the lines */
  margin: 10px 0; /* Adjust margin as needed */
}

.viewAllBtn button {
  z-index: 1; /* Ensure button is on top of lines */
  position: relative; /* Ensure button stays above lines */
}
.viewAllBtn::before {
  position: absolute;
  left: 0;
  width: 41%;
  top: 12px;
  background: #E2E2E2;
  height: 2px;
}
.viewAllBtn::after {
  position: absolute;
  right: 0;
  width: 41%;
  top: 12px;
  background: #E2E2E2;
  height: 2px;
}
.joinBtn .btn {
  padding: 15px 25px;
}

/*========= Footer section ===========*/
#mainfooter {
  background-color: #222222;
  color: #fff;
  padding-top: 15em;
  margin-top: -13em;
}

#mainfooter a, .footer-links h4{
  color: #fff;
}
.footerContact {
  background-color: #222222;
  border: 2px solid #404040;
  border-radius: 55px;
  padding: 3em;
  z-index: 1;
  position: relative;
}
.footerContact .btn{
  background-color: #2e2e2d;
  padding: 15px 30px;
}
.footerBottom {
  color: #666666;
  font-size: 20px;
  border-top: 1.5px solid #404040;
}
.footer p{
  color: #fff;
}
.footerBottom p {
  color: #666666;
}
/*======= About us page css start =======*/
.mask-img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../img/about-us/masking-image.svg);
  mask-image: url(../img/about-us/masking-image.svg);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 250px 250px;
  mask-size: 100% 100%;
}

section.our-vision img {
  height: 304px;
  width: 86%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 0 13px #EDF8FF;
}
section.our-mission img {
  height: 304px;
  width: 86%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 0 13px #EDF8FF;
}

section.our-mission ul li{
  font-size: 20px;
  color: #666666;
}
section.our-mission .details{
  position: relative;
}
section.our-mission ul li::before {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #4BB6FA;
  border-radius: 50px;
  position: absolute;
  left: 0;
  margin-top: 10px;
}

section.our-purpose img {
  height: 304px;
  width: 86%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 0 0 13px #EDF8FF;
}

.our-partners {
  background-image: url(../img/about-us/partnerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  height: 995px;
}
.our-partners .container {
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
}
/* Styling for the video play button */
.videoBtn {
  width: 70px;
  height: 70px;
  border: 2px solid #4BB6FA;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.videoBtn::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 20px solid #4BB6FA;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-radius: 5px;
  position: absolute;
  left: 40%;
}

.videoshowcase{
  font-size: 20px;
}

.ourExperience .card-img-top {
  background-color: #F9F9F9;
  border-radius: 20px;
}
.ourExperience .card-img-top img{
  height: 100px;
  width: 100px;
}
.affliateImg {
  background: #F9F9F9;
  border-radius: 20px;
}

/* Service page css start */
h2.serviceTitle {
  font-size: 24px;
}
p.serviceDetails {
  font-size: 18px;
}

.serviceAccortion .accordion-item {
  border-radius: 30px !important;
  box-shadow: 0px 0px 24px 0px rgba(224, 224, 224, 1);
}
.serviceAccortion .accordion-flush>.accordion-item>.accordion-header .accordion-button {
  border-radius: 30px 30px 0 0;
  background: none;
  padding: 35px;
}
.serviceAccortion .accordion-item {
  margin: 0 0 30px 0;
}

.serviceAccortion .accordion-button::after{
  background-image: url(../img/services/Arrow.svg) !important;
  transition: transform 0.5s ease;
  height: 30px;
  width: 30px;
  background-size: cover;
}
.serviceAccortion .accordion-button:not(.collapsed)::after {
  background-image: url(../img/services/arrow-down.png) !important;
  transform: rotate(0deg);
  transition: 0.5s ease;
  background-size: cover;
  height: 30px;
  width: 30px;
}
.serviceAccortion .two-column-list {
  columns: 2; /* Number of columns */
  -webkit-columns: 2; /* Number of columns for Safari and Chrome */
  -moz-columns: 2; /* Number of columns for Firefox */
  column-gap: 40px; /* Space between columns */
}

.serviceAccortion .two-column-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 20px;
}

.serviceAccortion .accordion-body {
  margin-left: 7.5em;
}
.serviceAccortion .accordion-body img {
  transform: rotate(316deg);
}
@media screen and (max-width: 768px){
  .serviceAccortion .accordion-body {
    margin-left: 0px !important;
}

}

/* Service sub page css start */
.service-title h2{
  font-size: 46px;
}
.service-details p{
  font-size: 18px;
}
.service-details ul li{
    color:#666666;
    font-family: var(--default-font) !important;
    font-size: 18px;
}
.serviceFeatureSec .card {
  background: #FAFAFA;
  border-radius: 20px;
}
.serviceFeatureSec img {
  border-radius: 20px 0 0 20px;
}
.serviceFeatureSec .card-body {
  padding: 30px;
}
.managmentDetail p {
  font-size: 16px;
}
.managmentImg img {
  border-radius: 20px;
}
.service-subImg img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.auditTitle h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
.auditAssurance {
  padding: 30px;
  background: #fafafa;
  border-radius: 15px;
}
.auditAssurance .list-group-item, .auditAssurance .list-group-item a {
  padding: 15px 0;
  color: #666666;
}
.auditAssurance .list-group .list-group-item a.active {
  color: #4BB6FA;
}
.workingHour{
  padding: 30px;
  background: #fafafa;
  border-radius: 15px;
}
.workingHour li {
  background: #F2F2F2;
  padding: 13px;
  margin: 15px 0;
  border-radius: 15px;
}
.ourTeamBottomText .card {
  border: 10px solid #ffffff;
  background-color: #FBB24B;
  border-radius: 101px;
  padding: 0 40px;
}
.rightjoinSec {
  position: relative;
}
.ourTeamBottomText .card {
  position: absolute;
  right: 0;
  width: 61%;
}

.growTogather {
  background-image: url(../img/career/careerbg.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 550px;
  display: flex;
  align-items: center;
  margin-top: 5em;
  width: 100%;
  background-position: center;
}
.internshipSec {
  background: #fbb24bc9;
  padding: 15px;
  height: 100px;
  border-radius: 15px;
}
.internshipSec .card {
  height: 70px;
  display: flex;
  justify-content: center;
}
.internshipSec .card {
  height: 70px;
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-weight: 600;
}
.positionCardImg img {
  width: 100%;
}
.positionCard .card {
  border-radius: 15px;
  box-shadow: 0px 0px 24px 0px rgba(224, 224, 224, 1);
}

.howtoplayList {
  display: flex;
  align-items: center;
  gap: 50px;
}
.listHead {
  display: flex;
  align-items: center;
  gap: 20px;
}
.listicon {
  border: 1px solid #FFEFD9;
  background: #FFFBF5;
  padding: 20px;
  border-radius: 50px;
}
.listText p {
  border: 1px solid #FFEFD9;
  padding: 20px;
  border-radius: 50px;
  font-size: 16px;
}

/*road map css start*/
section.roadMapSec {
    padding: 0;
    margin: 7em 0 0 0;
}
.our-values .overlay:before {
    content: "";
    height: 91%;
    width: 11px;
    border-radius: 50px;
    background-color: #4bb6fa;
    position: absolute;
    bottom: 0;
    right: 19px;
    opacity: 1;
    transform: translateY(0);
    transition: all .3s ease-out;
}
.our-values .overlay:hover:before {
    visibility: visible;
    opacity: 1;
    transform: translateY(100%);
    position: absolute;
    right: 18px;
    bottom: 39px;
    height: 13px;
    width: 79%;
}
.ourExperience p{
    text-align: center !important;
}
@media screen and (max-width: 768px) {
    
    .contactFormBg{
        padding:2px !important;
    }
    
    .glass-card{
        background:rgb(21 19 19 / 78%) !important;
    }

    .topHeader .contactNo, .topHeader p {
    text-align: center !important;
}
.topHeader {
    margin-bottom: 1em;
}
.is-sticky .mobile-nav-toggle {
    color: #000;
}

  .howtoplayList {
    display: block;
  }
  .listText p {
   margin-top: 20px;
  }
  .numberWraper {
    background: #ff000000;
    height: 382px;
    position: absolute;
    top: 0;
    z-index: 1111;
    left: 0;
    width: 100%;
}
.sliderTitle {
    margin-top: 3em;
}
section#our-services {
    background: rgb(251, 177, 74);
    background: linear-gradient(90deg, rgba(251, 177, 74, 1) 35%, rgb(246 190 112) 100%);
}
.vectorDesign img {
    margin-top: 21px !important;
    z-index: 1;
}
.title h2 {
    font-size: 34px;
}
.aboutDetails .title h2 {
    font-size: 34px;
    margin-top: 14px;
}
section.aboutDetails {
    padding-bottom: 2em;
}
    .our-vision img, .our-mission img, .our-purpose img {
        width: 92% !important;
        margin-bottom: 30px;
        margin-right: 15px;
        margin-left: 15px;
    }

.footerContact{
 padding: 2em !important;
}
#mainfooter{
 padding-top: 10em !important;
}
.footer-links {
    padding-left: 20px !important;
}
nav#navmenu a.active:after {
    border-bottom: none !important;
    background: none;
}

}
.contactInfo {
  border: 1px solid #FFEFD9;
  border-radius: 20px;
  padding: 0 50px;
}
.contactInfoList img {
  background: #EDF8FF;
  padding: 20px;
  border-radius: 50px;
}

.contactFormBg {
  background: #FFFBF5;
  border-radius: 20px;
  padding: 66px;
}
.contactText p {
  font-size: 16px;
  font-weight: 300;
}
.contactInfoSec .two-column-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  column-gap: 20px;
}
section.contactInfoSec input[type=text], section.contactInfoSec input[type=email], section.contactInfoSec textarea {
  height: 50px;
  border: 1px solid #FFEFD9;
}
section.contactInfoSec textarea {
  height: 179px;
}
.formButton {
  background: #FBB24B;
  border: none;
  padding: 10px;
}

/* */

.me-2 {
    margin-right: .5rem !important;
    position: absolute !important;
    left: -37px;
    font-weight: 900;
}

ul.list-unstyled.two-column-list li a {
    position: relative;
}


.button-wrapper {
    display: flex;
    justify-content: center; /* centers the button horizontally */
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px 12px 20px;
    background-color: #FBB24B;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    font-size: 16px;
}

.read-more::after {
    content: '';
    display: block;
    transition: width 0.3s ease;
    width: 0px;
}

.read-more:hover {
    background: #FBB24B;
    padding-right: 36px; 
    color: #ffffff;
}
 .btn.read-more i {
      transition: transform 0.3s ease;
    }
.read-more:hover i {
   transform: translateX(4px) !important;
   padding-left:15px;
} 

.knowledgeHubSec{
    padding-top: 0px !important;
}

section.aboutDetails {
    padding-bottom: 0 !important;
}

.me-2::before {
    content: "";
    display: inline-block;
    width: 30px; /* Adjust size */
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 56 56' fill='none'%3E%3Cpath d='M29.6499 13.1507L44.4991 28L29.6499 42.8492' stroke='%234BB6FA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M28.0001 28H11.5009' stroke='%234BB6FA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px; /* Space between icon and text */
    vertical-align: middle;
        rotate: 326deg;
        position: absolute;
}

/* Cookie Popup Styling */
#cookiePopup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #ddd;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    z-index: 999;
}
.cookie-text {
   color: #333;
   font-size: 14px;
   max-width: 60%;
}

.cookie-text a {
  color: #0073e6;
  text-decoration: none;
  font-weight: bold;
}

.cookie-buttons {
   display: flex;
   align-items: center;
   gap: 15px;
}

.cookie-buttons a {
      color: #0073e6;
     text-decoration: none;
  font-size: 14px;
 }

.accept-btn {
  background: #0073e6;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.accept-btn:hover {
    background: #005bb5;
}
 
 .glass-card {
  background: rgb(37 35 35 / 63%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
   
.careerFormBtn{
    background:#FBB24B;
    color: #FFFFFF;
}
.careerFormBtn:hover{
    background:#FBB24B;
    color: #ffffff;
}

.text-justify{
    text-align:justify;
}




.internshipSec,.internshipSec .card {
  
  height: auto !important;

}

.internshipSec .card p{
    padding:5px;
    color:white;
}

p{
    text-align:justify !important;
}
.text-link{
    color:#0073e6 !important;
    
}


   section.our-mission img {
 
    width: 99% !important;
     box-shadow: none !important;
    
}

@media only screen and (max-width:767px){
    ul,ol{
        text-align:justify !important;
    }
}







