/**
* Template Name: Proteam Europa
* Template URL: https://bootstrapmade.com/Proteam Europa-bootstrap-construction-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #364d59; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #52565e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #1CA3EC; /* 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: #aaaaaa; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #aaaaaa; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #dfe3e7; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0a2a5a; /* 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);
}

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: #11111111;
  --heading-color: #11111111;
  color: var(--default-color);
  background-color: #0a2a5a1a;
  /* background-color: var(--background-color); */
  padding: 0px 50px;
  transition: all 0.5s;
  z-index: 997;
  top: 0%;
}


.header .logo img {
  max-height: 100px;
  /* margin-right: 8px; */
  /* object-fit: contain; */
}

.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;
    width: 70%;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    background-color: #0a2a5a; 
    padding: 10px 20px; 
    border-bottom-left-radius: 38px; 
    border-bottom-right-radius: 38px; 
    float: right; 
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 25px 34px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 14px;
    padding: 0 2px;
    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: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    max-height:550px;
    /* overflow: hidden; */
  }

  .navmenu .dropdown ul h5 {
    color: #ffffff;
    background-color: #0a2a5a;
    height: 35px;
    display: flex;               
    justify-content: center;     
    align-items: center;         
    text-align: center;          
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
    
  }

  .navmenu .dropdown ul a {
    padding: 10px 50px;
    font-size: 14px;
    text-transform: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* font-weight: 400; */
    color: var(--nav-dropdown-color);
    text-align: center;

  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .bi-chevron-right {
    font-size: 1.5rem;  /* Adjust size */
    font-weight: bolder;  /* Try making it bolder */
  }
  
}

/* Mobile Navigation */
@media (max-width: 1199px) {

  .logo img {
    width: 115px;
  }
  .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);
  }

  .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 ul h5 {
    color: #ffffff;
    background-color: #0a2a5a;
    height: 35px;
    display: flex;               
    justify-content: center;     
    align-items: center;         
    text-align: center;          
  }

  .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;
  }
}
h5.mt-3 {
      color: white;
    }

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  position: relative;
}

.footer .container {
  position: relative;
}
 

.footer {
  /* position: relative;
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  overflow: hidden; */
  color: var(--default-color);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  min-height: 400px; /* Set minimum height based on your content */
  display: flex;
  flex-direction: column;
}

.footer-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  
}

.footer .container {
  position: relative;
  z-index: 2; /* Higher than overlay */
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.6); /* Solid dark overlay */
  position: absolute;
  inset: 0;
  z-index: 1; /* Ensure overlay stays between video and content */
}

.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;
  font-family: var(--heading-font);
}

.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: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.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: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--default-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 60px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 10px;
}

.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%);
}
.wave-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.wave-bottom svg {
  display: block;
  width: 100%;
  height: 150px; /* Default for desktop */
  margin-top: 0;
  padding-top: 50px;
}

@media (max-width: 768px) {
  .wave-bottom svg {
    height: 100px; /* Reduced height for tablets and mobile */
  }
}

@media (max-width: 480px) {
  .wave-bottom svg {
    height: 60px; /* Even smaller for very small devices */
  }
}


/*--------------------------------------------------------------
# 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: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

/* Responsive adjustments for section titles */
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 24px;
  }
  
  .section-title h2:before,
  .section-title h2:after {
    width: 30px;
    height: 2px;
  }
  
  .section-title h2:before {
    margin: 0 10px 10px 0;
  }
  
  .section-title h2:after {
    margin: 0 0 10px 10px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 20px;
  }
  
  .section-title h2:before,
  .section-title h2:after {
    width: 25px;
  }
  
  .section-title h2:before {
    margin: 0 8px 10px 0;
  }
  
  .section-title h2:after {
    margin: 0 0 10px 8px;
  }
}

.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 .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;
  }

  .productImage {
    height: 250px; /* Reduce height for better fit */
    width: 90%; /* Reduce width slightly */
  }
}

.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: 3;
  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: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  background: var(--accent-color);
  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;
  }
}

/*--------------------------------------------------------------
# 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: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats-counter .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats-counter .stats-item span {
  color: var(--heading-color);
  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;
}

/*--------------------------------------------------------------
# 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 {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@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: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  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;
}

/*--------------------------------------------------------------
# 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);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 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;
}
/*.productImage{*/
/*  height: max-content;*/
/*  width: 500px;*/
/*}*/
.productImage {
  height: 300px; /* Set a max height instead of fixed height */
  width: 100%; /* Make it flexible */
  max-width: 500px; /* Set a maximum width */
  object-fit: contain;
  display: block; /* Ensures it behaves properly inside containers */
  margin: 0 auto; /* Centers the image */
}
.carousel-indicators button {
  background-color: black !important; /* Set button color to black */
  width: 12px; /* Adjust size if needed */
  height: 12px;
  border-radius: 50%; /* Make it round */
  border: none;
  opacity: 1; /* Ensure full visibility */
}

.carousel-indicators {
  bottom: -60px; /* Adjust position to move it below the content */
}

.productCard{
  height: 100px;
  object-fit: contain;
}
 
.social-icons {
  z-index: 10;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: black;
  padding: 15px 10px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover i {
  transform: scale(1.2);
}

/* WhatsApp - Green */
.social-icon.whatsapp:hover i {
  color: #25D366;
}

/* Instagram - Gradient */
.social-icon.instagram:hover i {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Facebook - Blue */
.social-icon.facebook:hover i {
  color: #1877F2;
}

/* Project Table */
table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  background: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 15px;
  text-align: left;
}
th {
  background-color: #1CA3EC;
  color: white;
  text-transform: uppercase;
}
tr:nth-child(even) {
  background-color: #f2f2f2;
}
tr:hover {
  background-color: #ddd;
  transition: 0.3s;
}

.bg-image-bottom {
  background-image: url('../img/wave.png');
  background-size: cover;
  background-position: center;
  height: 340px; /* Desktop default */
  border-radius: 12px;
}

/* Tablet view: width between 768px and 991.98px */
@media (max-width: 991.98px) and (min-width: 768px) {

  .bg-image-bottom {
    height: 200px;
  }
}

/* Mobile view: width below 768px */
@media (max-width: 767.98px) {

  .header {
    padding: 0 0px;
  }
  
  .bg-image-bottom {
    height: 100px;
  }
}

.productCard {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 15px;
  border: none;
  padding: 20px 15px;
  background: linear-gradient(135deg, 
    #e6f3ff 0%, 
    #b3d9ff 25%, 
    #80bfff 50%, 
    #4da6ff 75%, 
    #1a8cff 100%);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.15),
    0 3px 10px rgba(0, 191, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
  min-height: 160px;
  width: 85%;
  margin: 0 auto;
  backdrop-filter: blur(10px);
  /* Elite water glass effect */
  background: linear-gradient(135deg, 
    rgba(230, 243, 255, 0.95) 0%, 
    rgba(179, 217, 255, 0.95) 25%, 
    rgba(128, 191, 255, 0.95) 50%, 
    rgba(77, 166, 255, 0.95) 75%, 
    rgba(26, 140, 255, 0.95) 100%);
}

/* Elite water wave animation layers */
.productCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: 
    radial-gradient(ellipse 50% 20% at 25% 50%, rgba(0, 191, 255, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 20% at 75% 50%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 191, 255, 0.1) 20%,
      rgba(135, 206, 235, 0.3) 40%,
      rgba(0, 191, 255, 0.1) 60%,
      rgba(135, 206, 235, 0.2) 80%,
      transparent 100%
    );
  animation: waterWave1 4s infinite ease-in-out;
  z-index: 1;
}

.productCard::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: 
    radial-gradient(ellipse 40% 15% at 30% 60%, rgba(0, 191, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 40% 15% at 70% 40%, rgba(135, 206, 235, 0.2) 0%, transparent 50%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 191, 255, 0.05) 25%,
      rgba(135, 206, 235, 0.2) 45%,
      rgba(0, 191, 255, 0.05) 65%,
      rgba(135, 206, 235, 0.15) 85%,
      transparent 100%
    );
  animation: waterWave2 6s infinite ease-in-out;
  z-index: 1;
}

/* Additional wave layer for more depth */
.productCard .wave-layer {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: 
    radial-gradient(ellipse 60% 25% at 20% 30%, rgba(0, 191, 255, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 60% 25% at 80% 70%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 191, 255, 0.08) 15%,
      rgba(135, 206, 235, 0.25) 35%,
      rgba(0, 191, 255, 0.08) 55%,
      rgba(135, 206, 235, 0.18) 75%,
      transparent 100%
    );
  animation: waterWave3 8s infinite ease-in-out;
  z-index: 1;
}

@keyframes waterWave1 {
  0% {
    transform: translateX(-100%) translateY(0px);
  }
  25% {
    transform: translateX(-50%) translateY(-5px);
  }
  50% {
    transform: translateX(0%) translateY(0px);
  }
  75% {
    transform: translateX(50%) translateY(5px);
  }
  100% {
    transform: translateX(100%) translateY(0px);
  }
}

@keyframes waterWave2 {
  0% {
    transform: translateX(-100%) translateY(0px);
  }
  25% {
    transform: translateX(-50%) translateY(3px);
  }
  50% {
    transform: translateX(0%) translateY(0px);
  }
  75% {
    transform: translateX(50%) translateY(-3px);
  }
  100% {
    transform: translateX(100%) translateY(0px);
  }
}

@keyframes waterWave3 {
  0% {
    transform: translateX(-100%) translateY(0px);
  }
  25% {
    transform: translateX(-50%) translateY(-2px);
  }
  50% {
    transform: translateX(0%) translateY(0px);
  }
  75% {
    transform: translateX(50%) translateY(2px);
  }
  100% {
    transform: translateX(100%) translateY(0px);
  }
}

.productCard img {
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 191, 255, 0.3));
}

.productCard h5 {
  margin: 0;
  color: #0056b3;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}

.productCard::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 191, 255, 0.1) 50%,
    transparent 70%
  );
  animation: waterShimmer 3s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes waterShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.productCard:hover {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 191, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, 
    #d4e6ff 0%, 
    #a3ccff 25%, 
    #72b3ff 50%, 
    #4199ff 75%, 
    #1080ff 100%);
  text-decoration: none;
  color: inherit;
}

.productCard:hover::before {
  animation: waterWave1 2s infinite ease-in-out;
}

.productCard:hover::after {
  animation: waterWave2 3s infinite ease-in-out;
}

.productCard:hover .wave-layer {
  animation: waterWave3 4s infinite ease-in-out;
}

.productCard:hover img {
  transform: scale(1.15);
  filter: drop-shadow(0 8px 16px rgba(0, 191, 255, 0.5));
}

.productCard:hover h5 {
  color: #003d82;
  text-shadow: 0 2px 4px rgba(0, 102, 204, 0.3);
  transform: translateY(-2px);
}

/* Elite corner accents */
.productCard .elite-corner {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent rgba(0, 191, 255, 0.4) transparent transparent;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Elite hover effects for corner */
.productCard:hover .elite-corner {
  border-color: transparent rgba(0, 191, 255, 0.7) transparent transparent;
  transform: scale(1.1);
}

/* Responsive adjustments for product cards */
@media (max-width: 767.98px) {
  .productCard {
    padding: 15px 10px;
    min-height: 140px;
  }
  
  .productCard img {
    height: 60px;
    margin-bottom: 8px;
  }
  
  .productCard h5 {
    font-size: 14px;
  }
  
  .productCard::after {
    border-width: 0 15px 15px 0;
  }
}

/*--------------------------------------------------------------
# New Content Section Styles
--------------------------------------------------------------*/

/* Product Carousel Styles */
#productCarousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  
}

#productCarousel .carousel-item {
  height: 600px;
  position: relative;
}

#productCarousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#productCarousel .carousel-caption {
  background: linear-gradient(135deg, 
    rgba(0, 191, 255, 0.85) 0%, 
    rgba(0, 102, 204, 0.85) 100%);
  border-radius: 10px;
  margin: 20px;
  padding: 20px;
  bottom: 20px;
  left: 20px;
  right: 20px;
  transform: none;
}

#productCarousel .carousel-caption h5 {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#productCarousel .carousel-caption p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#productCarousel .carousel-control-prev,
#productCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 191, 255, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}

#productCarousel .carousel-control-prev {
  left: 20px;
}

#productCarousel .carousel-control-next {
  right: 20px;
}

#productCarousel .carousel-indicators {
  bottom: 20px;
}

#productCarousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin: 0 5px;
}

#productCarousel .carousel-indicators button.active {
  background-color: rgba(0, 191, 255, 1);
  border-color: white;
}

/* Section Subtitle Styles */
.section-subtitle {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-color) 50%, 
    transparent 100%);
  border-radius: 2px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  border-radius: 1px;
}

/* Lead text styling */
.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 400;
}

/* Responsive adjustments for new content */
@media (max-width: 767.98px) {
  #productCarousel .carousel-item {
    height: 450px;
  }
  
  #productCarousel .carousel-caption {
    padding: 15px;
    margin: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }
  
  #productCarousel .carousel-caption h5 {
    font-size: 1.2rem;
  }
  
  #productCarousel .carousel-caption p {
    font-size: 0.9rem;
  }
  
  #productCarousel .carousel-control-prev,
  #productCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  #productCarousel .carousel-control-prev {
    left: 10px;
  }
  
  #productCarousel .carousel-control-next {
    right: 10px;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .lead {
    font-size: 1rem;
  }
}

/* Product Page Styles */
.product-catalog-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-image-container:hover {
  transform: translateY(-5px);
}

.product-list-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 8px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.product-list-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(28, 163, 236, 0.3) 0%, 
    rgba(40, 167, 69, 0.3) 25%, 
    rgba(111, 66, 193, 0.3) 50%, 
    rgba(255, 193, 7, 0.3) 75%, 
    rgba(220, 53, 69, 0.3) 100%);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-list-container:hover::before {
  opacity: 1;
}

.category-title {
  position: relative;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(135deg, rgba(28, 163, 236, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-title:hover {
  color: #1CA3EC;
  text-shadow: 0 2px 4px rgba(28, 163, 236, 0.2);
}

.category-title:hover::before {
  opacity: 1;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1CA3EC 0%, #0066CC 50%, #1CA3EC 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(28, 163, 236, 0.3);
}

.subcategory-title {
  color: #0066CC;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e9ecef;
  position: relative;
}

.subcategory-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1CA3EC 0%, #0066CC 100%);
  border-radius: 1px;
}

.category-group {
  margin-bottom: 30px;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.9) 0%, 
    rgba(248, 250, 252, 0.9) 50%, 
    rgba(255, 255, 255, 0.9) 100%);
  border: 2px solid transparent;
  border-radius: 15px;
  text-decoration: none;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.05),
    0 2px 6px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.product-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(28, 163, 236, 0.1), transparent);
  transition: left 0.5s ease;
}

.product-item:hover::before {
  left: 100%;
}

.product-item:hover {
  border-color: #1CA3EC;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 248, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0.95) 100%);
  transform: translateX(8px) translateY(-2px) scale(1.02);
  box-shadow: 
    0 12px 25px rgba(28, 163, 236, 0.15),
    0 6px 12px rgba(28, 163, 236, 0.1),
    0 2px 6px rgba(28, 163, 236, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.product-item:hover .product-name {
  color: #1CA3EC;
  text-shadow: 0 2px 4px rgba(28, 163, 236, 0.2);
  transform: translateX(2px);
}

.product-arrow {
  color: #1CA3EC;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(28, 163, 236, 0.3));
}

.product-item:hover .product-arrow {
  transform: translateX(8px) scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(28, 163, 236, 0.4));
}

/* Responsive adjustments for product page */
@media (max-width: 991.98px) {
  .product-list-container {
    padding: 30px;
    margin-top: 30px;
  }
  
  .product-item {
    padding: 12px 15px;
  }
  
  .product-name {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .product-list-container {
    padding: 20px;
  }
  
  .category-title {
    font-size: 1.5rem;
  }
  
  .subcategory-title {
    font-size: 1.1rem;
  }
  
  .product-item {
    padding: 10px 12px;
  }
  
  .product-name {
    font-size: 0.95rem;
  }
}

/* Abouts Page Styles */
.abouts-page .company-overview {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.abouts-page .company-tagline {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.abouts-page .company-overview .lead {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.abouts-page .history {
  padding: 100px 0;
  background: #ffffff;
}

.abouts-page .history .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.abouts-page .history p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.abouts-page .who-we-are {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.abouts-page .subtitle {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.abouts-page .feature-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abouts-page .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.abouts-page .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.abouts-page .feature-card .icon-box {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.abouts-page .feature-card:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
}

.abouts-page .feature-card .icon-box i {
  font-size: 2.5rem;
  color: #ffffff;
}

.abouts-page .feature-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.abouts-page .feature-card p {
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

.abouts-page .experience {
  padding: 100px 0;
  background: #ffffff;
}

.abouts-page .experience .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.abouts-page .experience p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.abouts-page .export-activity {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.abouts-page .export-info {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
  border: none;
  position: relative;
  overflow: hidden;
}

.abouts-page .export-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.abouts-page .export-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.abouts-page .export-info p {
  color: #6c757d;
  line-height: 1.8;
  margin: 0;
  font-size: 1.1rem;
}

.abouts-page .certifications {
  padding: 100px 0;
  background: #ffffff;
}

.abouts-page .certification-card {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.abouts-page .certification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.abouts-page .certification-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.abouts-page .certification-card .cert-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.abouts-page .certification-card:hover .cert-icon {
  transform: scale(1.15) rotate(5deg);
}

.abouts-page .certification-card .cert-icon i {
  font-size: 3rem;
  color: #ffffff;
}

.abouts-page .certification-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.abouts-page .certification-card p {
  color: #6c757d;
  font-weight: 500;
  margin: 0;
  font-size: 1.1rem;
}

/* Responsive adjustments for abouts page */
@media (max-width: 767.98px) {
  .abouts-page .company-tagline {
    font-size: 1.6rem;
  }
  
  .abouts-page .company-overview {
    padding: 60px 0 40px;
  }
  
  .abouts-page .history,
  .abouts-page .who-we-are,
  .abouts-page .experience,
  .abouts-page .export-activity,
  .abouts-page .certifications {
    padding: 60px 0;
  }
  
  .abouts-page .feature-card,
  .abouts-page .export-info,
  .abouts-page .certification-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }
  
  .abouts-page .feature-card .icon-box {
    width: 80px;
    height: 80px;
  }
  
  .abouts-page .certification-card .cert-icon {
    width: 100px;
    height: 100px;
  }
  
  .abouts-page .feature-card .icon-box i {
    font-size: 2rem;
  }
  
  .abouts-page .certification-card .cert-icon i {
    font-size: 2.5rem;
  }
  
  .abouts-page .history .section-title,
  .abouts-page .experience .section-title {
    font-size: 2rem;
  }
  
  .abouts-page .subtitle {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Product Container Glow Effects - Different Colors for Each Container
--------------------------------------------------------------*/

/* Commercial Filters - Blue Border and Glow */
.product-list-container.commercial-filters {
  border: 2px solid rgba(28, 163, 236, 0.3);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95) 0%, 
    rgba(240, 248, 255, 0.95) 50%, 
    rgba(230, 243, 255, 0.95) 100%);
}

.product-list-container.commercial-filters:hover {
  box-shadow: 
    0 25px 60px rgba(28, 163, 236, 0.25),
    0 15px 30px rgba(28, 163, 236, 0.15),
    0 5px 15px rgba(28, 163, 236, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(28, 163, 236, 0.6);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(240, 248, 255, 0.98) 50%, 
    rgba(230, 243, 255, 0.98) 100%);
}

/* Commercial Pumps - Green Border and Glow */
.product-list-container.commercial-pumps {
  border: 2px solid rgba(40, 167, 69, 0.3);
}

.product-list-container.commercial-pumps:hover {
  box-shadow: 0 20px 50px rgba(40, 167, 69, 0.4), 0 10px 25px rgba(40, 167, 69, 0.2);
  border: 2px solid rgba(40, 167, 69, 0.5);
}

/* Competition Equipment - Purple Border and Glow */
.product-list-container.competition-equipment {
  border: 2px solid rgba(111, 66, 193, 0.3);
}

.product-list-container.competition-equipment:hover {
  box-shadow: 0 20px 50px rgba(111, 66, 193, 0.4), 0 10px 25px rgba(111, 66, 193, 0.2);
  border: 2px solid rgba(111, 66, 193, 0.5);
}

/* Water Treatment - Orange Border and Glow */
.product-list-container.water-treatment {
  border: 2px solid rgba(255, 193, 7, 0.3);
}

.product-list-container.water-treatment:hover {
  box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4), 0 10px 25px rgba(255, 193, 7, 0.2);
  border: 2px solid rgba(255, 193, 7, 0.5);
}

/* Pool Lighting - Yellow Border and Glow */
.product-list-container.pool-lighting {
  border: 2px solid rgba(255, 235, 59, 0.3);
}

.product-list-container.pool-lighting:hover {
  box-shadow: 0 20px 50px rgba(255, 235, 59, 0.4), 0 10px 25px rgba(255, 235, 59, 0.2);
  border: 2px solid rgba(255, 235, 59, 0.5);
}

/* Pool Heating - Red Border and Glow */
.product-list-container.pool-heating {
  border: 2px solid rgba(220, 53, 69, 0.3);
}

.product-list-container.pool-heating:hover {
  box-shadow: 0 20px 50px rgba(220, 53, 69, 0.4), 0 10px 25px rgba(220, 53, 69, 0.2);
  border: 2px solid rgba(220, 53, 69, 0.5);
}

/* Wellness - Pink Border and Glow */
.product-list-container.wellness {
  border: 2px solid rgba(233, 30, 99, 0.3);
}

.product-list-container.wellness:hover {
  box-shadow: 0 20px 50px rgba(233, 30, 99, 0.4), 0 10px 25px rgba(233, 30, 99, 0.2);
  border: 2px solid rgba(233, 30, 99, 0.5);
}

/* PVC Fittings - Teal Border and Glow */
.product-list-container.pvc-fittings {
  border: 2px solid rgba(20, 184, 166, 0.3);
}

.product-list-container.pvc-fittings:hover {
  box-shadow: 0 20px 50px rgba(20, 184, 166, 0.4), 0 10px 25px rgba(20, 184, 166, 0.2);
  border: 2px solid rgba(20, 184, 166, 0.5);
}

/* Water Park Slides - Cyan Border and Glow */
.product-list-container.water-park-slides {
  border: 2px solid rgba(13, 202, 240, 0.3);
}

.product-list-container.water-park-slides:hover {
  box-shadow: 0 20px 50px rgba(13, 202, 240, 0.4), 0 10px 25px rgba(13, 202, 240, 0.2);
  border: 2px solid rgba(13, 202, 240, 0.5);
}

/* Pool Cover - Indigo Border and Glow */
.product-list-container.pool-cover {
  border: 2px solid rgba(102, 16, 242, 0.3);
}

.product-list-container.pool-cover:hover {
  box-shadow: 0 20px 50px rgba(102, 16, 242, 0.4), 0 10px 25px rgba(102, 16, 242, 0.2);
  border: 2px solid rgba(102, 16, 242, 0.5);
}

/* Pool Shell Equipment - Lime Border and Glow */
.product-list-container.pool-shell-equipment {
  border: 2px solid rgba(130, 201, 30, 0.3);
}

.product-list-container.pool-shell-equipment:hover {
  box-shadow: 0 20px 50px rgba(130, 201, 30, 0.4), 0 10px 25px rgba(130, 201, 30, 0.2);
  border: 2px solid rgba(130, 201, 30, 0.5);
}

/* Fountain & Water Features - Magenta Border and Glow */
.product-list-container.fountain-water-features {
  border: 2px solid rgba(226, 49, 255, 0.3);
}

.product-list-container.fountain-water-features:hover {
  box-shadow: 0 20px 50px rgba(226, 49, 255, 0.4), 0 10px 25px rgba(226, 49, 255, 0.2);
  border: 2px solid rgba(226, 49, 255, 0.5);
}

/*--------------------------------------------------------------
# Product Item Hover Effects - Matching Container Colors
--------------------------------------------------------------*/

/* Commercial Filters - Blue Product Items */
.product-list-container.commercial-filters .product-item:hover {
  border-color: rgba(28, 163, 236, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(28, 163, 236, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(28, 163, 236, 0.3);
}

.product-list-container.commercial-filters .product-item:hover .product-name {
  color: rgba(28, 163, 236, 1);
}

.product-list-container.commercial-filters .product-item:hover .product-arrow {
  color: rgba(28, 163, 236, 1);
}

/* Commercial Pumps - Green Product Items */
.product-list-container.commercial-pumps .product-item:hover {
  border-color: rgba(40, 167, 69, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(40, 167, 69, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.product-list-container.commercial-pumps .product-item:hover .product-name {
  color: rgba(40, 167, 69, 1);
}

.product-list-container.commercial-pumps .product-item:hover .product-arrow {
  color: rgba(40, 167, 69, 1);
}

/* Competition Equipment - Purple Product Items */
.product-list-container.competition-equipment .product-item:hover {
  border-color: rgba(111, 66, 193, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(111, 66, 193, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(111, 66, 193, 0.3);
}

.product-list-container.competition-equipment .product-item:hover .product-name {
  color: rgba(111, 66, 193, 1);
}

.product-list-container.competition-equipment .product-item:hover .product-arrow {
  color: rgba(111, 66, 193, 1);
}

/* Water Treatment - Orange Product Items */
.product-list-container.water-treatment .product-item:hover {
  border-color: rgba(255, 193, 7, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 193, 7, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.product-list-container.water-treatment .product-item:hover .product-name {
  color: rgba(255, 193, 7, 1);
}

.product-list-container.water-treatment .product-item:hover .product-arrow {
  color: rgba(255, 193, 7, 1);
}

/* Pool Lighting - Yellow Product Items */
.product-list-container.pool-lighting .product-item:hover {
  border-color: rgba(255, 235, 59, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 235, 59, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(255, 235, 59, 0.3);
}

.product-list-container.pool-lighting .product-item:hover .product-name {
  color: rgba(255, 235, 59, 1);
}

.product-list-container.pool-lighting .product-item:hover .product-arrow {
  color: rgba(255, 235, 59, 1);
}

/* Pool Heating - Red Product Items */
.product-list-container.pool-heating .product-item:hover {
  border-color: rgba(220, 53, 69, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(220, 53, 69, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
}

.product-list-container.pool-heating .product-item:hover .product-name {
  color: rgba(220, 53, 69, 1);
}

.product-list-container.pool-heating .product-item:hover .product-arrow {
  color: rgba(220, 53, 69, 1);
}

/* Wellness - Pink Product Items */
.product-list-container.wellness .product-item:hover {
  border-color: rgba(233, 30, 99, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(233, 30, 99, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.product-list-container.wellness .product-item:hover .product-name {
  color: rgba(233, 30, 99, 1);
}

.product-list-container.wellness .product-item:hover .product-arrow {
  color: rgba(233, 30, 99, 1);
}

/* PVC Fittings - Teal Product Items */
.product-list-container.pvc-fittings .product-item:hover {
  border-color: rgba(20, 184, 166, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(20, 184, 166, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.product-list-container.pvc-fittings .product-item:hover .product-name {
  color: rgba(20, 184, 166, 1);
}

.product-list-container.pvc-fittings .product-item:hover .product-arrow {
  color: rgba(20, 184, 166, 1);
}

/* Water Park Slides - Cyan Product Items */
.product-list-container.water-park-slides .product-item:hover {
  border-color: rgba(13, 202, 240, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(13, 202, 240, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(13, 202, 240, 0.3);
}

.product-list-container.water-park-slides .product-item:hover .product-name {
  color: rgba(13, 202, 240, 1);
}

.product-list-container.water-park-slides .product-item:hover .product-arrow {
  color: rgba(13, 202, 240, 1);
}

/* Pool Cover - Indigo Product Items */
.product-list-container.pool-cover .product-item:hover {
  border-color: rgba(102, 16, 242, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(102, 16, 242, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(102, 16, 242, 0.3);
}

.product-list-container.pool-cover .product-item:hover .product-name {
  color: rgba(102, 16, 242, 1);
}

.product-list-container.pool-cover .product-item:hover .product-arrow {
  color: rgba(102, 16, 242, 1);
}

/* Pool Shell Equipment - Lime Product Items */
.product-list-container.pool-shell-equipment .product-item:hover {
  border-color: rgba(130, 201, 30, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(130, 201, 30, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(130, 201, 30, 0.3);
}

.product-list-container.pool-shell-equipment .product-item:hover .product-name {
  color: rgba(130, 201, 30, 1);
}

.product-list-container.pool-shell-equipment .product-item:hover .product-arrow {
  color: rgba(130, 201, 30, 1);
}

/* Fountain & Water Features - Magenta Product Items */
.product-list-container.fountain-water-features .product-item:hover {
  border-color: rgba(226, 49, 255, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, rgba(226, 49, 255, 0.05) 100%);
  box-shadow: 0 8px 25px rgba(226, 49, 255, 0.3);
}

.product-list-container.fountain-water-features .product-item:hover .product-name {
  color: rgba(226, 49, 255, 1);
}

.product-list-container.fountain-water-features .product-item:hover .product-arrow {
  color: rgba(226, 49, 255, 1);
}

/* Commercial Filters - Blue Theme */
.commercial-filters .product-item {
  border-left: 4px solid rgba(28, 163, 236, 0.3);
  transition: all 0.3s ease;
}

.commercial-filters .product-item:hover {
  border-left: 6px solid rgba(28, 163, 236, 0.6);
}

/* Commercial Pumps - Green Theme */
.commercial-pumps .product-item {
  border-left: 4px solid rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.commercial-pumps .product-item:hover {
  border-left: 6px solid rgba(40, 167, 69, 0.6);
}

/* Competition Equipment - Purple Theme */
.competition-equipment .product-item {
  border-left: 4px solid rgba(111, 66, 193, 0.3);
  transition: all 0.3s ease;
}

.competition-equipment .product-item:hover {
  border-left: 6px solid rgba(111, 66, 193, 0.6);
}

/* Water Treatment - Orange Theme */
.water-treatment .product-item {
  border-left: 4px solid rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
}

.water-treatment .product-item:hover {
  border-left: 6px solid rgba(255, 193, 7, 0.6);
}

/* Pool Lighting - Yellow Theme */
.pool-lighting .product-item {
  border-left: 4px solid rgba(255, 235, 59, 0.3);
  transition: all 0.3s ease;
}

.pool-lighting .product-item:hover {
  border-left: 6px solid rgba(255, 235, 59, 0.6);
}

/* Pool Heating - Red Theme */
.pool-heating .product-item {
  border-left: 4px solid rgba(220, 53, 69, 0.3);
  transition: all 0.3s ease;
}

.pool-heating .product-item:hover {
  border-left: 6px solid rgba(220, 53, 69, 0.6);
}

/* Wellness - Pink Theme */
.wellness .product-item {
  border-left: 4px solid rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

.wellness .product-item:hover {
  border-left: 6px solid rgba(233, 30, 99, 0.6);
}

/* PVC Fittings - Teal Theme */
.pvc-fittings .product-item {
  border-left: 4px solid rgba(20, 184, 166, 0.3);
  transition: all 0.3s ease;
}

.pvc-fittings .product-item:hover {
  border-left: 6px solid rgba(20, 184, 166, 0.6);
}

/* Water Park Slides - Cyan Theme */
.water-park-slides .product-item {
  border-left: 4px solid rgba(13, 202, 240, 0.3);
  transition: all 0.3s ease;
}

.water-park-slides .product-item:hover {
  border-left: 6px solid rgba(13, 202, 240, 0.6);
}

/* Pool Cover - Indigo Theme */
.pool-cover .product-item {
  border-left: 4px solid rgba(102, 16, 242, 0.3);
  transition: all 0.3s ease;
}

.pool-cover .product-item:hover {
  border-left: 6px solid rgba(102, 16, 242, 0.6);
}

/* Pool Shell Equipment - Lime Theme */
.pool-shell-equipment .product-item {
  border-left: 4px solid rgba(130, 201, 30, 0.3);
  transition: all 0.3s ease;
}

.pool-shell-equipment .product-item:hover {
  border-left: 6px solid rgba(130, 201, 30, 0.6);
}

/* Fountain & Water Features - Magenta Theme */
.fountain-water-features .product-item {
  border-left: 4px solid rgba(226, 49, 255, 0.3);
  transition: all 0.3s ease;
}

.fountain-water-features .product-item:hover {
  border-left: 6px solid rgba(226, 49, 255, 0.6);
}

/* General Product Item Styling */
.product-item {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item:hover {
  text-decoration: none;
  color: #333;
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.product-name {
  font-weight: 500;
  font-size: 14px;
}

.product-arrow {
  color: #666;
  transition: all 0.3s ease;
}

.product-item:hover .product-arrow {
  color: #333;
  transform: translateX(3px);
}
/*--------------------------------------------------------------
# Enhanced Visual Effects and Animations
--------------------------------------------------------------*/

/* Removed floating animation - containers stay stationary */

/* Enhanced shimmer effect */
.product-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.product-item:hover::after {
  left: 100%;
}

/* Removed glow pulse animation - containers stay stationary */

/* Enhanced category title animations - removed blurry glow effect */

/* Enhanced product list spacing and visual hierarchy */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 10px 0;
}

/* Enhanced responsive design */
@media (max-width: 767.98px) {
  .product-list-container {
    padding: 25px;
    border-radius: 15px;
  }
  
  .category-title {
    font-size: 1.6rem;
  }
  
  .product-item {
    padding: 15px 20px;
    border-radius: 12px;
  }
  
  .product-name {
    font-size: 1rem;
  }
  
  .product-arrow {
    font-size: 1.1rem;
  }
}

 /* Enhanced Animations */
 @keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes screenOpen {
  0% { 
    clip-path: inset(0 0 100% 0);
  }
  100% { 
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes curtainReveal {
  0% { 
    transform: scaleY(0);
    transform-origin: top;
  }
  100% { 
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes blindsOpen {
  0% { 
    clip-path: inset(0 0 100% 0);
  }
  25% {
    clip-path: inset(0 0 75% 0);
  }
  50% {
    clip-path: inset(0 0 50% 0);
  }
  75% {
    clip-path: inset(0 0 25% 0);
  }
  100% { 
    clip-path: inset(0 0 0% 0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInFromTop {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

@keyframes rubberBand {
  0% { transform: scale(1); }
  30% { transform: scaleX(1.25) scaleY(0.75); }
  40% { transform: scaleX(0.75) scaleY(1.25); }
  50% { transform: scaleX(1.15) scaleY(0.85); }
  65% { transform: scaleX(0.95) scaleY(1.05); }
  75% { transform: scaleX(1.05) scaleY(0.95); }
  100% { transform: scale(1); }
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes rollIn {
  0% {
    transform: translateX(-100%) rotate(-120deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.slide-in-left {
  animation: slideInLeft 1s ease-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-out;
}

.fade-in-up {
  animation: fadeInUp 1s ease-out;
}

.rotate-slow {
  animation: rotate 20s linear infinite;
}

.screen-open {
  animation: screenOpen 1.2s ease-out;
}

.curtain-reveal {
  animation: curtainReveal 1.5s ease-out;
}

.blinds-open {
  animation: blindsOpen 1.8s ease-out;
}

.bounce-in {
  animation: bounceIn 1s ease-out;
}

.slide-in-top {
  animation: slideInFromTop 1s ease-out;
}

.slide-in-bottom {
  animation: slideInFromBottom 1s ease-out;
}

.slide-in-left-new {
  animation: slideInFromLeft 1s ease-out;
}

.slide-in-right-new {
  animation: slideInFromRight 1s ease-out;
}

.zoom-in {
  animation: zoomIn 1s ease-out;
}

.flip-in-x {
  animation: flipInX 1s ease-out;
}

.flip-in-y {
  animation: flipInY 1s ease-out;
}

.shake {
  animation: shake 0.5s ease-in-out;
}

.wobble {
  animation: wobble 1s ease-in-out;
}

.rubber-band {
  animation: rubberBand 1s ease-in-out;
}

.light-speed-in {
  animation: lightSpeedIn 1s ease-out;
}

.roll-in {
  animation: rollIn 1s ease-out;
}

.slide-up-from-bottom {
  animation: slideUpFromBottom 1s ease-out;
}

/* New layout styles for alternating content */
.feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  gap: 3rem;
}

.feature-row:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-image-container:hover img {
  transform: scale(1.05);
}

.feature-content {
  flex: 1;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-icon-large {
  width: 100px;
  height: 100px;
  background: #00a6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon-large::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.feature-content:hover .feature-icon-large::after {
  transform: scale(1);
}

.feature-title-large {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature-description-large {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .feature-row {
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .feature-image-container img {
    height: 250px;
  }
}

.company-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #00205c;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: #00205c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.cert-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 166, 214, 0.3);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.cert-item:hover .cert-icon::after {
  transform: scale(1);
}

.cert-item:hover .cert-icon {
  transform: scale(1.1) rotate(5deg);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00205c;
  margin-bottom: 2rem;
  line-height: 1.3;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00205c, #00a6d6);
  border-radius: 2px;
}

.history-section {
  padding: 100px 0;
}

.founder-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.founder-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.founder-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 32, 92, 0.1), rgba(0, 166, 214, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.founder-image:hover::before {
  opacity: 1;
}

.who-we-are-section {
  padding: 100px 0;
  background: #00205c;
  color: white;
}

.who-we-are-section .section-subtitle,
.who-we-are-section .section-title {
  color: white;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #00a6d6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon::after {
  transform: scale(1);
}

.feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-image {
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.feature-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.experience-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.experience-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.experience-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experience-image:hover img {
  transform: scale(1.05) rotate(-1deg);
}

.experience-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 32, 92, 0.2), rgba(0, 166, 214, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.experience-image:hover::after {
  opacity: 1;
}

.read-more-btn {
  background: #00205c;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.read-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.read-more-btn:hover::before {
  left: 100%;
}

.read-more-btn:hover {
  background: #00a6d6;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 32, 92, 0.3);
}

.export-section {
  padding: 100px 0;
  background: linear-gradient(rgba(0, 32, 92, 0.8), rgba(0, 32, 92, 0.8)), url('assets/img/about/about3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
}

.export-section .section-subtitle,
.export-section .section-title {
  color: white;
}

.export-content {
  max-width: 800px;
  margin: 0 auto;
}

.certifications-section {
  padding: 100px 0;
  background: white;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.cert-item {
  text-align: center;
  padding: 2rem;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 32, 92, 0.05), rgba(0, 166, 214, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-item:hover::before {
  opacity: 1;
}

.cert-item:hover {
  border-color: #00205c;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 32, 92, 0.2);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: #00205c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.cert-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #00205c;
  margin-bottom: 0.5rem;
}

.cert-description {
  color: #6c757d;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cert-grid {
    grid-template-columns: 1fr;
  }
}