:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Fonts */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #222222;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #008374;
  /* 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: #2c4964;
  /* The default color of the main navmenu links */
  --nav-hover-color: #008374;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #01433c;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #008374;
  /* 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: #f2f9f9;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #008374;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #00b6a1;
  --contrast-color: #ffffff;
}

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

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

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /* font-family: var(--heading-font); */
  font-family: 'Montserrat', sans-serif !important;
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


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

.header .topbar {
  background-color: var(--accent-color);
  height: 50px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s ease-in-out;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

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

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

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

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

header .top-link{
  margin-top: 10px;
}

.header .top-link li{
	display:inline-block;
	margin-right:15px;
}
.header .top-link li:last-child{
	margin-right:0px;
}
.header .top-link li a{
	color:#2C2D3F;
	font-size:14px;
	font-weight:400;
}

.header .top-contact{
	float:right;
}
.header .top-contact li{
	display:inline-block;
	margin-right:5px;
	color:#2C2D3F;
}
.header .top-contact li:last-child{
	margin-right:0px ;
}
.header .top-contact li a{
	font-size:14px;
}

.header .top-contact li i{
	color:#a1a2a3;
  font-size: 17px;
	/* margin-right:8px; */
}

.header .top-contact li i:hover{
	color:#fff;
}





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



.header .logo img {
  max-height: 90px;
  /* margin-right: 8px; */
}



.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

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

@media (max-width: 1024px) {
  .header .logo {
    order: 1;
  }

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

  .header .navmenu {
    order: 3;
  }
}

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

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1024px) {


  .mobile-nav-toggle {
    display: none;
  }

  .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: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  /* Active link effect */
  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-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);
  }

  /* Dropdown menu */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  /* Hover effect for dropdown items */
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  /* Active link inside dropdown */
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  /* Show dropdown on hover */
  .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: 1024px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    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);
  }

  /* Mobile active link effect */
  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  /* Dropdown menu in mobile */
  .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;
  }

  /* Active dropdown link in mobile */
  .navmenu .dropdown ul a.active {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .container {
  max-width: 1300px !important;
}

.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-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  text-align: center;
  background: #005f54;
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 1.5rem;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

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

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

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

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

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

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

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 180px 0 100px 0;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

/* Responsiveness */
@media (max-width: 1024px) {
  .page-title .heading {
    padding: 150px 0 60px 0;
  }

  .page-title .heading h1 {
    font-size: 32px;
  }

  .page-title nav ol {
    font-size: 14px;
  }

  .page-title nav ol li+li {
    padding-left: 8px;
  }

  .page-title nav ol li+li::before {
    padding-right: 8px;
  }
}

@media (max-width: 768px) {
  .page-title .heading {
    padding: 100px 0 40px 0;
  }

  .page-title .heading h1 {
    font-size: 26px;
  }

  .page-title nav ol {
    font-size: 12px;
    padding: 15px 0;
  }

  .page-title nav ol li+li {
    padding-left: 5px;
  }

  .page-title nav ol li+li::before {
    padding-right: 5px;
  }
}

@media (max-width: 480px) {
  .page-title .heading {
    padding: 80px 0 20px 0;
  }

  .page-title .heading h1 {
    font-size: 22px;
  }

  .page-title nav ol {
    font-size: 10px;
    padding: 10px 0;
  }

  .page-title nav ol li+li {
    padding-left: 3px;
  }

  .page-title nav ol li+li::before {
    padding-right: 3px;
  }
}


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


@media (max-width: 1024px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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




/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*===========================
	Start Hero Area CSS
=============================*/

/*=============================
	End Schedule CSS
===============================*/

#hero {
  margin-top: -60px;
  padding-bottom: 0 !important;

}

img,
figure {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.carousel {
  max-height: 800px;
  /* Adjust this value as needed */
  overflow: hidden;
  /* Hide overflow for a clean look */
}

.carousel .carousel-item {
  height: 100%;
  /* Fill the full height of the carousel */
  display: flex;
  align-items: center;
  /* Center content vertically */
  justify-content: center;
  /* Center content horizontally */
  background-size: cover;
  background-position: center;
}

/* Caption styling with reduced height and balanced padding */
.carousel-caption {
  top: 150px;
  left: 5px;
  bottom: auto;
  height: auto;
  /* Adjust as needed */
  padding: 10px 20px;
  /* background: rgba(9, 30, 62, 0.85); */
  z-index: 1;
  width: 80%;
  text-align: left;
  color: #000 !important;
}


.carousel-caption p {
  font-size: 1rem;
  /* Adjust paragraph text */
  margin-top: 5px;
  color: #000;

}

.carousel-caption h5 {
  font-size: 1.25rem;
  /* Default for medium screens */
  font-weight: bold;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  /* Default for medium screens */
  line-height: 1.3;
}

.carousel-caption .btn {
  font-size: 1rem;
  padding: 15px 25px;
  border-radius: 5px;
  /* width: 100%; */
}

/* Adjusting control icons */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  /* Narrower controls */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
}

.left {
  margin-left: -400px;
}

.banner button:hover {
  transition: all 0.4s ease-in-out;
}


.banner button:hover {
  background-color: #dddddd;
}

#hero .btn1 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #008374;
  border: none;
  color: #fff;
}

#hero .btn1:hover {
  background-color: #005f54;
  color: #fff;
}


#hero .btn2 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #2C2D3F;
  border: none;
  color: #fff;
}

#hero .btn2:hover {
  background-color: #232431;
  color: #fff;
}




.banner .container {
  display: flex;
  justify-content: center;
  /* Centers the divs horizontally */
  gap: 20px;
  /* Adds space between the divs (Bootstrap `gx-*` also works) */
}

.banner .row {
  justify-content: center;
  /* Ensures the row centers content */
}

.RFEM-phone-input {
 
  max-width: 100% !important;
  
}

.RFEM-form__title {
color: #fff !important;
font-weight: 700 !important;
font-size: 1.5rem !important;
}


.banner .RFEM-phone-input {
     margin-bottom: 0px !important; 

}


 .refrens-contact-form {
     gap: 0; /* If there's flexbox or grid */
 }
 
.RFEM-brand {
    display: none !important;
  
}

.RFEM-brand-link{
        display: none !important;
    
}


 
.col-lg-4 {
  flex: 0 0 auto;
  /* Ensures both divs have the same width */
  max-width: 100%;
  /* Optional: Set a fixed width for consistent sizing */
}


@media (max-width: 1024px) {
  .carousel-caption {
    top: 100px;
    width: 100%;
  }

  .banner {
    margin-top: 20px;

  }
}


@media (max-width: 768px) {
  .carousel-caption {
    text-align: center;
    padding: 20px;
    width: 100%;
    top: 100px;
    line-height: 0px;
  }

  .carousel-caption h5 {
    font-size: .8rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
    line-height: 1;
  }

  .carousel-caption .btn {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .carousel-caption .btn1 {
    font-size: .8rem;
    letter-spacing: .5px;

  }

  .carousel-caption .btn2 {
    font-size: .8rem;
    letter-spacing: .5px;

  }

  .left {
    margin-left: 0;
  }


}

.bg-secondary {
  padding: 30px;
}


@media (max-width: 456px) {
  .carousel-caption {
    height: 150px;
    width: 95vw;
  }
}

@media (max-width: 425px) {
  .banner h3 {
    font-size: 1.2rem;
  }

  .banner p {
    font-size: .8rem;
  }
}



@media (min-width: 991.98px) {
  .banner {
    position: relative;
    margin-top: -90px;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .carousel-caption h5 {
    font-size: 1.5rem;
  }

  .carousel-caption h1 {
    font-size: 3rem;
  }

  .button-group .btn {
    font-size: 1.1rem;
    /* padding: 12px 30px; */
  }
}



@media (max-width: 632px) {
  .carousel-caption {


    padding: 10px 20px;

    width: 100%;

  }

  img,
  figure {
    max-width: 100%;
    height: 400px;
    vertical-align: middle;
  }


}


@media (max-width: 441px) {

  .carousel-caption {
    top: 120px;
  }

  .carousel-caption .btn1 {
    width: 90vw;
  }

  .carousel-caption .btn2 {
    width: 90vw;
  }

  .carousel-caption h5 {
    font-size: .8rem;
  }


  .carousel-caption .btn {
    font-size: .7rem;
    border-radius: 5px;
    width: auto;
    padding: 5px 10px;
  }

}

.section-title h5::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 3px;
  right: -55px;
  bottom: 11px;
  background: var(--primary);
}

.section-title h5::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 3px;
  right: -75px;
  bottom: 11px;
  background: var(--secondary);
}

.twentytwenty-wrapper {
  height: 100%;
}

.hero-header {
  background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}




/*=============================
	Start Feautes CSS 
===============================*/
/* Default feature section styles */
.feature {
  padding-top: 0;
}

.feature.index2 {
  padding-top: 100px;
}

.feature .single-features .signle-icon {
  position: relative;
}

.feature h3 {
  padding-top: 128px;
  color: #2C2D3F;
  font-weight: 600;
  font-size: 21px;
}

.feature p {
  margin-top: 20px;
}

/* Responsive Features Section */
@media (max-width: 1024px) {

  /* Adjust image padding */
  .feature img {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Add padding above the features section */
  .feature {
    padding-top: 50px;
  }

  /* Adjust icon size */
  .feature .signle-icon i {
    font-size: 40px;
    /* Slightly reduced icon size */
    height: 70px;
    width: 70px;
    line-height: 70px;
    margin-left: -35px;
    /* Centering icon */
  }

  /* Adjust text size */
  .feature h3 {
    padding-top: 100px;
    font-size: 18px;
    /* Smaller font for heading */
  }

  .feature p {
    font-size: 16px;
    /* Smaller text */
    margin-top: 15px;
  }

  /* Adjust layout for columns */
  .feature .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    /* Ensure two columns in the row */
  }
}

/* Mobile Adjustment */
@media (max-width: 768px) {

  /* Smaller icons */
  .feature .signle-icon i {
    font-size: 30px;
    height: 60px;
    width: 60px;
    line-height: 60px;
    margin-left: -30px;
    /* Adjust icon positioning */
  }

  /* Adjust heading */
  .feature h3 {
    padding-top: 80px;
    font-size: 16px;
    /* Smaller heading */
  }

  /* Adjust paragraph text */
  .feature p {
    font-size: 14px;
    /* Smaller text */
    margin-top: 10px;
  }

  /* Stack items vertically on small screens */
  .feature .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
    /* Make items stack on mobile */
    margin-bottom: 20px;
    margin-inline: auto;
    justify-content: center;
  }
}

/* Mobile-first adjustments (for screens less than 425px) */
@media (max-width: 425px) {

  /* Adjust icons */
  .feature i {
    font-size: 28px;
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin-left: 15px  }

  .feature h3 {
    padding-top: 60px;
    font-size: 14px;
    /* Even smaller heading for small screens */
  }

  .feature p {
    font-size: 12px;
    /* Even smaller text */
  }

  /* Ensure full-width display for items */
  .feature .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




/*=============================
	End Feautes CSS
===============================*/

/* About Us Section - Typography Styling */


/* Section Title Styling */
#about .section-title h5 {
  font-size: 1rem;
  /* Adjusted for better readability */
  color: #f88a23;
  background-color: #9ccdff;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 15px;
  /* Increased padding for better appearance */
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Section Title Main Header */
#about .section-title h1 {
  font-size: 2.8rem;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  color: #008374;
  /* margin-bottom: 15px; */
  text-transform: capitalize;

}

/* Text Content Styling */
#about p {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Button Styling */
#about .btn {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #008374;
  border: none;
  color: #fff;
  padding: 10px 20px;
}

#about .btn:hover {
  background-color: #005f54;
}

/* Icon List Styling */
#about h5 i {
  color: #008374;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Responsive Image Styling */
#about .position-relative img {
  width: 100%;
  height: auto;
  /* Ensures image maintains aspect ratio */
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#about .position-relative img:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  #about .section-title h1 {
    font-size: 2.4rem;
  }

  #about p {
    font-size: 0.95rem;
  }

  #about .section-title h5 {
    font-size: 0.9rem;
    /* Reduced for medium screens */
    padding: 6px 12px;
    /* Adjust padding */
  }
}

@media (max-width: 768px) {
  #about .section-title h1 {
    font-size: 2rem;
  }

  #about p {
    font-size: 0.9rem;
    text-align: justify;
  }

  #about .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  #about h5 {
    font-size: 0.85rem;
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  #about .section-title h1 {
    text-align: center;
    font-size: 1.8rem;

  }

  #about .section-title {
    padding: 0;
  }

  #about p {
    font-size: 0.85rem;
  }

  #about .btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  #about h5 {
    font-size: 0.8rem;
    /* Minimal font size for small screens */
    padding: 4px 8px;
    /* Compact padding */
  }
}


/* //////////////////////////////////////////////////// */




/* ------------------------------------------------------------ */

.section-title h1 {
  color: #008374;
  margin-bottom: 30px;
}


/* ////////////////////////////////////////////////////////////// */


.section-title h1 {
  color: #008374;
  margin-bottom: 30px;

}

/* //----------Vision section----------------------------------------------------------------------- */

/* Vision Section Title Styling */
#vision .section-title h1 {
  color: #008374;
  font-size: 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  margin-bottom: 40px;
}

#vision .section-title h4 {
  color: #333;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
}

/* Paragraph Styling in Vision Section */
#vision .section-title p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Hover Animation for Images */
#vision .image-container {
  position: relative;
  overflow: hidden;
}

#vision .animated-img {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#vision .image-container:hover .animated-img {
  transform: scale(1.1);
  opacity: 0.9;
}

/* Animation for Small Div Boxes */
#vision .animated-div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#vision .animated-div:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

/* Responsive Text Adjustments for Vision Section */
@media (max-width: 768px) {
  #vision .section-title h3 {
    font-size: 1.5rem;
  }

  #vision .section-title h4 {
    font-size: 1.3rem;
  }

  #vision .section-title p {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Service Section start
--------------------------------------------------------------*/



.card::after {
  display: block;
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: calc(100% - 40px);
  height: 35px;
  background-color: #fff;
  -webkit-box-shadow: 0 19px 28px 5px rgba(64, 64, 64, 0.09);
  box-shadow: 0 19px 28px 5px rgba(64, 64, 64, 0.09);
  content: '';
  z-index: -1;
}

a.card {
  text-decoration: none;
}

.card {
  position: relative;
  border: 0;
  border-radius: 0;
  height: 300px;
  background-color: #fff;
  -webkit-box-shadow: 0 12px 20px 1px rgba(64, 64, 64, 0.09);
  box-shadow: 0 12px 20px 1px rgba(64, 64, 64, 0.09);
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
}

.box-shadow {
  -webkit-box-shadow: 0 12px 20px 1px rgba(64, 64, 64, 0.09) !important;
  box-shadow: 0 12px 20px 1px rgba(64, 64, 64, 0.09) !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.bg-white {
  background-color: #fff !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.d-block {
  display: block !important;
}



.card-text {
  padding-top: 12px;
  color: #8c8c8c;
}

.text-sm {
  font-size: 12px !important;
}

p,
.p {
  margin: 0 0 16px;
}

.card-title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.pt-1,
.py-1 {
  padding-top: .25rem !important;
}

.head-icon {
  margin-top: 18px;
  color: #FF4500
}





#services span {
  display: flex;
  justify-content: center;

  position: absolute;
  bottom: 20px;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-body p {
  position: absolute;
  top: 120px;
  left: 0;
  padding: 0 10px;
  font-size: 1rem !important;
  text-align: center;
}


/* Flip Icon Effect */
.card {
  cursor: auto;
}

.card .box-shadow {
  position: relative;
  perspective: 1000px;
  /* Enable 3D perspective for the flip effect */
}

.card .box-shadow i {
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

.card:hover .box-shadow i {
  transform: rotateY(180deg);
  /* Flip the icon */
}

/* Learn More Button Styles */
.card .btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--accent-color, #3498db);
  border: 2px solid var(--accent-color, #3498db);
  border-radius: 25px;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.card .btn:hover {
  background: var(--contrast-color, #ffffff);
  color: #000;
  border-color: var(--contrast-color, #ffffff);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Button Overlay Effect */
.card .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.3);
  /* Slight accent-colored overlay */
  transition: all 0.3s ease;
  z-index: 1;
}

.card .btn:hover::before {
  left: 0;
}

/* Button Icon Movement */
.card .btn i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.card .btn:hover i {
  margin-left: 10px;
}

/* Default: 3 boxes per row */
.row .col-lg-4 {
  width: 33.33%;
}

/* Two boxes per row for tablets */
@media (max-width: 1024px) {
  .row .col-lg-4 {
    width: 50%;
  }
}

/* Full width for smaller screens */
@media (max-width: 768px) {
  .row .col-lg-4 {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .card-body p {
    text-align: justify;
  }
}



/*-----------service end---------------------------------------------------



/*--------------------------------------------------------------


/*** product ***/


.service-item {
  transition: .5s;
  position: relative;
  top: 0;
  left: 0;

}



.service-item h4 {
  font-size: 1rem;
  color: #01433c;
  font-weight: bold;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .08);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #008374;
  color: #FFFFFF;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: .5s;
}

#Product .service-item img{
height: auto;
}



.service-item:hover .btn {
  width: 140px;
}


/*** Feature ***/
/* Responsive Layout for Services Section */
.row.g-4 {
  display: flex;
  flex-wrap: wrap;
  /* Wrap boxes on smaller screens */
  justify-content: space-between;
  /* Equal spacing between boxes */
}

.row.g-3 {
  display: flex;
  flex-wrap: wrap;
  /* Wrap boxes on smaller screens */
  justify-content: space-evenly;
  /* Equal spacing between boxes */
}



.col-lg-4.col-md-6 {
  flex: 1 1 calc(27% - 20px);
  /* 25% width minus spacing for large screens */
  max-width: calc(25% - 20px);
  /* Consistent max-width for alignment */
  margin-bottom: 20px;
  /* Spacing between rows */
}

@media (max-width: 991px) {
  .col-lg-4.col-md-6 {
    flex: 1 1 calc(50% - 20px);
    /* Two boxes per row on medium screens */
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .col-lg-4.col-md-6 {
    flex: 1 1 100%;
    /* One box per row on small screens */
    max-width: 100%;
  }
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/*** Team ***/
.team-item {
  padding: 10px;
}

.team-item img {
  position: relative;
  top: 0;
  transition: .5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 120px;
  transition: .5s;
}

.team-text h6 {
  font-size: 1.2rem;
}

.team-text p {
  font-size: 1rem;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #00796b;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: #005f54;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
  border-radius: 5px;
  overflow: hidden;
}

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

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

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

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

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

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background-color: #a9f5ec;
  margin-top: 100px;
}

.testimonials .info h3 {
  font-weight: 600;
  font-size: 3rem;
  color: #008374;
  padding-bottom: 20px;
}

.testimonials .swiper {
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05);
  background-color: var(--surface-color);
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.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;
  margin-bottom: 20px;
  position: relative;
}

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

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

@media (max-width: 767px) {

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

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

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
  background-color: var(--accent-color);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

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

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

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

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

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

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

.contact .contactForm input[type=text],
.contact .contactForm input[type=nunber],
.contact .contactForm input[type=email],
.contact .contactForm 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 .contactForm input[type=text]:focus,
.contact .contactForm input[type=email]:focus,
.contact .contactForm textarea:focus {
  border-color: var(--accent-color);
}

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

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

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

@media (max-width: 425px) {

  /* Reduce Icon Width */
  .contact .info-item i {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-right: 10px;
  }

  /* Adjust Info Item Text */
  .contact .info-item h3 {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .contact .info-item p {
    font-size: 14px;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 1.4;
  }

  /* Contact Form Inputs */
  .contact .contactForm input[type=text],
  .contact .contactForm input[type=email],
  .contact .contactForm textarea {
    font-size: 12px;
    padding: 8px 10px;
  }

  /* Adjust Button */
  .contact .contactForm button[type=submit] {
    padding: 8px 20px;
    font-size: 14px;
  }

  /* Adjust Container Padding */
  .contact .info-container,
  .contact .contactForm {
    padding: 15px;
  }
}



/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

.page-title {
  background-color: #008374;
  color: #fff;
}

.page-title h1 {
  color: #fff;
}

.page-title nav ol a:first-child {
  color: #c2c1c1;
}

.page-title nav ol a:first-child:hover {
  color: #fff;
}

.blog-posts .para1 {
  font-size: 2.3rem;
  font-weight: 300;

  text-align: center;
}

.blog-posts .para2 {
  text-align: center;
  margin: 0;
  margin-bottom: 50px;

}


.blog-posts article {
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, #222222, transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# 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;
  height: 60px;
  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;
}


/* ////////////////////reserarch & dev/////////////////////////////// */

.custom-rnd-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
  padding: 20px;
  gap: 20px;
  max-width: 1200px;
}

.content-left {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1.2s ease;
}

.content-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.content-left p {
  margin-bottom: 10px;
  color: #555;
}

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

.content-left li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.content-left i {
  font-size: 24px;
  color: #007bff;
}

.content-left h4 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.content-left p {
  font-size: 14px;
  color: #666;
}

.image-right {
  flex: 1;
  text-align: center;
  animation: slideInRight 1.2s ease;
  min-width: 300px;
}

.image-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* /////////////////process dev & manufacturing///////////////////////////////////////////////////// */

/* Main Container */
.process-services-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px;
  font-family: 'Roboto', sans-serif;
  color: #333;
}

/* Titles and Descriptions */
.main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #004d80;
  text-align: center;
  margin-bottom: 50px;
  margin-top: 80px;
  animation: fadeDown 1s ease-in-out;
}

.main-description {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.highlight-title {
  font-size: 2rem;
  font-weight: 600;
  color: #3c763d;
  margin-bottom: 25px;
  animation: fadeDown 1s ease-in-out;
}

/* Expertise Section */
.expertise-details {
  margin-bottom: 40px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expertise-entry {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.6;
  animation: fadeUp 1s ease-in-out;
}

.expertise-entry i {
  font-size: 1.8rem;
  color: #28a745;
  margin-top: 5px;
}

/* Image Section */
.services-image img {
  width: 100%;
  border-radius: 12px;
  margin: 50px 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1.5s ease-in-out;
}

/* Leadership Section */
.leadership-team {
  margin-top: 40px;
}

.leader-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 25px;
  animation: fadeUp 1.2s ease-in-out;
}

.leader-box h4 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d9534f;
  margin-bottom: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

/* For tablets and below (1024px and smaller) */
@media (max-width: 1024px) {
  .main-title {
    font-size: 2.2rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }

  .main-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .highlight-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .expertise-entry {
    font-size: 0.95rem;
    gap: 15px;
  }

  .services-image img {
    margin: 30px 0;
  }

  .leader-box h4 {
    font-size: 1.4rem;
  }
}

/* For mobile devices (768px and smaller) */
@media (max-width: 768px) {
  .process-services-section {
    padding: 20px;
  }

  .main-title {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .main-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .highlight-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .expertise-entry {
    font-size: 0.9rem;
    gap: 10px;
  }

  .leader-box h4 {
    font-size: 1.2rem;
  }

  .services-image img {
    margin: 20px 0;
  }
}

/* For mobile devices (480px and smaller) */
@media (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .main-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .highlight-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .expertise-entry {
    font-size: 0.85rem;
    gap: 8px;
  }

  .services-image img {
    margin: 15px 0;
  }

  .leader-box h4 {
    font-size: 1rem;
  }
}


/* /////////////////service consultancy////////////////////////////////////////////////// */

.expert-advice-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto;
  padding: 20px;
  gap: 20px;
  max-width: 1200px;
}

.content-left {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1.2s ease;
}

.content-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

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

.content-left li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.content-left i {
  font-size: 24px;
  color: #28a745;
}

.content-left h4 {
  font-size: 18px;
  margin: 0;
  color: #333;
}

.content-left p {
  font-size: 14px;
  color: #666;
}

.image-right {
  flex: 1;
  text-align: center;
  animation: slideInRight 1.2s ease;
  min-width: 300px;
}

.image-right img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsiveness */
@media (max-width: 1024px) {
  .expert-advice-section {
    padding: 15px;
    gap: 15px;
  }

  .content-left,
  .image-right {
    flex: 1 1 100%;
    /* Stacks content on smaller screens */
    min-width: 100%;
  }

  .content-left h2 {
    font-size: 24px;
  }

  .content-left h4 {
    font-size: 16px;
  }

  .content-left p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .expert-advice-section {
    flex-direction: column;
    /* Stacks content vertically on even smaller screens */
    align-items: center;
  }

  .content-left {
    text-align: center;
  }

  .image-right img {
    max-width: 90%;
    /* Slightly smaller images on smaller screens */
  }

  .content-left h2 {
    font-size: 22px;
  }

  .content-left h4 {
    font-size: 14px;
  }

  .content-left p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .content-left h2 {
    font-size: 20px;
  }

  .content-left h4 {
    font-size: 14px;
  }

  .content-left p {
    font-size: 10px;
  }

  .image-right img {
    max-width: 80%;
    /* Further reduce image size */
  }
}

/* ////////////contact certification///////////////////////////////////////// */

.certifications-section {
  margin-top: 50px;
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.certifications-section h2 {
  font-size: 2em;
  margin-bottom: 50px;
  color: #00b6a1;
  font-weight: bold;
}

.certifications-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.certification-box {
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease;
}

.certification-box img {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.certification-box p {
  font-size: 1em;
  color: #555;
}

.certification-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* /////////////////marquee///////////////////////////////////////// */


/* Container Styles */
.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #008374;
  border: 2px solid #e7e7e7;
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
}

/* Marquee Scrolling Content */
.marquee {
  display: flex;
  animation: scroll 25s linear infinite;
  white-space: nowrap;
}

/* Each Sentence */
.marquee span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  padding-right: 50px;
  /* Space between sentences */
}

.marquee span i {
  margin-right: 10px;
  font-size: 20px;
  color: #000;
}

/* Scrolling Animation */
@keyframes scroll {
  from {
    transform: translateX(0%);
  }

  to {
    transform: translateX(-50%);
  }
}



.marquee-container:hover .marquee {
  animation-play-state: paused;
}


/* ////////////////////member1//////////////////////////////////// */

/* Member Profile Section */
.member-profile {
  font-family: "Arial", sans-serif;
  background-color: #f9f9f9;
  padding-bottom: 50px;
}

.profile-header {
  background-color: #eef7f9;
  padding: 20px 0;
}

.profile-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0056a5;
  margin: 0;
}

.profile-content {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
}

.profile-image img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-details {
  color: #444;
  line-height: 1.8;
}

.profile-details h2 {
  font-size: 2rem;
  color: #0056a5;
  margin-bottom: 10px;
}

.profile-details p.subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  font-weight: bold;
}

.profile-details h3 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #333;
}

.profile-details p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

.profile-details ul {
  margin-top: 10px;
  padding-left: 20px;
}

.profile-details ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #444;
}

.profile-details h3 i {
  margin-right: 10px;
}

.profile-details .text-primary {
  color: #0056a5 !important;
}

.profile-details .text-success {
  color: #28a745 !important;
}

.profile-details .text-info {
  color: #17a2b8 !important;
}

.profile-details .text-warning {
  color: #ffc107 !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .profile-content {
    padding: 20px;
  }

  .profile-header h1 {
    font-size: 2rem;
  }

  .profile-image img {
    max-width: 90%;
  }

  .profile-details h2 {
    font-size: 1.75rem;
  }

  .profile-details h3 {
    font-size: 1.25rem;
  }

  .profile-details p.subtitle {
    font-size: 1rem;
  }

  .profile-details p,
  .profile-details ul li {
    font-size: 0.9rem;
  }
}



/* ///////////////////////////////////////////////////// */





.projects .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.projects .portfolio-content:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.projects .portfolio-content img {
  transition: 0.3s;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.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);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 16px;
  padding: 8px 12px;
  font-weight: 500;
  color: #ffffff;
  background-color: var(--accent-color);
  margin-bottom: 10px;
  border-radius: 4px;
}

.projects .portfolio-content .portfolio-info .preview-link {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

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


.isotope-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.portfolio-item {
  flex: 1 1 calc(33.333% - 16px); /* 3 boxes in a row, minus gap space */
}

.portfolio-content {
  height: 100%;
}

.portfolio-content .img-fluid {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.portfolio-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .portfolio-item {
    flex: 1 1 calc(50% - 16px); /* 2 boxes in a row */
  }
}

@media (max-width: 768px) {
  .portfolio-item {
    flex: 1 1 100%; /* 1 box in a row */
  }
}


/* ----------------marquee about page----------------------------------------------------------- */


/* Container Styles */
.instrument-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  background-color: #f6d7b0; /* Warm beige background */
  border: 2px solid #e8b989; /* Soft warm border */
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
}

/* Marquee Scrolling Content */
.instrument-marquee {
  display: flex;
  animation: scroll-instruments 40s linear infinite; /* Adjust duration for smooth speed */
  white-space: nowrap;
}

/* Each Instrument Name */
.instrument-item {
  font-size: 20px;
  font-weight: bold;
  color: #6b4226;
  padding-right: 50px; /* Space between items */
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Scrolling Animation */
@keyframes scroll-instruments {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------- */

.modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background: rgba(0, 0, 0, 0.8); /* Dark overlay */
  z-index: 1000; /* Ensure it's above other content */
  overflow-y: auto; /* Allow scrolling if needed */
}

.modal-content {
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  width: 90%; /* Adjust modal width */
  max-width: 500px; /* Set max width */
  text-align: center;
  position: relative;
  top: 10%; /* Center vertically */
}

.country-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%; /* Make items take full width within the modal */
  max-width: 300px; /* Control item size */
}

.country-item img {
  width: 24px; /* Resize images */
  height: 18px;
  object-fit: cover;
}

.country-item:hover {
  background-color: #f0f0f0;
}


/* --------------------------------------------------------------- */

