
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Syne:wght@400..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&family=Syne:wght@400..800&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Outfit", sans-serif;
  --heading-font: "Syne", sans-serif;
  --nav-font: "Outfit", 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: #000000; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #B61C3E; /* 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: rgba(255, 255, 255, 0.55);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #000000; /* 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: #feb900; /* 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: #f4f7f6;
  --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);
  
}
p{
 font-size:14.6px;
 color: #000; 
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}*/

.header .logo img {
    /*max-height: 70px;*/
    margin-right: 22px;
    padding: 6px;
	max-width: 103px;
}

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

.header .logo span {
  font-size: 24px;
  padding-left: 1px;
  font-family: var(--heading-font);
  color: var(--color-primary);
}

/*.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}*/

/* Global Header on Scroll
------------------------------*/
/*.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --heading-color: #3c3c3c;
  --nav-color: #3c3c3c;
  --nav-hover-color: #3c3c3c;
}*/

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 5px 3px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 24px 10px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #212020;
    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: 5px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #fff!important;
  }

  .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: #B61C3E!important;
  }

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

/* Mobile Navigation */
@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;
    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);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .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);
    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:#000000;
  /*background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;*/
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}

/*.footer:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
}*/

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

.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 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height:22px;
 
}

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

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

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

.footer h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}



.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: 8px 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 .copyright {
  padding-top: 14px;
  padding-bottom: 14px;
  background-color:#202020;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #fff;
  font-size: 13px;
}

.footer .credits {
  margin-top: 8px;
  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: #a20439;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
  background-attachment: fixed;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align:left;
}

.page-title h3{
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align:left;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: left;
  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: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.hero-bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero-carousel/1.jpg') no-repeat center center;
  background-size: cover;
  /*animation: zoom 20s  infinite;*/
  z-index: 0;
}

/* Slider Zoom Effect */


/*@keyframes zoom {
  from {
    transform: scale(1, 1);
  }

  to {
    transform: scale(1.5, 1.5);
  }
}*/


@keyframes zoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.5);
  }
}

.hero .info {
  position: relative;
  inset: 0;
  z-index: 3;
  padding: 140px 0 60px 0;
}

@media (max-width: 768px),
(max-height: 480px) {
  .hero .info {
    padding: 100px 50px 60px 50px;
  }
}

.hero .info h2 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

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

.hero .info .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--accent-color);
}

.hero .info .btn-get-started:hover {
  background: var(--accent-color);
}

.hero .carousel {
  inset: 0;
  position: absolute;
  overflow: hidden;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition-duration: 0.4s;
}

.hero .carousel-item img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item::before {
  content: "";
  /*background-color: color-mix(in srgb, var(--background-color), transparent 30%);*/
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 9;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

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

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  position: relative;
}

.constructions .card-item .card-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.constructions .card-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--heading-color);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

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

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--heading-color);
}

.services .service-item:hover .icon:before {
  background: var(--accent-color);
}

.services .service-item:hover h3 {
  border-color: var(--accent-color);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services h3 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: #B61C3E;
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

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

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

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  color: var(--heading-color);
  padding: 15px 0;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link.active {
  background-color: var(--background-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

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

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

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

.features .tab-pane ul li {
  padding-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

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

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

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

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
  .p-top{
	margin-top:15px;
  }
  .card-custom{
	 margin-bottom:10px!important; 
	 height: auto!important;
  }
  
  .right-product-sec {
    height: auto!important; 
    position: relative;
}

.cat-mt{
	position:relative;
	margin-top:10px;
}

.prod-pic {
    margin-bottom: 15px;
}

.ldr-ht {
    min-height: auto !important;
}

.info-mt{
	margin-top:15px;
}

  
}


/*--------------------------------------------------------------
# Client Section
--------------------------------------------------------------*/
.client-item{
	position:relative;
	border:solid 1px #cccccc;
	padding:10px;
	text-align:center;
}


  
  .swiper-button-next,
.swiper-button-prev {
  color: #000;           
  display: flex;      
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  border:solid 1px #ccc;
  top: 63%;
  transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  background: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
  color: color-mix(in srgb, var(--default-color), transparent 80%);
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

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

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  padding: 28px 20px;
  border: solid 1px #ccc;
  background: #fff;
}

.stats-counter .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
    border: solid 1px #ccc;
    padding: 15px;
    border-radius: 50%;
    background-color: #fafafa;
}

.stats-counter .stats-item span {
  color:#000;
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
  color:#000;
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 .features-image {
  position: relative;
  min-height: 400px;
}

.alt-services-2 .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
}

.alt-services-2 .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
	  display: flex;
	  flex-direction: column;
	  border: solid 1px #e0dede;
	  padding: 40px 8px;
	  height: 100%;
}

.team .member .member-img {
    margin: 0 20px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: solid 1px #e0dede;
}
.team-mrg{
	margin-top:20px;
}

.mrt-20{
	margin-top:20px!important;
}

.team .row {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

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

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
}

.team .member .member-info span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

.iso-txt{
	transform: rotate(180deg);
	color:#fff;
	font-weight:600;
	line-height: 1;
    text-orientation: sideways;
    transform: rotate(180deg);
    white-space: nowrap;
    writing-mode: vertical-rl;
}
.iso-border{
	background-color:var(--accent-color);
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards h3 {
  font-size: 20px;
  font-weight: 700;
}

.features-cards p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.features-cards ul li i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

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

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

.service-details h4 {
  font-size: 20px;
  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);
}

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

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

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

.project-details .swiper-button-prev:after,
.project-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;
}

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

@media (max-width: 575px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.blog-posts .post-img img {
  transition: 0.5s;
}

.blog-posts .post-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog-posts .post-content {
  padding: 30px;
}

.blog-posts .post-title {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog-posts .meta i {
  font-size: 16px;
  color: var(--accent-color);
}

.blog-posts .meta span {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
  margin-top: 20px;
}

.blog-posts hr {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-bottom: 15px;
}

.blog-posts .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
  color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

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

.contact .php-email-form {
  background-color: var(--surface-color);
  padding: 30px;
}

.contact-adrs{
	position:relative;
	padding: 20px;
}

.contact-inform{
	position:relative;
	padding-bottom:10px;
	border-bottom:solid 1px #ccc;
}

.contact-inform p{
	font-size: 14px;
	color:#000;
	margin-bottom:5px;
}
.infotxt{
	position:relative;
}

.adr-icon{
	position:relative;
	width: 14px;
}
.adr-icon i{
	color:var(--accent-color);
	
}

.pd-30{
	padding-top:10px;
}



.map{
	position:relative;
	
}

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget {
  margin-bottom: -10px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.topbar {
  background-color: #00006f;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
  position:relative;
}*/


/* Topbar */
.topbar {
  background: #002366;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
}

/* Header (Menu bar) */
#header {
  position: fixed;
  width: 100%;
  /*top: 40px;*/
  background-color: #202020;
  color: white;
  z-index: 999;
  transition: background-color 0.3s, color 0.3s;
  
}

/* When topbar is hidden, shift menu up */
.header-fixed {
  top: 0 !important;
}

/* Page content offset */
/*body {
  padding-top: 100px; 
}*/


.topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

.topbar .contact-info i a,
.topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.topbar .social-links a {
  color: #fff;
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: var(--contrast-color);
}


/* Menu links */
/* Topbar default */
#topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #202020;
  color: #fff;
  z-index: 999;
  padding: 10px 0;
  transition: top 0.4s ease;
}

/* Topbar hidden on scroll */
#topbar.hidden-topbar {
  top: -50px;
}

/* Header default */
/*#header {
  position: fixed;
  top: 40px; 
  width: 100%;
  background: transparent;
  padding: 15px 0;
  transition: all 0.4s ease;
  z-index: 998;
}*/

#header a {
  color: white;
  transition: color 0.3s ease;
}

/* When scrolled */
#header.scrolled {
  top: 0; 
  /*background: white;*/
  background:#000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#header.scrolled a {
  /*color: black !important;*/
  color: #ffffff;
}


@media (max-width: 767.98px) {
  #topbar {
    display: none!important;
  }
  #header {
    top: 0 !important; 
  }
  .contact-mr{
	margin-top:20px;
	}	
	
	
	.pd-rt{
	padding-right:calc(var(--bs-gutter-x) * .5)!important;
	}
	.left-bdr{
		margin-bottom: 10px;
	}
	
	.invest-left{
		margin-bottom: 10px;
	}
	

}

.blue-background{
	/*background-color:#002060;*/
	background-color: #f8f9fa;
}

.quality{
	position:relative;
}

.quality p{
	color:#000;
}

.quality h2.section-title{
	color:#fff;
	text-align:left!important;
}

.solution-card {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
      height: 100%;
	  background-color: #fff;
	  box-shadow: 0 0 16px rgba(0, 0, 0, .1);
	  padding-bottom:31px;
    }
   
	
.solution-card .sol-img {
	overflow:hidden;
	margin-bottom: 15px;
	
}	
.solution-card .sol-img img {
      width: 100%;
      height: 180px;
      object-fit: cover;
	  transition: transform 0.5s ease;
      
    }
.solution-card:hover .sol-img img {
     transform: scale(1.1);
    }	
	
		
.solution-card .sol-pic {
	overflow:hidden;
	margin-bottom: 15px;
	
}	
.solution-card .sol-pic img {
      width: 100%;
	  transition: transform 0.5s ease;
      
    }
.solution-card:hover .sol-pic img {
     transform: scale(1.1);
    }	
	
	
.solution-card .link-arrow i {
    transition: transform 0.5s ease;
}
.solution-card:hover .link-arrow i {
     transform: scale(1.3);
}	
.sol-pd{
	padding-bottom:15px!important;
}	
	
    .solution-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1.25rem;
	  color:#000;
	  position:relative;
	  margin-top: 29px;
    }
	
.solution-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -8px;
}
	

.solution-card	p{
	color:#fff;
}	
	
	.card-custom {
      background-color: #fff;
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 30px;
      margin: 20px 10px;
      text-align: center;
	  margin-bottom: 0;
	  height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    .card-custom h4 {
      font-weight: bold;
      margin-bottom: 20px;
	  color:#000;
	  position:relative;
    }
	.quote {
    font-size: 25px;
    position: relative;
    bottom: 10px;
    margin-right: 5px;
	}
	
	.orng-border{
		border:solid 1px var(--accent-color);
		border-radius:8px;
	}
	
	h2.member-title{
		 font-size: 18px;
		 position:relative;
	}
	
	h2.member-title:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -12px;
}
	
	
	
	.card-custom h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -8px;
}
	
	
    .card-custom p {
      font-size: 14px;
      line-height: 1.8;
      color: #000;
	  margin-bottom: 0;
    }
	
	
.activitysec {
   
    overflow: hidden;
    position: relative;
}	

.activitysec img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

#social .carousel-caption{
	background:rgba(0,0,0,0.5);
	position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: var(--bs-carousel-caption-color);
    text-align: center;
}

#social .carousel-caption h3{
	color:#fff;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: calc(100vh - 110px);*/
  padding: 0;
  overflow: hidden;
}
#hero .carousel-item {
  width: 100%;
  /*height: calc(100vh - 110px);*/
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index:9;
}
/*#hero .carousel-item::before {
  content: "";
  background-color: rgba(13, 30, 45, 0.3);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}*/
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index:99;
}
#hero .carousel-content {
  text-align: left;
}
@media (max-width: 992px) {
  #hero, #hero .carousel-item {
    height: 100vh;
  }
  
  #hero .carousel-content.container {
    padding: 0 15px;
  }
  
  #header{
	  padding: 6px 0;
  }
  
  
}
#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 60px;
  font-weight: 600;
}
#hero p {
  width: 100%;
  text-align:left;
  font-family: "Syne", sans-serif;
  color: #fff;
  font-size:34px;
  font-weight:600;
  margin-bottom:0;
}
#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}
#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
/*#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: rgb(0, 0, 0,0.8);
  font-size: 40px;
  line-height: 1;
  width: auto;
  height: auto;
  border:solid 1px #ccc;
}*/
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  width:150px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  padding: 12px 32px;
  border-radius: 30px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px auto;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border:solid 2px  var(--accent-color);
  text-align:center;
  
}
#hero .btn-get-started:hover {
  background: var(--accent-color);
  border:solid 2px  var(--accent-color);
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 40px;
  }
  #hero,.hero {
    height: 80vh!important;
	min-height:60vh!important;
  }
  
  .page-title h1 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}
  
}
@media (max-height: 500px) {
  #hero,.hero{
    height: 80vh!important;
	min-height:60vh!important;
  }
}
@media (min-width: 1024px) {
  #hero p {
    width: 100%;
	text-align:left;
  }
  /*#hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }*/
}

.txt-cont{
	position:relative;
}

.pd-left{
	padding-left:80px;
}

.pd-lt{
	padding-left:170px;
}

.txt-cont p{
	text-align:justify;
}

.tab-sec{
	position:relative;
	margin-top:36px;
}

.tab-sec .nav-pills .nav-link {
    border: solid 1px #47a5ef;
    padding: 20px 48px;
    border-radius: 10px;
}

.tab-sec .nav-pills .nav-link:hover {
    background-color: #47a5ef;
	color:#fff;
}


.tab-sec .nav-pills .nav-link.active, .tab-sec .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #47a5ef;
}

.tab-bdr{
	border: solid 1px #47a5ef;
	padding:6px;
}

.tab-img{
	text-align:center;
	margin:0 auto;
}
.tab-img img{
	max-width:224px;
	text-align:center;
	margin:0 auto;
}


.tab-sec ul{
	gap: 3rem;
}

.icon-img{
	position:relative;
	border:solid 1px #255597;
	background-color:#002060;
	padding:6px 10px;
	border-radius:6px;
}

.icon-img img{
	max-width: 25px !important;
    height: 100%;
    margin-bottom: 0;
}

.crl-img{
    border: solid 1px #B61C3E;
    padding: 20px;
    border-radius: 50%;
    background-color: #fff;
	margin-bottom: 10px;
}


.crl-img img{
	max-width: 40px !important;
}

.partner .btn-outline-warning {
	font-size:18px;
	color:#B61C3E;
	border:solid 1px #B61C3E;
	margin-top:13px;
}

.partner .btn-outline-warning a{
	font-size:18px;
	color:#B61C3E;
}

.partner .btn-outline-warning:hover {
	color:#fff;
	background-color:#B61C3E;
}

.partner .btn-outline-warning:hover a{
	color:#fff;
	background-color:#B61C3E;
}


.img-mr{
	position:relative;
	margin-top:10px;
}

.img-mr img{
	object-fit: cover;
	width: 100%;
    height: 100%;
    display: block;
}


.vision-img {
    border: solid 1px  var(--accent-color);
    padding: 25px;
    border-radius: 50%;
    background-color: #fff;
    width: 115px;
    height: 115px;
}
.cert-img{
	position:relative;
}
.cer-mb{
	position:relative;
}

.slt-mt{
	position:relative;
}

@media screen and (max-width: 768px) {
  
  .alt-services h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
}
  .pd-left {
    padding-left: 15px;
	}
.tab-sec ul {
    gap: 1rem;
}	
	
.cer-mb{
	position:relative;
	margin-bottom:12px;
}
.slt-mt{
	margin-top:8px;
}
    
}

@media screen and (max-width: 668px) {
	
.tab-sec ul {
    gap: 1rem;
}		
	
	
.tab-sec .nav-pills .nav-link {
        border: solid 1px #47a5ef;
        padding: 20px 37px;
        border-radius: 10px;
    }
	
#hero h2 {
        font-size: 40px;
    }
	
	#hero p{
		font-size: 29px;
	}
	
.alt-services h3 {
        font-size: 25px;
    }	
	
	
	
}


@media screen and (max-width: 668px) {
	
.tab-sec ul {
    gap: 1rem;
}		
	
	
.tab-sec .nav-pills .nav-link {
        border: solid 1px #47a5ef;
        padding: 20px 37px;
        border-radius: 10px;
    }
	
#social .carousel-caption {
    padding-top: 0rem!important;
    padding-bottom: 0rem!important;
}	
	
	
}

@media screen and (max-width: 480px) {
	
.tab-sec ul {
    gap: 1rem;
}		
	
	
.tab-sec .nav-pills .nav-link {
        border: solid 1px #47a5ef;
        padding: 20px 20px;
        border-radius: 10px;
    }
	
#social .carousel-caption {
    padding-top: 0rem!important;
    padding-bottom: 0rem!important;
}	
	
#social .carousel-caption h3 {
    color: #fff;
    font-size: 20px;
}	
	
#social .carousel-caption p {
    margin-bottom:0!important;
	
}	
	
.tab-sec .nav-pills .nav-link {
        padding: 20px 10px!important;
		font-size: 14px;
    }
	
#hero p{
		font-size: 28px;
	}	
	
	
}


.leadership-card {
    border: 1px solid #ccc;
    padding: 20px 10px;
    text-align: center;
    height: 100%;
	background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
	overflow: hidden;
	position:relative;
}

.leadership-card img {
  transition: transform 0.5s ease;
}

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


.top-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25rem;
	text-align: center;
	color:#000;
	position: relative;
}

.top-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -8px;
}


.lead-img{
	position:relative;
	margin-top: 20px;
	margin-bottom: 15px;
}

.lead-img img{
	max-width:80px;
}

.grey-background{
	background-color: #e9eaeb;
}

.mrg-60{
	margin-bottom:80px;
}

.link-arrow {
    text-align: right;
    position: absolute;
    right: 11px;
    bottom: 5px;
}
.leadership-card .link-arrow i {
    transition: transform 0.5s ease;
}
.leadership-card:hover .link-arrow i {
     transform: scale(1.3);
}

.solution-card p {
    color: #000;
    margin-bottom: 5px;
}

.left-image-container {
  height: 100%;
  width: 100%;
  /*display: flex;
  flex-direction: column;*/
}

.left-image-container img {
  object-fit: cover;
  
}


/*Tab Sec Start*/

.product-tab{
	position:relative;
}

.product-tab .nav-pills {
    display: flex;
    align-content: center !important;
    align-items: center !important;
}

.product-tab .nav-pills .nav-item {  
	display:flex;
	flex: 1 1 0;
	align-content: center !important;
	align-items: center !important;
}

.product-tab .nav-pills .nav-item .nav-link {
	border-radius: 0;
    border: solid 1px #e0dede;
    background-color: #ffffff;
   	padding:20px 10px;
	color:#000;
	flex: 1 1 0;
	 align-content: center !important;
	 align-items: center !important;
}

.product-tab .nav-pills .nav-item .nav-link.active, .product-tab.nav-pills .nav-item .show>.nav-link {
    color: #B61C3E;
    background-color: #f8f9fa;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
	font-weight:600;
}



.product-tab .nav-pills li.nav-item {
    flex: 1 0 0;
	display:flex;
	
}


.product-tab .service-card {
	background-color: transparent; 
    color: white;
   
}

.product-tab .service-card .card-body {
      padding: 5px;
    }
	
.product-tab .nav-pills .nav-link  h5.card-title {
    font-size: 17px;
    font-weight: 500;
	color: #000;
	margin-bottom: 0;
}	
.product-tab .nav-pills .nav-link.active h5.card-title {
	 color: #fff;
}
.product-tab .nav-pills .nav-link  .service-card p {
    font-size: 14px;
	color: #000;
}		
.product-tab .nav-pills .nav-link.active  .service-card p {
	color: #fff;
}	

.product-tab .nav-pills .nav-link  .service-card hr {
     border-top: 2px solid #e0dede;
     margin: 0.75rem 0 1rem;
	 opacity:1!important;
}	
.product-tab .nav-pills .nav-link.active  .service-card hr {
     border-top: 2px solid #fff;
}
	

.sky-background{
  background-color:#ffffff;
}	

.white-bg{
	
	position:relative;
}

.prd-title{
	font-size:25px;
	margin-bottom:15px;
}

.mr-15{
	margin-bottom:8px;
}

.inner-tab{
  position:relative;
}

.inner-tab .nav-pills {
	padding: 0;
}
	

.inner-tab .nav-pills .nav-link {
	font-family: var(--heading-font);
	border-radius:0;
	text-align:left;
	color:#000;
    margin-bottom: 6px;
	font-size:14px;
	font-weight: 600;
}

.inner-tab .nav-pills .nav-link:hover {
	background-color:#f8f9fa;
	color:#B61C3E;
	font-size:14px;
}

.inner-tab .nav-pills .nav-link.active, .inner-tab .nav-pills .show>.nav-link{
	background-color:#f8f9fa;
	color:#B61C3E;
	font-weight: 600;
	font-family: var(--heading-font);
	font-size:14px;
}
.left-bdr{
	border: solid 1px #e0dede;
	background-color:#ffffff;
	min-height: 338px;
}
.right-sec{
	min-height: 338px;
}



.inner-tab .tab-content{
	padding: 15px 15px;
	position:relative;
	overflow:hidden;
}
ul.product-list{
	margin:0;
	padding:0;
	list-style:none;
}

ul.product-list li{
	position:relative;
}

ul.product-list li h4{
	font-size:17px;
	color:#000;
	margin-bottom:14px;
}

ul.product-list li p{
	font-size:14px;
	color:#000;
}


.prd-mb{
	margin-bottom:60px;
}

@media (max-width: 767.98px) {
  .product-tab .nav-pills {
    flex-direction: column;
  }

  .product-tab .nav-pills li.nav-item {
    flex: none;
    width: 100%;
    height: auto;
  }

  .product-tab .nav-pills .nav-link {
    padding: 0;
  }

  .product-tab .card.service-card {
    height: auto;
  }
  

.product-tabbination .nav-pills .nav-item {
    display: flex!important;
    align-content: center !important;
    align-items: center !important;
    width: 100%!important;
	flex: none !important;
	margin-bottom: 6px;
}
.sol-mb{
	margin-bottom: 10px;
}

.more-button {
	color: #B61C3E;
	font-size:14px;
	font-weight:600;
	position:absolute;
	right:6px;
	bottom:-10px;
}


}
.newsection .btn-outline-warning {
	position:relative;
	border:solid 1px var(--accent-color);
	margin-bottom: 44px;
}

.newsection .btn-outline-warning:hover {
	background:var(--accent-color);
}

.newsection .btn-outline-warning a{
	position:relative;
	transition:all 0.5s;
	
}

.newsection .btn-outline-warning:hover a{
	color:#fff;
	
	
}

.view-btn a{
	width:150px;
	height:40px;
	text-align:center;
	color:#ffc107;
}
.view-btn:hover a {
	color:#fff;
	
}


.top-cont p{
	text-align:justify;
}

.chairman-img {
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: solid 1px #e0dede;
	width: 180px;
    height: 180px;
}

.right-sec p{
	color:#000;
}

.news-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
    color: #000;
    position: relative;
    text-align: left;
}
	
.news-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    text-align: left;
    bottom: -8px;
}


.newsroom-card {
      border: 1px solid #ccc;
      padding: 10px;
      text-align: center;
      height: 100%;
	  background-color: #fff;
	  position:relative;
	 
    }

	
.newsroom-card .newsimg{
	 overflow: hidden;
	 margin-bottom: 15px;
}	

.newsroom-card .newsimg img{
	  width: 100%;
	  transition: transform 0.5s ease;
}
	.newsroom-card:hover .newsimg img {
	  transform: scale(1.1);
	}

    .newsroom-title {
      font-weight: 700;
      margin-bottom: 10px;
      font-size: 1.25rem;
	  color:#000;
	  position:relative;
    }
	
.newsroom-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -8px;
}

.pdr-0{
	padding-right:0!important;
}

.pd-top-0{
	padding-top: 0!important;
}

.icon-rt{
	transform: scaleX(-1);
}

.img-fit{
	position:relative;
	
}


.img-fit img{
	width:100%;
	object-fit: cover;
	height: 305px;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-about .logo img {
  max-width:87%!important;
}

.img-mb{
	position:relative;
}

.content-section{
	text-align:justify;
	position:relative;
}
.round-img{
	border-radius:10px;
}

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

.footer .footer-links img{
	width: 340px;
    margin: 0 auto;
    text-align: center;
}

.vision-sec{
	background-color:#fff;
	padding:15px;
	border: solid 1px #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}

.vision-top{
	margin-top:110px;
}

.vision-sec p{
	font-size:14px;
}

.vision-sec h2{
	font-size:18px;
	font-weight:500;
	color:#B61C3E;
}
.vision-sec ul{
	padding:0;
	margin:0;
}
.vision-sec ul li{
	font-size:14px;
	margin-left:15px;
}

.pd-20{
	padding-top:22px;
	padding-bottom:22px;
}

.vision-sec i{
	margin-left:10px;
}

.line{
	height:40px;
	width:2px;
	background-color:#B61C3E;
}
.num{
	font-size:18px;
	font-weight:500;
	 color: #000;
}
.customers-sec {
    background-color: #f8f9fa;
    padding: 22px 35px;
    border: solid 1px #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}

.customers-sec h2{
	font-size:18px;
	font-weight: 500;
	color:#B61C3E;
   
}

.cus-top{
	margin-top:4px;
}

.txt-link{
	color:#B61C3E;
}


.product-tabbination{
	position:relative;
}

.product-tabbination .nav-pills{
	 display: flex;
	 align-content: center !important;
	 align-items: center !important;
}

.product-tabbination .nav-pills .nav-item {
   
	display:flex;
	flex: 1 1 0;
	align-content: center !important;
	align-items: center !important;
}


.product-tabbination .nav-pills .nav-item .nav-link {
	border-radius: 0;
    border: solid 1px #e0dede;
    background-color: #ffffff;
   	padding:20px 20px;
	color:#000;
	flex: 1 1 0;
	align-content: center !important;
	align-items: center !important;
	font-size: 1.25rem;
}



.product-tabbination .nav-pills .nav-item .nav-link.active, .product-tabbination.nav-pills .nav-item .show>.nav-link {
    color: #B61C3E;
    background-color: #f8f9fa;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
	font-weight:600;
}



.more-button {
	color: #B61C3E;
	font-size:14px;
	font-weight:600;
	position:absolute;
	right:6px;
	bottom:-10px;
}

.more-button a{
	color: #B61C3E;
}

.more-button i{
	margin-left:10px;
}

.content-section h4{
	font-size:14px;
	color: #B61C3E;
	margin-bottom:14px;
	font-weight: 600;
}

.prd-sec{
	position:relative;
}

.prd-sec img{
	max-width:90%;
}

.pd-rt{
	padding-right:0;
}

.tech-sec{
	background-color:#fff;
	padding:15px;
}

.tech-sec h2{
	font-size:16px;
	color: #B61C3E;
	margin-bottom:14px;
}
.tech-sec p{
	font-size:14px;
	color: #000;
	font-weight: normal;
}
.solution-card h5{
	font-size:14px;
	position:relative;
	margin-bottom:20px;
}

.solution-card h5:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background:#B61C3E;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    bottom: -8px;
}



.tech-sec table tr th{
	font-size:14px;
	font-weight: 500;
}
.tech-sec tr td{
	font-size:14px;
	font-weight: normal;
}


.tech-sec ul.check-list{	
	margin:0;
	padding:0;
}

.tech-sec ul.check-list li{	
	font-size:14px;
	color:#000;
	font-weight:normal;
	margin-left:15px;
}

.tech-sec h5,.tech-sec h6{
	font-size:15px;
	color: #000;
	margin-bottom:14px;
}

.conduct-sec h3{
	font-size: 30px;
    font-weight: 600;
	color: var(--accent-color);
	margin-bottom:0;
}



.table-data table tr th{
	font-size:14px;
	font-weight: 600;
}
.table-data table tr td{
	font-size:14px;
	font-weight: normal;
}

.table-data a.btn.btn-danger {
	background-color:var(--accent-color);
	font-size:14px;
}


.feature-box {
      background-color: #fff;
      color: #000;
      padding: 10px 10px;
      text-align: center;
      min-height: 130px;
      display: flex;
	  flex-direction:column;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }
	
.why-img img{
    max-width:40%;
	margin-bottom:10px;
}	



@media (min-width: 768px) {
      .product-tabbination .nav-pills{
	 display: flex;
	 align-content: center !important;
	 align-items: center !important;
}

.product-tabbination .nav-pills .nav-item {
   
	display:flex;
	flex: 1 1 0;
	align-content: center !important;
	align-items: center !important;
}
    }
	
ul.vision-list	{
	margin:0;
	padding:0;
}

ul.vision-list li	{
	margin-bottom:10px;
}

ul.vision-list li::marker {
    color: var(--accent-color);
}



ul.product-listitem	{
	margin:0;
	padding:0;
	list-style:none;
}

ul.product-listitem li {
    margin-bottom: 10px;
    color: #000;
    font-size: 14px;
    display: flex;
    flex-direction: row;
}

.product-listitem li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    margin-right: 8px;
    color: var(--accent-color); 
}


.career-card {
    border: 1px solid #ccc;
    padding: 20px 20px;
    text-align: center;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
    overflow: hidden;
}

.contact-mr{
	position:relative;
}

.p-top{
	position:relative;
}

.right-product-sec {
    height: 338px;
    position: relative;
   
}

.prd-des{
	height: 320px;	
	overflow-y: scroll;
    overflow-x: hidden;
}
.prod-pic{
	position: relative;
	text-align:center;
}

.prod-pic img{
	text-align:center;
}


/*Mega Menu	*/

/* .hamburger {
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.3rem;
      border: none;
      background: transparent;
    }

    .hamburger span {
      display: block;
      width: 1.5rem;
      height: 2px;
      background: #eee;
      transition: 0.3s ease;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .mega-menu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #222;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      z-index: 1000;
	  
    }

    .mega-menu.open {
      max-height: 80vh;
    }

    .left-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .left-nav li {
      position: relative;
    }

    .left-nav a {
      display: block;
      padding: 0.75rem 1rem;
      color: #eee;
      text-decoration: none;
      border-bottom: 1px solid #444;
      transition: color 0.2s, background 0.2s;
    }

    .left-nav a:hover,
    .left-nav a.active {
      background: #333;
      color: #fff;
    }

   .left-nav a.active::after {
    content: '→';
    position: absolute;
    right: 1rem;
    font-size: 2.5rem;
    top: 45%;
    transform: translateY(-50%);
}

    .content-pane {
      display: none;
     
    }

    .content-pane.active {
      display: block;
    }

    .content-pane ul {
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 1.5rem;
	  display:flex;
	 flex-wrap: wrap;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .content-pane li {
	width: 185px;
    height: 112px;
      background: #333;
      color: #eee;
      border-radius: 4px;
      overflow: hidden;
      text-align: center;
	  display: flex;
    align-items: center;
    justify-items: center;
	justify-content: center;
	flex-direction: column;
	transition:all 0.5s;
    }
	
	.content-pane li a{
		 text-align: left;
		 color:#fff;
		 text-decoration:none;
	}
	
	.content-pane li:hover {
		border:solid 1px #ccc;
	}
	

    .content-pane li img {
      width: 100%;
      height: auto;
      display: block;
    }

    .content-pane li h6 {
      margin: 0;
      padding: 0.5rem;
      font-size: 0.9rem;
	  color:#fff;
	  text-align: center;
    }

    @media (max-width: 767.98px) {
      .container-fluid.d-flex {
        flex-direction: row;
      }

      .left-nav{
        width: 100% !important;
        padding: 0;
      }
	  
      .flex-fill {
        width: 100% !important;
        padding: 0;
      }
	  

    }*/
	
/*Mega Menu End*/	
	
	
.newsroom-card p{
  margin-bottom:45px;
}

.news-title-heading{
    font-size: 38px;
    font-weight: 600;
    color: #000;
    position: relative;
    text-align: left;
}	

.news-title-heading:after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    left: 0;
    text-align: left;
    bottom: -8px;
}


.legacy-box-sec {
    background-color: #fff;
    color: #000;
    padding: 26px 10px;
    text-align: center;
    min-height: 169px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}


.legacy-box-sec  h2{
	font-family:var(--default-font);
	font-size:22px;
	margin-bottom: 12px;
	color:#B61C3E;
}
.ldr-ht{
	min-height:421px;
}


.business-custom h4 {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.25rem;
    text-align: center;
    color: #000;
    position: relative;
    margin-bottom: 0px;
}

.business-custom {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s; 
}

.business-img {
    border: solid 1px var(--accent-color);
    padding: 25px;
    border-radius: 50%;
    background-color: #fff;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; 
}

.business-img img {
    transition: transform 0.3s ease; 
}

/* Hover Effect */

.business-custom:hover{
   box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
}


.business-custom:hover .business-img {
    box-shadow: 0 0 20px rgba(234, 234, 234, 0.7); 
    transform: scale(1.08); 
}

.business-custom:hover .business-img img {
    transform: scale(1.15); 
}



.cat-mt{
	position:relative;
}


/*Mega Menu Start*/

/* Header styling */
    .header {
      padding: 0.7rem 0;
      position: relative;
      z-index: 1020; /* Ensure header is above other content */
    }
	
	.header img{
      max-width:65%;
    }
	

    /* Hamburger icon styling */
    .hamburger {
      cursor: pointer;
      width: 2rem;
      height: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.3rem;
      border: none;
      background: transparent;
      padding: 0; /* Remove default button padding */
      border-radius: 4px; /* Rounded corners for hamburger button */
    }

    .hamburger span {
      display: block;
      width: 1.5rem;
      height: 2px;
      background: #eee;
      transition: 0.3s ease; /* Smooth transition for animation */
      border-radius: 2px; /* Rounded ends for hamburger lines */
    }

    /* Hamburger animation states */
    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0; /* Hide middle line */
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    /* Mega menu container styling */
    .mega-menu {
      position: absolute;
      top: 100%; /* Position below the header */
      left: 0;
      width: 100%;
      background: #222;
      max-height: 0; /* Hidden by default */
      overflow: hidden; /* Hide overflow content */
      transition: max-height 0.4s ease; /* Smooth reveal/hide transition */
      z-index: 1000;
      border-bottom-left-radius: 8px; /* Rounded corners for the menu */
      border-bottom-right-radius: 8px;
      display: none; /* CRITICAL: Ensure menu is hidden by default */
    }

    .mega-menu.open {
      max-height: 80vh; /* Visible height */
      overflow-y: auto; /* Allow vertical scrolling if content overflows */
      display: flex; /* CRITICAL: Show menu as flex when open */
    }

    /* Left navigation styling */
    .left-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .left-nav li {
      position: relative;
    }

    .left-nav > ul > li > a { /* Target top-level links */
      display: block;
      padding: 0.55rem 1rem;
      color: #eee;
      text-decoration: none;
      border-bottom: 1px solid #444; 
      transition: color 0.2s, background 0.2s; 
      border-radius: 0px; 
      margin-bottom: 2px; 
	  /*transition:all 0.5s;*/
    }

    /* Hover and active states for left nav links */
    .left-nav > ul > li > a:hover,
    .left-nav > ul > li > a.active {
      background: #333;
      color: #B61C3E!important;
      border-bottom-color: #333; 
	  font-size:1rem;
	  font-weight:600;
	 
    }
	
	/*.left-nav > ul > li > a:hover::after {
      content: '\f138';
      font-family: "bootstrap-icons" !important;
      position: absolute;
      right: 1rem;
      font-size: 2rem;
      top: 46%;
      transform: translateY(-50%);
    }*/
	

    /* Active indicator arrow for desktop */
    .left-nav > ul > li > a.active::after {
      content: '\f138';
      font-family: "bootstrap-icons" !important;
      position: absolute;
      right: 1rem;
      font-size: 2rem;
      top: 46%;
      transform: translateY(-50%);
    }

    /* Content pane styling - Desktop default properties */
    /* These apply when content panes are in the desktopContentContainer */
    .content-pane {
      display: none; 
    }

    .content-pane.active {
      display: block; /* Active pane is visible */
    }

    .content-pane ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid; /* Default to grid for desktop */
      /* grid-template-columns and gap are explicitly set in desktop media query */
    }

    .content-pane li {
      height: 112px; /* Fixed height for desktop */
      background: #333;
      color: #eee;
      border-radius: 8px; /* Rounded corners for content items */
      overflow: hidden;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center; /* Center content horizontally */
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .content-pane li:hover {
       
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
		border:solid 1px #B61C3E;
		
    }
	
	.content-pane li:hover i{
       
        color:#B61C3E;
		
    }
	
	.content-pane li:hover h6{
		color:#B61C3E;
	}
	

    .content-pane li a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 100%; 
      height: 100%;
      color: #fff;
      text-decoration: none;
      padding: 0.5rem; 
    }

    .content-pane li h6 {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.3;
      font-weight: 500; 
	  color:#fff;
    }

    /* --- Mobile-specific styles (max-width: 767.98px) --- */
    @media (max-width: 767.98px) {
      /* Mega menu container behavior on mobile */
      .mega-menu .container.d-flex.p-3 {
        flex-direction: column; 
        padding: 0 !important; 
      }

      /* Full width for left nav */
      .left-nav {
        width: 100% !important;
        padding: 0 !important; 
      }

      /* Hide the desktop content pane container on mobile */
      /*.flex-fill {
        display: none !important;
      }*/

      /* Left navigation styling for mobile */
      .left-nav ul {
        border-bottom: 1px solid #444; 
        background: #000; 
      }

      .left-nav > ul > li > a { 
        border-bottom: none; 
        border-radius: 0; 
        margin-bottom: 0; 
      }

      .left-nav > ul > li:last-child > a {
        border-bottom: none; /* Ensure no extra border on the last item */
      }

      /* Mobile mega menu max height and scrolling */
      .mega-menu {
        max-height: 80vh; /* Set a max-height for scrolling */
        overflow-y: auto; /* Enable scrolling for the mega menu content */
        border-bottom-left-radius: 0; /* Remove rounded corners at bottom */
        border-bottom-right-radius: 0;
      }

      /* Mobile arrow default state */
      .left-nav > ul > li > a::after {
        content: '\f282'; 
		font-family: bootstrap-icons !important;
        font-size: 0.9rem;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(0deg); /* Default pointing down */
        transition: transform 0.3s ease; /* Smooth rotation */
      }

      /* Mobile arrow active state (rotated upwards) */
      .left-nav li.active-mobile > a::after {
        transform: translateY(-50%) rotate(180deg); 
		top:2%;
		content:'';
		 background: #1B1B1B;
      }
	  
	  .left-nav > ul > li > a.active {
      background: #1B1B1B;
	 
    }

      /* Mobile content pane styling - nested accordion style */
      /* This style applies to content panes when they are moved into li (mobile accordion) */
      .content-pane {
        display: none; /* Hidden by default when nested for mobile */
        /*padding: 0.5rem 1rem 1rem;*/
        border-radius: 0 0 8px 8px; /* Rounded bottom corners */
        box-shadow: none; /* Remove shadow for mobile */
      }
      
      /* Show content pane when its parent li has 'active-mobile' class */
      .left-nav li.active-mobile .content-pane {
        display: block;
      }

      .content-pane ul {
        display: flex; /* Use flexbox for stacking */
        flex-direction: column; /* Stack items vertically */
        gap: 0.5rem; /* Add gap between stacked items for mobile */
        border-radius: 4px;
        overflow: hidden; /* Ensure inner content respects rounded corners */
      }

      .content-pane li {
        width: 100%; 
        height: auto; 
        margin-bottom: 0; 
        justify-content: flex-start; 
        box-shadow: none; 
        background: #000; 
      }

      .content-pane li:last-child {
        margin-bottom: 0; /* No margin for the last item */
      }

      .content-pane li a {
        text-align: left; 
        padding: 0.75rem 1rem;
        justify-content: flex-start; 
		flex-direction: row;
		gap:1rem;
      }

      .content-pane li:hover {
        transform: none; /* Disable lift effect on mobile */
        box-shadow: none;
      }
	  
	  
	  
    }

    /* --- Desktop styles (min-width: 768px) --- */
    @media (min-width: 768px) {
      /* Restore desktop layout for mega menu content */
      .mega-menu .container.d-flex.p-3 {
        flex-direction: row; /* Two columns for desktop */
        padding: 1rem !important; /* Restore desktop padding */
      }

      /* Left navigation width */
      .left-nav {
        width: 25%; /* Allocate 25% width for left nav */
        min-width: 200px; /* Minimum width to prevent shrinking too much */
      }

      /* Show the desktop content pane container */
      .flex-fill {
        display: block !important;
        padding-left: 1rem !important; /* Add back desktop padding */
      }

      /* Ensure content panes behave as tabs on desktop */
      .content-pane {
        display: none; /* Default hidden */
      }

      .content-pane.active {
        display: block; /* Only active pane is visible */
      }

     
      .content-pane ul {
        display: grid; /* Grid layout for desktop */
        grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); /* Updated for better grid sizing and spacing */
        gap: 1.5rem; /* CRITICAL: Ensure gap is set for desktop grid */
        flex-direction: initial; /* Reset flex direction if it was column */
      }

      /* Individual content list item styling for desktop */
      .content-pane li {
        height: 112px; /* Fixed height for desktop */
        margin-bottom: 0; /* Remove margin for desktop grid */
        justify-content: center; /* Center content horizontally */
        background: #333; /* Restore desktop background */
      }

      .content-pane li a {
        text-align: center; 
		gap: 1rem;
      }
	  
	  .content-pane li i  {
       font-size:24px;
      }
    }
	
	
/*Mega Menu End*/	



.brochures-card {
    border: 1px solid #ccc;
    padding: 15px 15px;
    text-align: center;
    height: 100%;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.09);
    overflow: hidden;
    position: relative;
	border-radius: 7px;
}

.brochures-card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    text-align: left;
    color: #000;
    position: relative;
    margin-bottom: 0px;
}

.download-link a {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 8px;
  padding: 10px 30px;
  transition: 0.4s;
}

.download-link a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.prd-max{
	position:relative;
}

.prd-max img{
	max-width:70%;
}
.partner-btn{
	display: block;
}

.partner-btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent-color);
  background: var(--contrast-color);
  border-radius: 6px;
  border:solid 1px  var(--accent-color);
  padding: 10px 20px;
  text-align:center;
  font-size:18px;
  transition: 0.4s;
}

.partner-btn a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.left-height{
	height:338px;
	overflow-y: scroll; 
    overflow-x: hidden;
    width: 100%;
}


.investor .btn-outline-warning {
	font-size:18px;
	color:#B61C3E;
	border:solid 1px #B61C3E;
}

.investor .btn-outline-warning a{
	font-size:18px;
	color:#B61C3E;
}

.investor .btn-outline-warning:hover {
	color:#fff;
	background-color:#B61C3E;
}

.investor .btn-outline-warning:hover a{
	color:#fff;
	background-color:#B61C3E;
}


.invest-left {
    border: solid 1px #e0dede;
    background-color: #ffffff;
    min-height: 440px;
}

.invest-right-sec {
    height: 440px;
    position: relative;
   
}

.download-btn {
  position:relative;
  
}


a.download-btn  {
  width:150px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--contrast-color);
  background: var(--accent-color);
  border-radius: 6px;
  border:solid 1px  var(--accent-color);
  padding: 8px 12px;
  text-align:center;
  font-size:15px;
  transition: 0.4s;
}

a.download-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.invest-tbl{
	position:relative;
	overflow-y:scroll;
	overflow-x:hidden;
	height:410px;
}

.invest-tbl table tr td{
	font-size:15px;
	font-weight:500;
}


  .catalog-btn {
      background-color: #b61c3e;
      color: #fff;
      border: none;
      padding: 8px 27px;
      border-radius: 8px;
	  font-size: 1rem;  
    }
    .catalog-btn:hover {
      background-color: #a00f2b;
    }
    .link-btn {
      background-color: #b51232;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 15px;
      font-size: 1rem;
	  display:flex;
	  justify-content: space-between;
      align-items: center;
    }
    a.link-btn:hover {
      background-color: #a00f2b;
	  color: #fff;
    }
	
.catalog-sec{
  position:relative;
}	

.catalog-sec .card .card-header{
  background-color: #ffffff!important;
  border-radius: 10px!important;
  padding: 15px 15px;

}	

.catalog-sec .card .card-body{
  background-color: #ffffff!important;
  border-radius: 10px!important;

}	

.catalog-sec h4{
	font-weight: 600;
    font-size: 1.25rem;
	margin-bottom: 0;
}



.flxwrap {
    position:relative;
}



.flxwrap span {
  white-space: normal;  
  word-break: break-word; 
  overflow-wrap: break-word;
}
.info-mt{
	position:relative;
}

.sebi-btn a {
  display: flex;
  align-items: center;
  justify-content: space-around;  
  gap: 12px;                  
  color: var(--accent-color);
  background: var(--contrast-color);
  border-radius: 6px;
  border: solid 1px var(--accent-color);
  padding: 10px 10px;
  font-size: 18px;
  transition: 0.4s;
  text-decoration: none;     
}

.sebi-btn a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}




@media (max-width: 550px) {

.flxwrap {
    flex-direction: column;       
    align-items: flex-start!important;     
  }

  .flxwrap a.link-btn {
    margin-top: 6px;       
  }
  
  .partner-btn{
	margin-bottom:5px;
  }
  
  .flxwrap span {
 text-align:left;
}
  
  .sebi-btn a{
	padding: 10px 3px;
    font-size: 15px;
	gap: 12px;  
  }


}