/*
Theme Name: HVAC
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: HVAC is specially designed product packaged for HVAC services by TemplatesJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
  2.4 Buttons
    - Primary Buttons
    - Button Hover Effect

3. CONTENT ELEMENTS
  - Dropdown
  - Breadcrumb
  - Pagination
  - Accordion
  - Form
  - Swiper
  - Modal Video

4. SITE STRUCTURE
  4.1 Header
  4.2 Brand Section
  4.3 About Section
  4.4 Services Section
  4.5 Project Section
  4.6 CTA Section

5. PAGES STYLE
  5.1 Projects Page
  5.2 Pricing page 
  5.3 Reviews page
    

  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color: #F2B821;
  --secondary-color: #05213C;
  --black-color: #292929;
  --light-black-color: #343536;
  --dark-color: #313131;
  --body-color: #5A5A5A;
  --gray-color: #777F81;
  --light-color: #fdfdfd;

  /* Bootstrap Theme Color  */
  --bs-gray-100: #F6F6F6;
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--primary-color);
  --bs-body-color-rgb: 90, 90, 90;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-dark-rgb: 41, 41, 41;
  --bs-primary-rgb: 178, 142, 113;
}

/* Fonts */
:root {
  --heading-font: "Poppins", sans-serif;
  --body-font: "Poppins", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

body {
  background-color: var(--light-color);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 164%;
  letter-spacing: 0.32px;
  color: var(--body-color);
  margin: 0;
}

p {
  color: var(--body-color);
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: var(--primary-color);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-primary1 {
  color:var(--primary-color);
}

.text-black {
  color: var(--black-color) !important;
}

/* 2.2 Background Color
/*----------------------------------------------*/
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-gray {
  background-color: var(--bs-gray-100) !important;
}


/*--------------------------------------------------------------
/** 2.3 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 8em;
  padding-bottom: 8em;
}

.padding-medium {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding-large {
  padding-top: 12em;
  padding-bottom: 12em;
}

@media only screen and (max-width: 990px) {
  .padding-small {
    padding-top: 6em;
    padding-bottom: 6em;
  }
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 8.125em;
  margin-bottom: 8.125em;
}

.margin-medium {
  margin-top: 10em;
  margin-bottom: 10em;
}

.margin-large {
  margin-top: 12em;
  margin-bottom: 12em;
}


/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
  font-weight: 600;
  letter-spacing: 0.84px;
  line-height: 115%;
}

h6 {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

/* - Content width
--------------------------------------------------------------*/
.container-md {
  max-width: 1465px;
}

.container-lg {
  max-width: 1750px;
}

/* Animation */
@media (min-width: 200px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

/* Animate Slide */
@keyframes slide {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slide {
  -webkit-animation-name: slide;
  animation-name: slide;
}

/*--------------------------------------------------------------
/** 2.4 Buttons
--------------------------------------------------------------*/

.btn {
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 500;
  text-transform: uppercase;
  border-radius: 0px;
  transition: all 0.5s ease-in-out;
}

/* - Primary Buttons
--------------------------------------------------------------*/
.btn-primary {
  --bs-btn-color: var(--light-color);
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-color: var(--light-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--light-color);
  --bs-btn-active-bg: var(--primary-color);
  --bs-btn-active-border-color: var(--primary-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--light-color);
  --bs-btn-disabled-bg: var(--primary-color);
  --bs-btn-disabled-border-color: var(--primary-color);
}

/* - Button Hover Effect
--------------------------------------------------------------*/
.btn-slide.btn-bg {
  background-color: var(--light-color);
}

.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: var(--secondary-color);
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 3%;
  position: absolute;
  content: "";
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 600;
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}

/*--------------------------------------------------------------
/** 3.CONTENT ELEMENTS
--------------------------------------------------------------*/

/* Dropdown
------------------------------------------------------------- */
.dropdown-item {
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--dark-color);
  background-color: var(--bs-gray-300);
}

.dropdown-toggle::after {
  border: none;
  margin-left: 0em;
  vertical-align: 0em;
}


/* Breadcrumb
------------------------------------------------------------- */
.breadcrumb-item+.breadcrumb-item::before {
  color: var(--bs-light);
  position: relative;
}


/* Pagination
------------------------------------------------------------- */
.pagination {
  --bs-pagination-color: var(--black-color);
  --bs-pagination-hover-color: #fff;
  --bs-pagination-hover-bg: var(--primary-color);
  --bs-pagination-hover-border-color: var(--primary-color);
  --bs-pagination-focus-color: #fff;
  --bs-pagination-focus-bg: var(--primary-color);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-bg: var(--primary-color);
  --bs-pagination-active-border-color: var(--primary-color);
}


/* Accordion
------------------------------------------------------------- */
.accordion {
  --bs-accordion-btn-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/ion/caret-down.svg?color=%23F2B821&width=30');
  --bs-accordion-border-radius: 0px;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}


/* Form
------------------------------------------------------------- */
.form-control:focus {
  border: 1px solid #acacac;
  box-shadow: none;
}


/* Swiper
------------------------------------------------------------- */
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--dark-color);
}


/* Modal Video
------------------------------------------------------------- */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}



/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
/*----------------------------------------------*/
a.nav-link {
  text-transform: capitalize;
  font-weight: 500;
  color: var(--dark-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease-in-out;
}
body.offcanvas-open {
  overflow: hidden;
}
body.offcanvas-backdrop {
  overflow: auto !important;
  filter: none !important;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.9s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.9s;
}

#primary-header .dropdown .search::after {
  content: none;
}

#primary-header .search-dropdown .dropdown-menu {
  width: 260px;
}

#primary-header .search-dropdown .dropdown-menu input {
  min-width: 100%;
}

#primary-header .search-dropdown .dropdown-menu button {
  padding: 0 12px;
  min-height: -webkit-fill-available;
  border-radius: 0.25rem;
}

@media only screen and (max-width: 990px) {
  a.nav-link {
    font-size: 1.5rem;
  }

  a.nav-link.active::after,
  a.nav-link:focus::after,
  a.nav-link:hover::after {
    width: 0%;
  }

  a.nav-link.active,
  a.nav-link:focus,
  a.nav-link:hover {
    color: var(--primary-color) !important;
  }
}


/* 4.2 Brand Section
/*----------------------------------------------*/
img.brand-image {
  filter: contrast(0);
  transition: all 0.3s ease-in;
}

img.brand-image:hover {
  filter: contrast(1);
}


/* 4.3 About Section 
/*----------------------------------------------*/
svg.play-icon {
  animation: play 1.5s alternate infinite ease-in;
}

@keyframes play {
  0% {
    transform: scale(.8);
  }

  100% {
    transform: scale(1.1);
  }
}



/* 4.4 Services Section
/*----------------------------------------------*/
/* Jarallax */
.jarallax {
  min-height: 350px;
  transition: all 0.5s ease-in-out;
}

.service-block {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .jarallax {
  opacity: 0;
}

.service-btn {
  transition: all 0.5s ease-in-out;
}

.service-block:hover .service-btn {
  color: var(--dark-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


 #project {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .text-primary {
            color: #007bff !important;
        }
        
        /* Button styles */
        .btn-slide {
            position: relative;
            overflow: hidden;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .btn-slide:hover {
            transform: translateX(5px);
        }
        
        /* Swiper customization */
        .project-swiper {
            padding-bottom: 50px;
        }
        
        .swiper-slide.swiper-width {
            width: auto !important;
            margin-right: 20px;
        }
        
        /* Project content */
        .project-content {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 300px;
            min-width: 250px;
            cursor: pointer;
        }
        
        .project-content .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* fit the image to the container */
            /* opacity: 1; */
            transition: all 0.5s ease-in-out;
        }
        
        .project-content:hover .portfolio-img {
            opacity: 0.3;
            transform: scale(1.05);
        }
        
        .portfolio-description {
            opacity: 0;
            transition: all 0.5s ease-in-out;
            text-align: center;
            z-index: 10;
        }
        
        .project-content:hover .portfolio-description {
            opacity: 1;
        }
        
        .portfolio-description h4 {
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .portfolio-description a {
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .portfolio-description a:hover {
            opacity: 0.8;
        }
        
        /* Swiper pagination */
        .swiper-pagination {
            position: static !important;
            margin-top: 30px;
        }
        
        .swiper-pagination-bullet {
            background-color: #007bff;
            opacity: 0.3;
            margin: 0 5px;
        }
        
        .swiper-pagination-bullet-active {
            opacity: 1;
        }
        
        /* Responsive Design */
        
        /* Large screens (1200px and up) */
        @media (min-width: 1200px) {
            .project-content {
                min-width: 300px;
                height: 350px;
            }
            
            .swiper-slide.swiper-width {
                margin-right: 30px;
            }
        }
        
        /* Medium screens (768px to 1199px) */
        @media (min-width: 768px) and (max-width: 1199px) {
            #project {
                padding: 40px 0;
            }
            
            .project-content {
                min-width: 280px;
                height: 320px;
            }
            
            .swiper-slide.swiper-width {
                margin-right: 20px;
            }
            
            .portfolio-description h4 {
                font-size: 1.3rem;
            }
        }
        
        /* Small screens (576px to 767px) */
        @media (min-width: 576px) and (max-width: 767px) {
            #project {
                padding: 30px 0;
            }
            
            .d-flex.justify-content-between {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .project-content {
                min-width: 260px;
                height: 280px;
            }
            
            .swiper-slide.swiper-width {
                margin-right: 15px;
            }
            
            .portfolio-description h4 {
                font-size: 1.2rem;
            }
            
            .btn-slide {
                padding: 10px 25px;
                font-size: 14px;
            }
        }
        
        /* Extra small screens (up to 575px) */
        @media (max-width: 575px) {
            #project {
                padding: 20px 0;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .d-flex.justify-content-between {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .display-6 {
                font-size: 1.5rem !important;
            }
            
            .project-content {
                min-width: 220px;
                height: 250px;
            }
            
            .swiper-slide.swiper-width {
                margin-right: 10px;
            }
            
            .portfolio-description h4 {
                font-size: 1.1rem;
                margin-bottom: 10px;
            }
            
            .portfolio-description a {
                font-size: 12px;
            }
            
            .btn-slide {
                padding: 8px 20px;
                font-size: 13px;
            }
            
            .swiper-pagination {
                margin-top: 20px;
            }
            
            .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
                margin: 0 3px;
            }
        }
        
        /* Very small screens (up to 350px) */
        @media (max-width: 350px) {
            .project-content {
                min-width: 200px;
                height: 220px;
            }
            
            .portfolio-description h4 {
                font-size: 1rem;
            }
            
            .display-6 {
                font-size: 1.3rem !important;
            }
            
            h6 {
                font-size: 0.9rem;
            }
        }
        
        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .project-content:hover .portfolio-img {
                opacity: 1;
                transform: none;
            }
            
            .project-content:hover .portfolio-description {
                opacity: 0;
            }
            
            .project-content:active .portfolio-img {
                opacity: 0.3;
                transform: scale(1.02);
            }
            
            .project-content:active .portfolio-description {
                opacity: 1;
            }
        }
        
        /* Accessibility improvements */
        .project-content:focus {
            outline: 2px solid #007bff;
            outline-offset: 2px;
        }
        
        .project-content:focus .portfolio-img {
            opacity: 0.3;
        }
        
        .project-content:focus .portfolio-description {
            opacity: 1;
        }
        
        /* Reduced motion preferences */
        @media (prefers-reduced-motion: reduce) {
            .project-content .portfolio-img,
            .portfolio-description,
            .btn-slide {
                transition: none;
            }
        }



/* 4.6 CTA Section
/*----------------------------------------------*/
.border-dotted {
  border: 2px dashed rgba(255, 255, 255, 0.5);
}






/*----------------------------------------------*/
/* 5 PAGES STYLE */
/*----------------------------------------------*/


/* 5.1 Projects Page
/*----------------------------------------------*/

button.filter-button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

button.filter-button.active,
button.filter-button:hover {
  color: var(--bs-light);
  background: var(--primary-color);
}


/*--------------------------------------------------------------
 5.2 Pricing page 
  --------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--secondary-color);
}

span.price-tick {
  color: var(--primary-color);
}

.price-option {
  height: 300px;
}


/*--------------------------------------------------------------
 5.3 Reviews page
--------------------------------------------------------------*/

.reviews-components {
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--primary-color);
}

.rate {
  color: var(--primary-color);
}


/* ===== ROOT VARIABLES ===== */
:root {
    /* --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --white-color: #ffffff; */
    
    /* --gradient-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%); */
    --gradient-secondary: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    --gradient-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* --gradient-bg: linear-gradient(135deg, #395e9ccf 0%); */
    
    --shadow-sm: 0 2px 10px rgba(0, 123, 255, 0.1);
    --shadow-md: 0 5px 30px rgba(0, 123, 255, 0.15);
    --shadow-lg: 0 15px 50px rgba(0, 123, 255, 0.2);
    
    --border-radius: 15px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    position: relative;
    margin-bottom: 4rem;
}

.section-title h6 {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bg-gradient {
    background: var(--gradient-bg);
    position: relative;
    overflow: hidden;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(-100px) translateY(-100px) rotate(360deg); }
}

/* ===== MISSION & VISION CARDS ===== */
.mission-card,
.vision-card {
    background: var(--white-color);
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.mission-card.animate-in,
.vision-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 0;
    opacity: 0.05;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.mission-card h4,
.vision-card h4 {
    position: relative;
    z-index: 2;
    color: var(--dark-color);
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
}

.mission-features {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.vision-goals {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.goal-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.goal-item:hover {
    transform: translateX(10px);
}

.goal-number {
    background: var(--gradient-primary);
    color: var(--white-color);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
    font-size: 0.9rem;
}

.goal-text {
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== CORE VALUES CARDS ===== */
.value-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: var(--transition);
    z-index: 1;
}

.value-card:hover::before {
    top: 0;
    opacity: 0.95;
}

/* NUHADOORS Services Section - Isolated CSS */
/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

.nuha-services-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.nuha-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nuha-header {
    text-align: center;
    margin-bottom: 80px;
}

.nuha-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.nuha-accent-line {
    color: #3b82f6;
    font-size: 20px;
    font-weight: 800;
}

.nuha-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nuha-description {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.nuha-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.nuha-feature-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
}

.nuha-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.8s ease;
}

.nuha-feature-card:hover::before {
    left: 100%;
}

.nuha-feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.nuha-feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: all 0.4s ease;
}

.nuha-feature-card:hover .nuha-feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.6);
}

.nuha-feature-icon i {
    font-size: 32px;
    color: #ffffff;
    z-index: 2;
    position: relative;
}

.nuha-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: nuha-glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes nuha-glow-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.nuha-feature-content h5 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.nuha-feature-content p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.nuha-card-hover-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nuha-feature-card:hover .nuha-card-hover-effect {
    opacity: 1;
}

/* Background decorative elements */
.nuha-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.nuha-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    filter: blur(40px);
    animation: nuha-float 20s ease-in-out infinite;
}

.nuha-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.nuha-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation-delay: -7s;
}

.nuha-shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes nuha-float {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(-10px) rotate(180deg); }
    75% { transform: translateY(20px) translateX(5px) rotate(270deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nuha-services-section {
        padding: 80px 0;
    }
    
    .nuha-title {
        font-size: 36px;
    }
    
    .nuha-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .nuha-feature-card {
        padding: 30px 24px;
    }
    
    .nuha-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .nuha-feature-icon i {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .nuha-container {
        padding: 0 16px;
    }
    
    .nuha-title {
        font-size: 28px;
    }
    
    .nuha-description {
        font-size: 16px;
    }
}

.nuha-section {
            position: relative;
            padding: 120px 0;
            background: #ffffff;
            overflow: hidden;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .nuha-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .nuha-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .nuha-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .nuha-section-title {
            color: #1f2937;
        }

        .nuha-subtitle {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            opacity: 0.7;
            text-transform: uppercase;
            color: #6b7280;
        }

        .nuha-accent {
            color: #fbbf24;
            font-weight: 700;
            margin-right: 8px;
        }

        .nuha-main-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .nuha-lead {
            font-size: 1.25rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .nuha-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .nuha-advantage-card {
            position: relative;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .nuha-advantage-card::before {
            content: attr(data-number);
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fb24c9, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.15;
            transition: all 0.3s ease;
        }

        .nuha-advantage-card:hover {
            transform: translateY(-8px);
            background: #ffffff;
            border-color: rgba(36, 133, 251, 0.3);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(36, 54, 251, 0.2);
        }

        .nuha-advantage-card:hover::before {
            opacity: 0.3;
            transform: scale(1.1);
        }

        .nuha-advantage-card:hover .nuha-card-glow {
            opacity: 1;
            transform: scale(1.2);
        }

        .nuha-card-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 120%;
            height: 120%;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.6s ease;
            pointer-events: none;
            z-index: -1;
        }

        .nuha-card-content {
            position: relative;
            z-index: 2;
        }

        .nuha-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4f47c3, #f59e0b);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(251, 36, 158, 0.3);
        }

        .nuha-advantage-card:hover .nuha-icon-wrapper {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(36, 161, 251, 0.4);
        }

        .nuha-icon-wrapper i {
            font-size: 28px;
            color: #1f2937;
        }

        .nuha-card-title {
            color: #1f2937;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .nuha-card-description {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
        }

        /* Floating background elements */
        .nuha-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .nuha-float-1, .nuha-float-2, .nuha-float-3 {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(251, 191, 36, 0.05), rgba(59, 130, 246, 0.05));
            animation: float 20s infinite linear;
        }

        .nuha-float-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }

        .nuha-float-2 {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -100px;
            animation-delay: -7s;
        }

        .nuha-float-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            left: 60%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-20px) rotate(90deg);
                opacity: 0.5;
            }
            50% {
                transform: translateY(0px) rotate(180deg);
                opacity: 0.3;
            }
            75% {
                transform: translateY(-10px) rotate(270deg);
                opacity: 0.4;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nuha-section {
                padding: 80px 0;
            }

            .nuha-container {
                padding: 0 15px;
            }

            .nuha-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
            }

            .nuha-advantage-card {
                padding: 30px 25px;
            }

            .nuha-main-title {
                font-size: 2.5rem;
            }

            .nuha-lead {
                font-size: 1.1rem;
            }

            .nuha-header {
                margin-bottom: 50px;
            }
        }

        @media (max-width: 480px) {
            .nuha-advantage-card {
                padding: 25px 20px;
            }

            .nuha-icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .nuha-icon-wrapper i {
                font-size: 24px;
            }

            .nuha-card-title {
                font-size: 1.2rem;
            }
        }

        /* Scroll animations */
        @media (prefers-reduced-motion: no-preference) {
            .nuha-advantage-card {
                opacity: 0;
                transform: translateY(30px);
                animation: slideInUp 0.6s ease forwards;
            }

            .nuha-advantage-card:nth-child(1) { animation-delay: 0.1s; }
            .nuha-advantage-card:nth-child(2) { animation-delay: 0.2s; }
            .nuha-advantage-card:nth-child(3) { animation-delay: 0.3s; }
            .nuha-advantage-card:nth-child(4) { animation-delay: 0.4s; }
            .nuha-advantage-card:nth-child(5) { animation-delay: 0.5s; }
            .nuha-advantage-card:nth-child(6) { animation-delay: 0.6s; }

            @keyframes slideInUp {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }