 
/* Fonts */
:root {
  --default-font: "Lato",  system-ui, -apple-system, "Segoe UI", Lato, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Poppins",  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: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111111; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #da1f26; /* 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: #212529;  /* The default color of the main navmenu links */
  --nav-hover-color: #da1f26; /* 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: #da1f26; /* 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: #11121B;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #353535;
  --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);
}

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);
}
  
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}
.scrolled .header { 
    padding: 5px 0;
}
.scrolled .header .logo img {
  max-height: 50px; 
}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 5px;
}

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

.header .logo span {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 15px;
  padding: 12px 14px 12px 14px;
  margin: 0 15px 0 15px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 600;
  line-height: 100%;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
 
  .sos-icon {
    display: none;
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    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);
}

/*--------------------------------------------------------------
# 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 8px; 
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .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: 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: 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), 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: 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;
  }
}
.sos-icon .bi {
  font-size: 30px;
  margin: 0px 5px 0px 5px;
}
.row-cn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #11121B;
  padding: 10px 0px;
  box-sizing: border-box;
}
.cn-sc {
  margin: 0% 3%;
  width: auto;
}
.cn-sc a {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}
.cn-sc a:hover,
.cn-sc .cn-active {
  color: #da1f26;
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color:#cf2429;
  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-logo {
  width: 200px;
  margin-bottom: 15px;
}
.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.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 {
  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 30%);
  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: 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: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--background-color);
  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: var(--background-color);
  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-top: 35px;
  padding-bottom: 35px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

/*--------------------------------------------------------------
# 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 {
  --background-color: var(--alt-background-color);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.banner-bg {
  background: #1d1d1b;
  padding: 28px 0px 28px 0px;
}
.bn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.bn-row .bn-left {
  width: 30%;
  text-align: center;
}
.bn-row .bn-right {
  width: 30%;
  text-align: center;
}
.bn-row .logo-wt {
  width: 140px;
}

.bn-row h1 {
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 0px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;

}


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

.section-bg {
background-color: transparent;
  padding: 60px 0;
  position: relative;
}

.section-bg:before {
  content: "";
  background-color: var(--background-color);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.section-bg .container {
  position: relative;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 37px;
  font-weight: 800;
  position: relative;
  text-transform: uppercase;  
  margin-bottom: 20px;
}
.section-title .hd-red {
   color: #da1f26;
}
 
.section-title p {
  margin-bottom: 5px 0px;
  font-size: 15px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section { 
  width: 100%;
  min-height:100%; 
  padding: 0px 0;   
} 
.banner-section .banner-text {
  position: absolute;
  width: 100%;
  height: 750px;
  z-index: 2; 
  text-align: center;    
  padding: 45px 0px 30px 0px;
} 
/** For video height code start **/
.banner-section {
  width: 100%;
  overflow: hidden;  
}
.video-banner {
  width: 100%;
  height: 750px; 
  object-fit: cover;
  pointer-events: none;  
  background: #020202;
} 
/** For video height code End **/
.banner-section .bn-logo {
  width: 360px;
}
.banner-section .banner-ci {
  width: 250px;
}
.banner-section .banner-text h2 {
  font-size: 43px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 4px #000000e1;
  font-weight: 800;
  text-transform: uppercase;
  margin: 25px 0px 25px 0px;
  letter-spacing: 0.4px;
}
.banner-section .banner-text p {
  font-size: 37px;
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 4px #000000e1;
  font-weight: 700;
  text-transform: uppercase;  
  margin: 0px 0px 40px 0px;
  letter-spacing: 0.4px;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 60px 0px !important;
}
 
.bg-1 {
  background-image: url("../img/bg-1.jpg");
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}
.bg-1::before {
  content: "";
  background-color: var(--background-color);
}
.about .content h1 {
  font-weight: 800;
  font-size: 37px;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  color: #da1f26;
}

.about .content p {
  margin-bottom: 15px;
  font-size: 15px;
  text-align: justify;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: var(--default-color);
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.about .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.about .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

.about .icon-box:hover h4 a {
  color: var(--accent-color);
}

/** youtube video iframe css start **/
.video-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .video-container::after {
        padding-top: 56.25%;
        display: block;
        content: '';
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
/** youtube video iframe css end **/
.about-con {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.video-top {
  margin-top: 60px;
}
/*--------------------------------------------------------------
# Awards Categories 
--------------------------------------------------------------*/
.bg-2 {
  background-image: url("../img/bg-2.jpg");
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}
.categories .awd {
  width: 100%;
  text-align: center;
  margin: 0;
}
.categories .awd a {
  font-size: 18px;
  font-weight: 800;
  display: block;
  color: var(--heading-color);
  letter-spacing: 0.4px;
}
.categories .awd-icon {
  width: 100%;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}
.categories .sh-box {
  padding: 18% 0 10% 0;
}
.categories .button {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-size: 15px;
  padding: 13px 25px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  width: 200px;
  margin: 6% auto 3% auto;
  text-align: center;
}
.categories .button:hover { 
  color: var(--accent-color);
  background: #fff; 
  border: 2px solid var(--accent-color);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.bg-3 {
  background-image: url("../img/bg-3.jpg");
  background-position: center;
  background-repeat: repeat-y;
  background-attachment: fixed;
}
.services .service-item { 
  padding: 5px 0px;
  transition: 0.3s;
}
.services .section-title {
  padding-bottom: 5px;
}

.services .service-item h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 25px;
}
.services .service-item h6 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 22px;
  margin-top: 20px;
}
.services .service-item .txt {
  line-height: 24px;
  font-size: 15px;
  margin: 0 0 7px 0;
  letter-spacing: 0.4px;
}
.services .service-item .service-ul {
  margin: 0;
  padding-left: 15px;
}
.services .service-item .service-ul li {
  margin-bottom: 8px; 
  font-size: 15px;   
  letter-spacing: 0.4px;  
  list-style-type: disc;
}

.services .service-item .red {
  color: #da1f26;
  font-weight: 600;
}
 
.services .service-item  .about-btn {
color: var(--contrast-color);
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-size: 16px;
  padding: 13px 25px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  width: 220px;
  margin: 6% auto 3% auto;
  text-align: center;
}

.services .service-item .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.services .service-item  .about-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .service-item .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.deadline-table {
  width:100%;
  max-width: 400px;
  border-collapse: collapse;
}

.deadline-table td {
  padding: 5px 5px;
  border: none;
  font-size: 15px;
  font-weight: 400;
}

 

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}


.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 20px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}
 

/*--------------------------------------------------------------
# partners Section
--------------------------------------------------------------*/
 .partners p {
  font-size: 15px;
  line-height: 24px;
}
 
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: #00000042;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.team .team-member .member-img {
  position: relative;
  overflow: hidden;
}
 
.team .team-member .member-info {
  padding: 8px 7px;
}

.team .team-member .member-info h4 {
  font-weight: 800;
  margin-bottom: 2px;
  font-size: 17px;
  color: #da1f26;
}

.team .team-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #fff;  
  letter-spacing: 0.4px;
}
.team .team-member .member-info .designation {
  font-style: italic;
}
.team .team-member .member-info .company { 
  font-weight: 800;
}

.team .button {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-size: 15px;
  padding: 13px 25px;
  border-radius: 5px;
  transition: 0.3s;
  font-weight: 800;
  text-transform: uppercase;
  display: block;
  width: 200px;
  margin: 2% auto 0% auto;
  text-align: center;
}
.team .button:hover { 
  color: var(--accent-color);
  background: #fff; 
  border: 2px solid var(--accent-color);
}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
 .faq .faq-container .faq-item {
  position: relative;
  padding: 17px 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  background: #fff;
  transition: border-color 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.4s ease;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  padding-top: 10px;
  font-size: 15px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  border-color:#e6e6e6;
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  max-height: 500px; /* enough to show content */
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

.faq p {
  font-size: 15px;
}

.faq-container {
  margin-top: 25px;
}



/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
 .tabs-col {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
 
.tab-scroll .nav-tabs {
  border-bottom: 1px solid #888888;
}

.tabs .nav-tabs li {
  margin: 0 0 -1px 0;
  padding: 0;
  width: auto;
}
.tabs .nav-link {
  color: #DA1F26;
  border-bottom: 1px solid #888888;  
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  padding: 15px 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
}


.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #DA1F26;
  text-transform: uppercase;
}

.tabs .nav-link:hover {
   background: #fff;
  color: #DA1F26; 
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  border-left: 1px solid #888888;
  border-bottom: 1px solid #fff;
}

.tabs .nav-link.active {
  background: #fff;
  color: #DA1F26;
 
  border-top: 1px solid #888888;
  border-right: 1px solid #888888;
  border-left: 1px solid #888888;
}

.tabs .nav-link.active h4 {
   color: #DA1F26;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 11px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

.responsive-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
 
    .responsive-table td {
      border-bottom: 1px solid #c8c8c8;
      padding: 12px;
      text-align: left;
      color: #da1f26;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .responsive-table th {
      border: 1px solid #e9e9e9;
      font-weight: 600;  
      padding: 12px;
      text-align: left;
      letter-spacing: 0.3px;
      background-color: #ececec; 
      color: #151515;
        font-size: 16px;
    }

    @media screen and (max-width: 768px) {
      
      .responsive-table td { 
        padding:10px 4px; 
        font-size: 11px; 
        line-height: 15px;    
        vertical-align: top;
      }
      .responsive-table th {         
        padding:10px 4px; 
        font-size: 12px; 
        line-height: 15px;    
        vertical-align: top;
      }
      .responsive-table { 
        margin-top: 15px;
      }
      .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 15px;
      }
      .faq .faq-container .faq-item { 
          padding: 10px 7px;
      }
      .faq .faq-container .faq-item .faq-toggle { 
        top: 15px;
        right: 10px;
      }

    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color); 
  padding: 0px 0 5px 0;
}
 

.contact .info-item h3 {
  color: #282828;
  font-size: 25px;
  font-weight: 800;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 20;
  font-size: 17px;
  text-align: center;
  color: #282828;
}
.contact .info-item .chat-img {
  width: 100%;
  max-width: 199px;
  margin-top: 8%;
}
 
     /* Overlay */
    .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; 
      height: 100%;
      background: rgba(255, 255, 255, 0.1);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      margin: 0px;
    }
    /* Popup box */
    .popup-content { 
      padding: 0px;
      border-radius: 10px;
      text-align: right;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      position: relative;
      max-width: 850px;
      width: 90%;
      background-image: url('../img/popup-bg.jpg'); /* Replace with your image URL */
      background-size: cover;        /* Scale image to cover entire div */
      background-repeat: no-repeat;  /* Prevent repeating */
      background-position: center;   /* Center the image */ 
    }
    /* Close icon (×) */
    .popup-close-icon {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      font-weight: bold;
      color: #ffffff;
      cursor: pointer;
    }
    .popup-close-icon:hover {
      color: #da1f26;
    }
    .popup-close {
      margin-top: 20px;
      padding: 10px 20px;
      background: #007BFF;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .popup-close:hover {
      background: #0056b3;
    }
    .popup-close-btn {
      border: none;
      background: none;
      color: #e6e6e6;
      margin: 1.5% 4% 2% 0%;
      font-size: 17px;
      text-transform: uppercase;
    }
    .row-pop {
      display: flex;
      justify-content: flex-start;
      width: 100%;
      padding: 4% 4% 0% 4%;
      border-bottom: 1px solid #8a8a8a;
    }
    .row-pop .col-1 {
      width: 35%;
      text-align: left;  
      padding-right: 15px;
    }
    .row-pop .col-2 {
      width: 65%;
      text-align: left;
      padding: 15px;
      color: #11121B;
      background: #fff;
      overflow-y: scroll;
      height: 515px;
      scrollbar-width: thin;
    }
    .row-pop .col-2 p {
     font-size: 15px;  
     color: #11121B;  
     margin-bottom: 10px;
    }
    .row-pop .col-2 h4 {
      font-weight: 800; 
      font-size: 25px;
      color: #da1f26;
      margin-bottom: 5px;
    }

.row-pop .col-2 span {
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #11121B;  
  letter-spacing: 0.4px;  
}
.row-pop .col-2 .designation {
  font-style: italic;
}
.row-pop .col-2 .company { 
  font-weight: 800;
  margin-bottom: 15px;
}

    /* Clickable div */
    .clickable-div {  
      cursor: pointer; 
    }

    .clickable-div:hover {
      background: #000000;
    } 


@media only screen and (max-width: 800px) {
.tab-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; 
  padding-bottom: 8px;
}
.tab-scroll .nav-tabs {
  flex-wrap: nowrap; 
  padding-left: 17px;
}
.tabs .nav-link h4 {
  font-size: 17px;
}
}

@media only screen and (max-width: 650px) {
.banner-bg {
  background: #1d1d1b;
  padding: 28px 0px 28px 0px;
} 
.bn-row .bn-left {
  width: 100%;
  text-align: left;
}
.bn-row .bn-right {
  display: none;
} 
.bn-row h1 { 
  font-size: 27px; 
  text-align: left;
  font-weight: 700;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.banner-section .banner-text { 
  height: 410px; 
  padding: 25px 0px 20px 0px;
}
.video-banner { 
  height: 410px; 
}
.banner-section .bn-logo {
  width: 190px;
}
.banner-section .banner-text h2 {
    font-size: 25px;
    margin: 10px 0px 15px 0px;
}
.banner-section .banner-text p {
  font-size: 16px;
  margin: 0px 0px 20px 0px;
}
.banner-section .banner-ci {
  width: 150px;
}

}

@media only screen and (max-width: 512px) {
.video-top {
  margin-top: 30px;
}
.section-title h2 {
  font-size: 29px; 
  margin-bottom: 15px;
}  
.header { 
  padding: 7px 0;
}
.header .logo img {
  max-height: 50px;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
    padding: 10px 12px;
    font-size: 14px;
  }
.about .content p {
  margin-bottom: 8px;
  font-size: 13px;
}
.about {
  padding: 35px 0px !important;
}
.about .content h1 { 
  font-size: 30px;
  margin-bottom: 15px; ;
}
.services .service-item h6 {
  font-weight: 700; 
  font-size: 20px; 
}
.services .service-item .txt {
  line-height: 21px;
  font-size: 13px; 
}
.deadline-table td {
  padding: 5px 5px; 
  font-size: 13px; 
} 
.services .service-item .service-ul li { 
  font-size: 13px; 
}
.services .service-item .about-btn {
  font-size: 14px;
}
.section-title p { 
  font-size: 13px;
}
.categories .awd-icon { 
  height: 65px; 
}
.categories .awd a {
  font-size: 15px; 
  margin-bottom: 35px;
}
.categories .button { 
  font-size: 14px;
  padding: 11px 12px; 
  width: 180px;
  margin: 6% auto 3% auto; 
}
.team .team-member .member-info h4 { 
  font-size: 15px;
}
.team .team-member .member-info span { 
  font-size: 11px;
}
.team .button {
    font-size: 14px;
    padding: 11px 12px;
    width: 180px;
}
.partners p {
  font-size: 13px;
  line-height: 21px;
}
.section-title { 
  padding-bottom: 20px;
}
.contact .info-item h3 { 
  font-size: 23px; 
}
.contact .info-item p { 
  font-size: 15px;
}
.footer { 
  font-size: 11px; 
}
.footer-logo {
  width: 175px; 
}
.cn-sc a {
  font-size: 20px; 
}
.cn-sc {
  margin: 0% 4%; 
}
.row-pop .col-2 h4 {
  font-size: 17px;
  margin-bottom: 2px;
}

.row-pop .col-2 span {
  font-size: 12px; 
  line-height: 15px;
}

.row-pop .col-2 .company {
  margin-bottom: 8px;
}
.row-pop .col-2 p {
  font-size: 13px;
  margin-bottom: 10px;
}
.row-pop .col-1 {
  width: 30%;
  text-align: left;
  padding-right: 8px;
}
.row-pop .col-2 {
  width: 70%;
  padding: 9px;  
  height: 450px;
}
.popup-close-icon {
  top: 2px;
  right: 15px;
  font-size: 24px;    
  color: #515151;

}
.popup-content {
  width: 99%;
}
 .faq p {
  font-size: 13px;
}

}