
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

/* 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 */
  --background-black: #020500; /* Background color black BG */
  --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #222222; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f6d44c; /* 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: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #f6d44c; /* 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: #555555; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e4c204; /* 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: #f9fcf9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #fde8e7;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #fde8e7;
}

/* 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);

  font-family: "Raleway", serif;
  font-optical-sizing: auto; 
  font-style: normal;
}

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: "Raleway", serif;
}
 
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-black);
}
 
 

.header .branding {
  min-height: 60px;
  padding: 4px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 95px;
  position: absolute;
  margin: 10px 5px -27px 0;
  background: #020500;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
}


.scrolled  .header .branding {
  min-height: 53px; 
  box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.4);
}
.scrolled .header .navmenu a, 
.scrolled .header .navmenu a:focus { 
  padding: 11px 20px;
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.scrolled .header .logo img {
  max-height: 75px;
  position: absolute;
  margin: 0px 5px -30px 0;
  background: #020500;
  padding: 8px 10px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(255, 255, 255, 0.5);
}
.mobile-enter-now {
  display: none !important;
}

@media (max-width: 650px) {
  .header .branding {
    min-height: 50px; 
  }
.header .logo img {
  max-height: 65px;
  margin: 0px 5px -27px 0;
}
.scrolled .header .logo img {
  max-height: 55px;
  margin: 0px 5px -17px 0;
}
.scrolled .header .branding {
  min-height: 45px;
}

}

/*--------------------------------------------------------------
# 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: var(--nav-color);
    padding: 18px 20px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    text-transform: uppercase;
    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 .enter-now a {
    background: #f6d44c;
    color: #000016;
    padding: 5px 10px !important;
    margin: 0 0 0 10px;
    border-radius: 0px;
  }
  .navmenu  .enter-now a:hover {
    background: #ebb103;  
    color: #000016;
  }


  .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: 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: #f6d44c !important;
    font-size: 30px;
    line-height: 0;
    margin-right: 5px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 50px 0px 20px 0px;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    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-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);
  }

  .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: 5px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(0, 0, 0);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
  .mobile-nav-active .navmenu   .mobile-enter-now {
    top: 7px;
  }
  .mobile-enter-now  {
    display: block !important;
    position: absolute !important;
    background: #f6d44c !important;
    color: #000016 !important;
    padding: 6px 12px !important;
    margin: 0 !important;
    border-radius: 0;
    font-size: 14px !important;
    right: 60px;
    letter-spacing: 0.5px;
    font-weight: 500 !important;
  }
  .mobile-enter-now:hover {
    background: #ebb103;  
  }


}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 0px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 15px;
}

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

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

.footer .footer-about p {
  font-size: 14px;
}

.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: 16px;
  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: 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 {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 13px 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 20%);
  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-contact p a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

/*--------------------------------------------------------------
# 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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}
.bg-black {
  background-color: var(--background-black);
  color: var(--nav-color) !important;
}
.bg-black h2, 
.bg-black p {
  color: #fff;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 35px;
  margin-bottom: 10px;
  padding-bottom: 0px;
  position: relative;
  text-transform: uppercase;
  line-height: 41px;  
  font-weight: 400;
}
.partners-section .section-title h2 {
  font-size: 32px; 
}
.section-title p {
  margin-bottom: 10px;
  font-size: 16px;
}

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


.banner-section {
  width: 100%;
}
.banner-social-links {
  position: absolute;
  right: 0;
  padding: 10px;
  z-index: 2;
}
.banner-social-links a i {
  font-size: 16px;
}
.banner-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
  font-size: 16px;
  color:  #bbbbbb;
  margin-bottom: 5px;
  transition: 0.3s;
  background-color: #00000094;
}
.banner-social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.banner-logo-section {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
  z-index: 1;
}
.banner-logo-section .banner-logo {
  max-width: 205px;
  margin-top: 115px;
} 

.banner-img {
  width: 100%;
}
.desktop-banner {
  display: block; 
  margin: 0 auto;
}
.mob-banner {
  display: none;
}
@media (max-width: 575px) {
  .desktop-banner {
    display: none;
  }
  .mob-banner {
    display: block;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-intro {
  padding-left: 2%;
}
.about .content h1 {  
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 0px;
}
.about .content h3 {
  font-size: 17px;
  line-height: 27px;
  font-weight: 500;
}
.about .content p {
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 13px;
  text-align: justify;
} 
.about .content p span {
  color: #f6d44c;
  font-weight: 600;
} 
.about  .about-img {
  width: 100%;
  border-radius: 20px;
}

  

 
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
 

.portfolio .portfolio-content {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.portfolio .portfolio-content {
  padding: 7px 3px;
  position: relative;  
  overflow: hidden; 
  text-align: center;
}

.pf-zoom:hover .portfolio-content {
  transform: scale(1.1);
}
.portfolio-content {
  transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
}
.portfolio .portfolio-content .portfolio-info {
  opacity: 1;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 19px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 25px;
  margin: 39% 0 0 0;
  letter-spacing: 0.5px;  
  transform: translate(0%, -50%);
}

.portfolio .portfolio-content a .portfolio-info h4  {
  color: #fff;
}

.portfolio .portfolio-content a:hover .portfolio-info h4 {
  color: var(--accent-color);
}
.portfolio .portfolio-content  a:hover .portfolio-info { 
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
}
.pf-margin {
  margin-bottom: 6px;
}
.cr-left-1 {
  margin-left: 12.5%;
}
.cr-left-2 {
  margin-left: 25%;
}

 /** Award tab section start **/
 .tabs-container {
  max-width: 100%;
  margin: 0 auto;  
}
.tabs {  
  text-align: center;
  display: block;
  margin-bottom: 25px;
}
.tab-button {
  padding: 11px 5px;
  text-align: center;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  text-overflow: ellipsis;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .7px;
  margin: 0px 6px;
  border: 1px solid #e8e7e7;
  border-radius: 35px;
  line-height: initial;
  text-transform: uppercase;
  width: 145px;
  background-color: #e9e9ed;
  color: var(--heading-color);
}
.tab-button.active,
.tab-button:hover { 
  background-color: #f6d44c;
  border: 1px solid #f6d44c;
} 
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.tabs-container .ex-map {
  width: 75%;
  margin: 0 auto;
  display: block;
}
 /** Award tab section End **/


/*--------------------------------------------------------------
# Award Services Section
--------------------------------------------------------------*/
.award-services {
  padding: 40px 0;
}

.award-services .award-item {
  padding:0;
  transition: all ease-in-out 0.4s;
  height: 100%;
  width: 100%;
  text-align: center; 
  border-radius: 0px;
}
.award-services .award-item .award-info {
  opacity: 1;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 0px;
}
.award-services .award-item .award-info h4 {
  font-size: 19px;
  text-transform: uppercase;
  line-height: 25px;
  margin: 37% 0 0 0;
  letter-spacing: 0.3px;
  transform: translate(0%, -50%);
  font-weight: 400;
  color: #fff;
}
.award-services .award-item img {
  width: 100%;
  max-width: 100%;  
  border-radius: 0px;
}

.award-services .award-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.award-services .award-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.award-services .award-item:hover {
  transform: translateY(-10px);
}

.award-services .award-item:hover h4 a {
  color: var(--accent-color);
}
.award-services .award-item a:hover h4 {
  color: #f9b900;
}
.award-services .cli-margin {
  width: 33.333%;
}
.award-services .margin-left-pt {
  margin-left: 12.5%;
}

.Enter-now-button {
  background: #fff;
  padding: 7px 1px;
  border-radius: 0;
  margin: 20px auto 0 auto;
  text-align: center;
  display: block;
  width: 135px;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 2px solid #f9b900;
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 500;
}
.Enter-now-button:hover {
  background: #ebb103;
  color: #fff; 
}

@media only screen and (max-width: 768px) {
  .award-services .award-item h4 {
    font-weight: 600;
    margin-top: 7px;
    margin-bottom: 3px;
    font-size: 14px;
  }
  .award-services .award-item {
    padding: 0;  
  }
  .award-services .cli-margin {
    width: 100%;
    padding: 0 7px;
    margin-top: 15px;
  }
  .award-services .margin-left-pt {
      margin-left: 0%;
  }
  .award-services .award-item .award-info h4 {
    font-size: 14px;
    line-height: 20px;
    margin: 38% 0 0 0;
    font-weight: 500;
    transform: translate(0%, -50%);
  }
}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}
  
.service-item {
  padding:0; 
  width: 100%;
  text-align: center; 
}
 
.service-item h4 {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-top: 80px;
  padding: 0px;
}
.featured-services .award-intro {
  width: auto;
  margin: 0px 2.8% 0 0;
  padding: 0;
  min-width: 106px;
  max-width: 157px;
}
.featured-services .award-trophy {
  width: 20%;
}
.featured-services .award-trophy .award-tro {
  margin-top: -65px;
}
.award-bg {
  background-image: url(https://awardsportalonline.com/GAM-Award/assets/img/award-bg-desktop.jpg);
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 408px;
  color: #fff;
}

 

.carousel-item {
  display: flex;
  justify-content: center;
}
.team-member {
  text-align: center;
  padding: 15px;
}
.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}



/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color); 
  text-align: center;
  margin-bottom: 15px;  
  width: 100%;
  position: relative;
}

.team .member .know-more {
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
  z-index: 1;
}
.team .member a .know-more .button { 
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
} 
.team .member a:hover .know-more .button {
  margin-top: 83px !important;
  background: #f9b900;
  padding: 6px 1px;
  border-radius: 0;
  margin: 19px auto 0 auto;
  text-align: center;
  display: block;
  width: 100px;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: 1px solid #f9b900;
  color: var(--heading-color);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 11px;
  line-height: 15px;
  opacity: 1;
} 


.team .member img {
 max-width: 100%;
 margin: 0px 0px 10px 0px;
 border-radius: 4px;
}

.team .member .member-content {
  padding: 0 1px 5px 1px;
}

.team .member h4 {
  font-weight:700;
  margin-bottom: 2px;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 20px;
}

.team .member span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 18px;
  letter-spacing: 0px;
  font-weight: 500;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


@media (max-width: 575px) {
  .team .member { 
    margin-bottom: 20px; 
  }
  .team .member img {
    margin: 0px 0px 5px 0px;
  }
  
  .team .member .member-content {
    padding: 0 2px 5px 2px;
  }
  .team .member h4 { 
    font-size: 12px;
    line-height: 15px;
  }
  
}

/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
.partners .partners-section {
  background-color: var(--surface-color); 
  text-align: center;
  margin-bottom: 20px;  
  width: 100%;
}

.partners .partners-section img {
  max-width: 225px;
 margin: 15px 0px 15px 0px;
}

.partners .partners-section .snowball {
  height: 105px;
  margin: 0px 0px 15px 0px;
}
.partners .partners-section .partners-content {
  padding: 0 5px 10px 5px;
}

.partners .partners-section h4 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 15px;
}

.partners .partners-section span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.partners .partners-section p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.partners .partners-section a {
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  color: #f6d44c;
}

@media (max-width: 575px) { 
  
  .partners .partners-section  .partners-content {
    padding: 0 2px 5px 2px;
  }
  .partners .partners-section  h4 { 
    font-size: 15px;
  }

}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}


/** CATEGORIES  page section start **/
.banner-bottom {
margin-bottom: 20px;
}
.category-menu-s {
  margin: 0px;
  padding:7px 0px 5px 0px !important;
}
.fc-heading {
  margin-top: 18%;
  color: #fff;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
  transform: translate(0%, -50%);
}
.category-tab { 
  text-align: left; 
  padding-bottom: 5px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap
}
.category-tab::-webkit-scrollbar {
  height: 2px
}
.category-tab::-webkit-scrollbar-thumb {
  background: #797979;
  height: 5px;
  border-radius: 0
}
.category-tab a:link,
.category-tab a:visited {
  width: auto;
  padding: 11px 12px;
  text-align: center;
  border: 0;
  cursor: pointer; 
  text-overflow: ellipsis;
  font-size: 15px; 
  margin-right: 0;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  border-radius: 0px;
  line-height: initial;
  display: inline-block;
}
.category-tab a:hover,
.category-tab a:active {
  border: 1px solid #f6d44c;
  background: #f6d44c;
  color: #000016;
}


.category-content h1,
.category-content h2 {
  margin-bottom: 10px;
  margin-top: 0px;  
  text-align: left;
  font-size: 29px;
  line-height: 33px;
  text-transform: uppercase; 
}

.category-content p {
  font-size: 15px !important;
  line-height: 22px !important;
  letter-spacing: 0px !important;
  margin-bottom: 10px !important;
  text-align: left !important;
}
.category-content .note-p {
  font-size: 14px !important;
  line-height: 15px !important;
  text-align: left !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
}
 
.category-content .category-table {
  width: 100%;
  overflow-x: auto;  
  margin-top: 14px;
}
.category-content .category-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}
.category-content .category-table th, td {
  border: 1px solid #00000059;
  padding: 7px 10px;
  text-align: left;
  font-size: 14px;
}
.category-content .category-table th {
   background-color: #000000;
  color: #ffffff;  
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
} 
.category-content .category-table  td:first-child {
  font-weight: 600;
}
.ju-gradient {
  margin-top: -50px;
  margin-bottom: 1px;
  opacity: 1;
  z-index: 10;
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%, white 100%);
  height: 55px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: end;
}
.clamp-div { 
  height: 620px;
  overflow: hidden;
  transition: height .5s ease-in-out
}

.clamp-div.show {
  height: auto;
  transition: height .5s ease-in-out
}

@media screen and (max-width: 600px) {
  .category-content .category-table table {
      font-size: 14px;
  }
  .category-content .category-table th, td {
      padding: 8px;
  }
}

/** CATEGORIES  page section End **/

.desktop-img {display: block; margin-top: 2%;}
.mobile-img {display: none;}

@media (max-width: 728px) {
.desktop-img {display: none;}
.mobile-img {display: block;}

.cr-left-1 {
  margin-left: 0%;
}
.cr-left-2 {
  margin-left: 0%;
}
.mob-left {
  margin-left: 25%;
}
.featured-services .award-intro {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.featured-services .award-trophy {
  width: 100%;
}
.award-bg {
  background-image: url(https://awardsportalonline.com/GAM-Award/assets/img/award-bg-mobile.jpg);
  height: 100%;  
  height: auto;
  padding-bottom: 0 !important;
}

.service-item h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin: 14px 0px;
}
.featured-services .award-trophy .award-tro {
  margin-top: 0;
  width: 65%;
}
.award-mob-top {
  margin-top: 20px !important;
}

}

@media (max-width: 575px) {
  .section-title p {
    margin-bottom: 10px;
    font-size: 15px;
  }
  .award-services .section-title {
    padding-bottom: 12px;
  }
  section, .section { 
    padding: 30px 0;
  }
  .partners-section .section-title h2,
  .section-title h2 {
    font-size: 23px; 
    line-height: 29px;
    margin-bottom: 10px;
  }
 
  .about .about-intro {
    padding-left:auto;
    margin-top: 0px;
    text-align: center;
  }
  .about .content h1 { 
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
}
  .about .content p {
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 3px;
  }
  .about .about-img { 
    display: none;
  }
  .tab-button {
    padding: 8px 2px;
    font-size: 13px;
    letter-spacing: .7px;
    margin: 0px 3px;
    width: 115px;
    font-weight: 500;
  }
  .pf-margin {
    margin-bottom: 8px;
  }
  .tabs { 
    margin-bottom: 15px;
  }
  .portfolio .portfolio-content {
    padding: 7px 1px;
  }
  .portfolio .portfolio-content .portfolio-info h4 {
    font-size: 12px;
    line-height: 18px;
    margin: 34% 0 0 0;
    font-weight: 500;
    letter-spacing: 0.6px;
    transform: translate(0%, -50%);
  }
  .footer .footer-top {
    padding-top: 35px;
  }
  .footer .footer-about .logo span { 
    font-size: 20px;
  }
  .footer .footer-about .logo { 
    margin-bottom: 9px;
  }
  .footer { 
    font-size: 13px;
  }
  .footer h4 {
    font-size: 15px; 
  }
  .navmenu ul li a { 
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #f1f1f1;
    text-transform: uppercase;
  }
  .section-title { 
    padding-bottom: 2px; 
  }
  .partners .partners-section img {
    max-width: 180px; 
  }
  .partners .partners-section .snowball {
    height: 105px;
    margin: 10px 0px 15px 0px;
  }
  .portfolio .portfolio-content .portfolio-info { 
    padding: 15px 0px;
  }
  .Enter-now-button { 
    padding: 7px 1px;
    margin: 15px auto 0 auto;
    width: 130px;
    font-size: 15px;
  }
  .mobile-enter-now { 
    padding: 4px 9px !important;
    font-size: 13px !important;
    margin-top: 2px !important;
}
.footer-contact {
  padding: 0;
}
.banner-social-links {
  padding: 10px 7px
}
.banner-social-links a {
  width: 30px;
  height: 30px;
}
.banner-social-links a i {
  font-size: 13px;
}
.banner-logo-section .banner-logo {
  max-width: 95px;
  margin-top: 100px;
}
.about .content h3 {
  font-size: 15px;
  line-height: 21px; 
  margin-top: 5px;
  margin-bottom: 5px;
}
.category-content h1, .category-content h2 {
  margin-bottom: 5px; 
  font-size: 22px;
  line-height: 28px; 
}
.category-content p {
  font-size: 14px !important;
  line-height: 20px !important; 
  margin-bottom: 8px !important; 
}
.category-content .note-p {
  font-size: 13px !important;
  line-height: 14px !important;
  margin-bottom: 14px !important;
}
.category-content .category-table th { 
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.4px;
}
.category-content .category-table th, td { 
  padding: 4px 6px !important; 
  font-size: 13px;
}
.category-tab a:link, .category-tab a:visited { 
  padding: 9px 8px; 
  font-size: 14px; 
}
.category-tab { 
  gap: 7px;
}
.fc-heading { 
  font-size: 21px; 
}
.clamp-div {
  height: 700px;
}
.team .member span {
  font-size: 10px;
  line-height: 14px; 
  }
  .ju-gradient {
    margin-top: -60px;
    margin-bottom: 1px;
    opacity: 1;
    z-index: 10;
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%, white 100%);
    height: 65px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: end;
  }
} 
@media (max-width:412px) {
  .clamp-div {
    height: 760px;
  }
} 
@media (max-width: 390px) {
  .clamp-div {
    height: 739px;
  }
}
@media (max-width:360px) {
  .banner-logo-section .banner-logo {
    max-width: 88px;
    margin-top: 85px;
  }
  .clamp-div {
    height: 705px;
  }
  .Enter-now-button {
    padding: 6px 1px;  
    width: 110px; 
    font-size: 13px;
  }
}
@media (max-width:330px) {
  .clamp-div {
    height: 670px;
  }
}