/*
Theme Name: Bamboo - Construction Company Website Template
Theme URI: 
Author: 
Author URI: 
Description: Bamboo is specially designed product packaged for construction company by TemplatesJungle.
Version: 0.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 Border Radius
  2.4 Section
    - Section Paddings
    - Section Margins
    - Section Title
    - Content width
  2.5 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns

3. CONTENT ELEMENTS
  3.1 Button Hover Effects
  3.2 Text Hover Effects
  3.3 Zoom Effect
  3.4 Left Pattern
  3.5 Jarallax

4. SITE STRUCTURE
  4.1 Header
    - Offcanvas
  4.2 Intro
  4.3 About
  4.4 Our Works
  4.5 Our Services
  4.6 Brand Collections
  4.7 Testimonials
  4.8 Testimonial
  4.9 Our Achievement
  4.10 Latest Blog

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color: #333;
  --black-color: #000;
  --dark-color: #111;
  --gray-color-100: #F9F7F5;
  --gray-color-200: #EFEFEF;
  --gray-color-300: #D1D1D1;
  --gray-color-400: #C0C0C0;
  --gray-color-500: #adb5bd;
  --dark-gray-color: #474341;
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --light-color: #fff;
  --primary-color: #ff9e0d;
  --swiper-theme-color: #807E7C !important;
  --bs-primary-rgb: 255, 158, 13;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Fonts */
:root {
  --body-font: "Urbanist", sans-serif;
  --heading-font: "Fira Sans", 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 {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--accent-color);
  margin: 0;
}

a {
  text-decoration: none;
  transition: 0.3s color ease-out;
  color: inherit;
}


a.stretched-link {
  color: var(--primary-color);
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
p{
  font-size: 18px;
}
p.light {
  color: var(--light-color);
}
p.blog{
  font-size: 18px;
  color: var(--gray-color-400);
}
span.light {
  color: var(--light-color);
}

em.light {
  color: var(--light-color);
}

table.light tr {
  color: var(--light-color);
}

b,
strong {
  font-weight: bold;
}

.highlight {
  background: var(--dark-color);
  color: var(--light-color);
}

::selection {
  color: var(--light-color);
  background: var(--primary-color);
}
.swiper-pagination-bullet {
  background: #ffffff !important;
  /* margin: 0 8px o !important; */
  --swiper-pagination-bullet-horizontal-gap: 10px;
}


/* 2.2 Background Color
/*----------------------------------------------*/
.bg-gray-200 {
  background-color: var(--gray-color-200);
}

.bg-light {
  background-color: var(--light-color) !important;
}

/* 2.3 Border Radius
/*----------------------------------------------*/
.border-rounded-10 {
  border-radius: 10px;
}

/* 2.4 Section
/*----------------------------------------------*/

/* - Section Padding
--------------------------------------------------------------*/
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}

.padding-xlarge {
  padding-top: 10em;
  padding-bottom: 10em;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}

.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}

.margin-xlarge {
  margin-top: 9em;
  margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {

  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section Title
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1;
}

h1.light,
h2.light,
h3.light,
h4.light,
h5.light {
  color: var(--light-color);
}
.display-2{
  font-family: var(--heading-font);
  font-weight: 500;
}
h1 {
  font-size: 8em;
}

h2 {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.32em;
  padding-left: 63px;
}

h3 {
  font-size: 2.8em;
  line-height: 1.2em;
  font-weight: 700;
}

/* - Section width
--------------------------------------------------------------*/
.container {
  max-width: 1300px;
}

.container-md {
  max-width: 1460px;
}

.container-lg {
  max-width: 1750px;
}

/*--------------------------------------------------------------
/** 2.5 Buttons
--------------------------------------------------------------*/
/* - Button Primary Sizes
------------------------------------------------------------- */
.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  color: #fff;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
  box-shadow: none;

}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.85em;
}

.btn.btn-medium {
  padding: 1.2em 2.7em;
  font-size: 1em;
}

.btn.btn-large {
  padding: 0.8em 4.6em;
  font-size: 1.6em;
}

.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}


/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}

.btn-center {
  text-align: center;
  display: block;
}

.btn-right {
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 3 CONTENT ELEMENTS */
/*----------------------------------------------*/

/* 3.1 Button Hover Effects
------------------------------------------------------------- */
.btn-slide {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 15px;
  padding: 18px 44px;
}

.btn-slide.hover-slide-right::before {
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary-color);
  transition: 0.3s ease-in-out;
  border-radius: 15px;
}

.btn-slide span {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.3s;
  font-weight: 900;
}

::before,
::after {
  position: absolute;
  content: "";
}

.btn-slide.hover-slide-right:hover::before {
  width: 100%;
}

.btn-slide.hover-slide-right:hover span {
  color: var(--light-color);
}



/* 3.3 Zoom Effect
------------------------------------------*/
.zoom-effect {
  position: relative;
  overflow: hidden;
  width: fit-content;
}

.zoom-effect img {
  max-width: 100%;
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.zoom-effect:hover img {
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}

.zoom-effect:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 2;
  opacity: 0;
  -moz-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.zoom-effect:hover:before {
  opacity: 1;
  cursor: pointer;
}

/* 3.4 Left Pattern
------------------------------------------*/
.left-pattern {
  position: relative;
}

.left-pattern::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 2px;
  top: 46%;
  left: 0;
  background-color: var(--primary-color);
}

/*--------------------------------------------------------------
/** 3.5 Jarallax
--------------------------------------------------------------*/
.jarallax {
  position: relative;
  z-index: 0;
  min-height: 350px;
}

.jarallax>.jarallax-img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.jarallax-img {
  position: relative;
  z-index: 0;
}

.jarallax img.jarallax-img {
  position: relative;
  display: block;
  max-width: 100%;
  height: auto !important;
  z-index: -100;
}

/*----------------------------------------------*/
/* 4 SITE STRUCTURE */
/*----------------------------------------------*/

/* 4.1 Header
------------------------------------------------------------- */
.site-header {
  width: 100%;
  z-index: 10;
}
#header-nav.navbar{
  z-index: 1000;
}

/* Style for active and hovered links */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  position: relative; 
}
@media (max-width: 999px) {
  .navbar-nav .nav-link.active, .navbar-nav .nav-link:hover{
    position: unset;
    
  }
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: ""; 
  position: absolute;
  left: 0;
  bottom: -32px; 
  width: 100%; 
  border-bottom: 4px solid #F0A500; 
}


.nav-link {
  padding-bottom: 5px;
}


.offcanvas a.nav-link {
  font-family: var(--body-font);
  color: var(--black-color);
  letter-spacing: 0.01rem;
  font-size: 18px;
}

.offcanvas a.nav-link:hover,
.offcanvas a.nav-link:focus {
  color: var(--primary-color);
}

.navbar-toggler svg.navbar-icon {
  width: 40px;
  height: 40px;
  outline: none;
}

/* dropdown style  */
.dropdown-menu {
  border-radius: 0rem;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  font-family: var(--heading-font);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-toggle::after {
  border-top: 0em solid;
  border-right: 0em solid transparent;
  border-left: 0em solid transparent;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #1e2125;
  text-decoration: none;
  background-color: #e9ecef;
}


/* - Offcanvas
------------------------------------------------------------- */
#header-nav .offcanvas.show {
  z-index: 9999;

}

.offcanvas.show .nav-item a.nav-link,
#header-nav .offcanvas.show .nav-item a:hover {
  font-size: 2em;
  color: var(--dark-color);
}

#header-nav .offcanvas.show .nav-item a.dropdown-item:hover {
  font-size: 1em;
  color: var(--dark-color);
}

.offcanvas.show .offcanvas-body .navbar-nav {
  align-items: unset !important;
  padding-left: 20px;
}

@media (max-width: 999px) {

  .social-links ul.navbar-nav {
    display: none;
  }
}

@media (min-width: 1399px) {
  #header .navbar-expand-lg {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  #header .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  #header .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* 4.2 Intro
------------------------------------------------------------- */
#intro .banner-content {
  top: 30%;
  left: 30%;
  z-index: 3;
  width: 70%;
}

@media (max-width: 1399px) {
  #intro .banner-content {
    left: 10%;
  }
}

@media (max-width: 999px) {
  #intro .banner-content h1 {
    font-size: 5.8em;
  }
}

@media (max-width: 699px) {
  #intro img.banner-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
  }

  #intro .banner-content {
    top: 20%;
  }

  #intro .banner-content h1 {
    font-size: 3em;
  }
}

/* 4.3 About
------------------------------------------------------------- */
#about p {
  font-size: 1.2em;
}

/* 4.4 Our Works
------------------------------------------------------------- */


button.filter-button.active {
  color: var(--primary-color);
}

.projects-isotope button:hover,
.projects-isotope button:focus {
  color: var(--primary-color);
}

#projects .projects-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
}




/* 4.5 Our Services
------------------------------------------------------------- */
@media (max-width: 767px) {
  section#our-services {
    height: 800px !important;
  }
}
.service-svg{
width:fit-content;
}

#service .svg {
  width: fit-content;
  position: relative; /* Ensure the .circle-pattern is positioned relative to this container */
  z-index: 1; /* Make sure the SVG stays on top */
}

.circle-pattern {
  width: 23px;
  height: 23px;
  border-radius: 100%;
  background-color: #EAEAEA;
  z-index: -1; /* Send the circles behind the SVG */
}

/* 4.6 Brand Collections
------------------------------------------------------------- */
#brand-collection .brand-item {
  display: flex;
  justify-content: center;
  padding: 50px 0;
  transition: 0.9s ease-in-out;
}

#brand-collection .brand-item:hover {
  background-color: #000;
}

/* 4.7 Our Team
------------------------------------------------------------- */
.team-member ul.social-links {
  top: 0;
}

.team-member ul li {
  width: 30px;
  padding: 5px;
  transform: rotatey(-90deg) perspective(100px);
  transform-origin: left;
  cursor: pointer;
  transition: .5s ease-in-out;
  background-color: var(--light-color);
}

.team-member ul li:first-of-type {
  transition-delay: .3s;
}

.team-member ul li:nth-of-type(2) {
  transition-delay: 0.6s;
}

.team-member ul li:nth-of-type(3) {
  transition-delay: 0.9s;
}

.team-member ul li:last-of-type {
  transition-delay: 1.3s;
}

.team-member:hover ul li {
  transform: rotatey(0deg);
}

#our-team .swiper-arrow {
  width: 50px;
  height: 50px;
}

#our-team .swiper-arrow.border:hover {
  border-color: var(--dark-color) !important;
}

/* 4.8 Testimonial
------------------------------------------------------------- */
.author-detail .name {
  padding-left: 65px;
}

#testimonials .swiper.review-swiper {
  padding-bottom: 50px;
}

#testimonials .swiper-horizontal>.swiper-pagination-bullets {
  bottom: -5px;
}

#testimonials .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--light-color);
  width: 10px;
  height: 10px;
  margin-right: 20px;
}

/* 4.9 Our Achievement
------------------------------------------------------------- */
.counter-number h4.timer {
  font-size: 6.4em;

  transition: 0.5s ease-in-out;
}

.counter-number h4:hover {
  color: var(--primary-color);
}

/* 4.10 Latest Blog
------------------------------------------------------------- */
.post-grid .card-item .card-body {
  bottom: -84px;
  transition: 0.8s ease-in-out;
  width: 85%;
}

.post-grid .card-item .card-body h3 {
  line-height: 1.3;
}

.post-grid .card-item .card-body p {
  opacity: 0;
  transition: 0.9s ease-in-out;
}

.post-grid .card-item:hover .card-body {
  bottom: 20px;
}

.post-grid .card-item:hover .card-body p {
  opacity: 1;
}


/*--------------------------------------------------------------
Blog page style start
--------------------------------------------------------------*/
.post-grid .card-item .card-body p.blog-paragraph {
  opacity: 1;
}

.pagination {
  --bs-pagination-active-bg: var(--dark-color);
  --bs-pagination-active-border-color: var(--dark-color);
}

.page-item.active .page-link {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.page-link {
  color: var(--dark-color);
}

.page-link:focus {
  color: var(--dark-color);
  background-color: #e9ecef;
  box-shadow: 0 0 0 0.25rem var(--gray-color-400);
}

.page-link:hover {
  color: var(--dark-color);
}


/*--------------------------------------------------------------
Blog-single page style start
--------------------------------------------------------------*/
.form-control {
  border-radius: 0px;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: var(--bs-gray-dark);
  outline: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
FAQs page style start
--------------------------------------------------------------*/
.accordion .accordion-item {
  border-bottom: 1px solid var(--bs-gray-300) !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--dark-color);
  background-color: transparent;
  box-shadow: none;
}

.accordion .accordion-button::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}

.accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='minus' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  transform: rotate(0deg);
  position: relative;
}


/*--------------------------------------------------------------
reviews page style start
--------------------------------------------------------------*/
.reviews-components {
  border: 1px solid var(--light-text-color);
  box-shadow: 6px 6px 5px rgba(12, 12, 12, 0.01);
  border-radius: 9px;
}


/*--------------------------------------------------------------
Price page style
--------------------------------------------------------------*/
.plan-post {
  border: 1px solid var(--accent-color);
}

span.price-tick {
  color: var(--accent-color);
}

.price-option {
  height: 320px;
}

.recommend-price {
  background: var(--accent-color);
}



/*--------------------------------------------------------------
Services page style
--------------------------------------------------------------*/
iconify-icon.services-icon {
  font-size: 80px;
  color: var(--accent-color);
  transition: all 0.5s ease-in;
}

.testimonial-text{
  line-height: 1.5em;
}

.blog-heading{
  line-height: 1.3em;
}
.bg-pattern{
  z-index: -99;
}

/* Modern Service Cards */
.modern-service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px !important;
  overflow: hidden;
  background: var(--light-color);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.modern-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important;
}

.card-img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-img-top.transition-scale {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modern-service-card:hover .transition-scale {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.modern-service-card:hover .card-overlay {
  opacity: 1;
}

.brand-accent {
  width: 40px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 15px;
}

.hvr-sweep-to-right:hover:before {
  transform: scaleX(1);
}

.hvr-sweep-to-right:hover span {
  color: white !important;
}

/*--------------------------------------------------------------
5. RESPONSIVE ADJUSTMENTS
--------------------------------------------------------------*/

@media (max-width: 991px) {
  h1 {
    font-size: 4em !important;
  }
  h3 {
    font-size: 2.2em !important;
  }
  .padding-large {
    padding-top: 4em !important;
    padding-bottom: 4em !important;
  }
  .display-2 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.5em !important;
    line-height: 1.1;
  }
  h2 {
    font-size: 0.85em !important;
    padding-left: 40px !important;
    letter-spacing: 0.15em !important;
  }
  h2::before {
    width: 30px !important;
    top: 50% !important;
  }
  h3 {
    font-size: 1.6em !important;
    line-height: 1.3 !important;
  }
  p {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }
  .padding-medium {
    padding-top: 2.5em !important;
    padding-bottom: 2.5em !important;
  }
  .padding-large {
    padding-top: 3em !important;
    padding-bottom: 3em !important;
  }
  
  #intro img.banner-image {
    height: 450px !important;
  }
  
  #intro .banner-content {
    width: 94% !important;
    left: 3% !important;
    top: 20% !important;
    text-align: center;
  }
  
  .offcanvas.show .nav-item a.nav-link {
    font-size: 1.5em !important;
  }

  .modern-service-card {
    margin-bottom: 20px;
  }
  
  #contact {
    height: auto !important;
    min-height: 350px !important;
    padding: 50px 0 !important;
  }
  
  #contact h3 {
    font-size: 1.7rem !important;
  }
  
  .mobile-contact-bar {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
}

/* Hero Ultra Modern Industrial */
#hero-ultra {
  background-color: #f8f8f8;
  min-height: 100vh;
}

.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  font-size: 30rem;
  font-weight: 900;
  color: rgba(255, 158, 13, 0.05);
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-color);
  padding: 6px 16px;
  border-radius: 4px;
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--black-color);
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--black-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: var(--dark-gray-color);
  font-weight: 500;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 550px;
  line-height: 1.6;
}

/* Modern Buttons */
.modern-btn {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 0;
  text-decoration: none !important;
}

.modern-btn.primary {
  background: var(--primary-color);
  color: white;
}

.modern-btn.primary:hover {
  background: var(--black-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.modern-btn.secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.modern-btn.secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 158, 13, 0.3);
}

/* Image Section */
.hero-image-container {
  padding-left: 50px;
  z-index: 1;
}

.hero-image-main {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  z-index: 2;
}

.image-stack-back {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 80%;
  background: var(--primary-color);
  z-index: 1;
}

.experience-card {
  position: absolute;
  bottom: 10%;
  left: 0;
  background: white;
  padding: 25px;
  box-shadow: 30px 30px 60px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.exp-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--black-color);
  line-height: 1.2;
}

@media (max-width: 991px) {
  .hero-title { font-size: 4rem; }
  .hero-image-main { height: 50vh; clip-path: none; margin-top: 50px; }
  .hero-image-container { padding-left: 0; }
  .image-stack-back { display: none; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.8rem; }
  .hero-badge { margin-top: 40px; }
  .hero-image-main { height: 400px; }
  #hero-ultra { min-height: auto; }
}


/* Brand Logo Text */
.brand-logo-text {
  font-family: var(--heading-font);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black-color);
  letter-spacing: -1px;
  line-height: 1;
}

/* Button Consistency */
.btn-primary, .btn-primary:active, .btn-primary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
}

.btn-primary:hover {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  box-shadow: 0 0 20px rgba(255, 158, 13, 0.7) !important;
  transform: translateY(-3px);
  color: #fff !important;
}

.btn-slide {
  background-color: var(--primary-color) !important;
  border: none !important;
}

.btn-slide span {
  color: #fff !important;
}

.btn-slide:hover {
  background-color: var(--primary-color) !important;
  box-shadow: 0 0 20px rgba(255, 158, 13, 0.7) !important;
  transform: translateY(-2px);
}

.hvr-sweep-to-right::before {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* CTA Utilities */
.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.fw-black {
  font-weight: 900 !important;
}

.op-80 {
  opacity: 0.85;
}

.z-1 {
  z-index: 1;
}

/* Custom Tick List */
.custom-tick-list {
  padding: 0;
}
.custom-tick-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px !important;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.custom-tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='m9.55 18l-5.7-5.7l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='m9.55 18l-5.7-5.7l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media (min-width: 768px) {
  .mobile-contact-bar {
    display: none;
  }
}

/* Projects Section Custom Styles */
.project-item {
  position: relative;
  cursor: pointer;
}

.project-img {
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.project-item:hover .project-img {
  transform: scale(1.05);
}

.project-overlay h5 {
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.project-item:hover .project-overlay h5 {
  transform: translateY(0);
}

/* Modal Refinements */
#projectModal .modal-dialog {
  max-width: 800px;
  width: 90%;
  margin: 1.75rem auto;
}

#projectModal .modal-content {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

#modalImage {
  max-height: 75vh;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  #projectModal .modal-dialog {
    width: 90%;
    margin: 4rem auto 1rem !important; /* Move down to avoid fixed header if any overlap remains */
  }
  #modalImage {
    max-height: 40vh; /* Smaller image on mobile to see buttons */
  }
  .modal-header {
    padding: 0.5rem 1rem !important;
  }
  .modal-footer {
    padding-bottom: 1.5rem !important;
  }
  #modalCTA {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem;
  }
}



