/* Fonts */
:root {
  /* --default-font: "Berlin Sans FB", regular; */
  --default-font: "Open Sans", regular;
  --heading-font: "Segoe Script";
}

/* Global Colors */
: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: #feb500; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --purple-color: #403847;
  --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. */
  --black-color: #000000;
}

/* 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: #f8b500; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #feb900; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  /* overflow: hidden; */
  font-family: var(--default-font);
}

body::-webkit-scrollbar {
  width: 0.9em;
}

.nav-item a.active {
  color: var(--nav-hover-color);
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  outline: 1px solid #c1c1c1;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}
[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s;
}
html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity,-webkit-transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform;
}
[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0s;
}
html:not(.no-js) [data-aos=fade-up] {
  -webkit-transform: translate3d(0,100px,0);
  transform: translate3d(0,100px,0);
}
[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}
[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}
[data-aos].aos-animate {
  pointer-events: auto;
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--nav-hover-color);
  text-decoration: none;
}
/* Transparent Navbar */
.transparent-nav {
  background: rgba(0, 0, 0, 0);
}

.navbar-brand,
.nav-link,
.btn-outline-light {
  color: #fff !important;
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: transparent;
  transition: all 0.3s;
  z-index: 997;
}

.navmenu a {
  color: var(--surface-color);
  transition: color 0.3s;
}

/* Global Header on Scroll
------------------------------*/
.header.scrolled {
  background-color: var(--purple-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header.scrolled .navmenu a {
  color: white;
}

.header.scrolled .navmenu a:hover {
  color: var(--nav-hover-color);
}

/*--------------------------------------------------------------
# \section title
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-top: 30px;
}

.section-title h2 {
  font-size: 32px;
  position: relative;
}

@media only screen and (max-width: 350px) {
  .section-title h2 {
    text-align: center;
    font-size: 27px;
  }
}

@media only screen and (min-width: 350px) {
  .section-title h2 {
    text-align: center;
    font-size: 24px;
  }
}

@media only screen and (min-width: 392px) {
  .section-title h2 {
    text-align: center; /* Center the text on smaller screens */
    font-size: 24px;
  }
}

@media only screen and (min-width: 470px) {
  .section-title h2 {
    text-align: center; /* Center the text on smaller screens */
    font-size: 28px;
    margin-top: 90px !important;
    padding-right: 20px !important;

  }
}

@media (max-width: 480px) {
  .portfolio .portfolio-item {
    margin-bottom: 30px;
    margin-left: 30px;
  }

  .section-title h2 {
    text-align: center;
    font-size: 28px;
    margin-top: 70px !important;
    padding-right: 0px !important;
  }

}

@media only screen and (max-width: 470px) {
  .section-title h2 {
    text-align: center; /* Center the text on smaller screens */
    font-size: 28px;
    margin-top: 90px !important;
    padding-right: 20px !important;

  }
}

@media only screen and (min-width: 768px) {
  .section-title h2 {
    text-align: center; /* Center the text on smaller screens */
    font-size: 34px;
    
  }
}

/* @media only screen and (max-width: 992px) {

  
  .section-title h2 {
   margin-top: 60px !important;
   padding-right: 75px !important;
  }

  .social-icon-pro {
    position: fixed;
    left: -20px;
    top: 37% !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    z-index: 1000;
  }

} */


@media only screen and (max-width: 992px) {
  .social-icon-pro {
    position: fixed;
    left: -20px;
    top: 37% !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    z-index: 1000;
  }

}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 5px;
  }

  .nav-item a.active {
    color: var(--nav-hover-color);
}

  .navmenu ul {
    margin: 5px;
    padding: 5px;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--surface-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-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: var(--nav-dropdown-color);
  }

  .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;
  }
}

@media (max-width: 1199px) {
  /* .mobile-nav-toggle {
    color: var(--surface-color);
    font-size: 40px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  } */

  .nav-item a.active {
    color: var(--nav-hover-color);
}

  .mobile-nav-toggle {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
    margin: 15px;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--surface-color);
    border-radius: 2px;
    transition: all 0.6s ease;
    position: relative;
  }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 19px;
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 2px;
  }



  .navmenu ul {
    display: 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;
    /* background-image: url("../img/mobileview.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9; */
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--background-color);
    padding: 15px 25px;
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    
    /* margin: 10px; */
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(0, 0, 0, 0.8);
  }

  .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 .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--background-color);
    position: absolute;
    font-size: 40px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--black-color);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
  # Loader Styles
  --------------------------------------------------------------*/

#loader-wrapper {
  background-color: var(--background-color);
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ellips {
  position: relative;
  width: 100px; /* Adjust width as needed */
  height: 100px; /* Adjust height as needed */
}

.ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 8px solid transparent;
  border-radius: 50%;
  border-top-color: transparent; /* Hide the top border */
}

.ring:nth-child(1) {
  border-bottom-width: 8px;
  border-color: var(--accent-color);
  animation: rotate1 2s linear infinite;
}

.ring:nth-child(2) {
  border-right-width: 8px;
  border-color: var(--purple-color);
  animation: rotate2 2s linear infinite;
}

.ring:nth-child(3) {
  border-top-width: 8px;
  border-color: var(--black-color);
  animation: rotate3 2s linear infinite;
}

/* Keyframes for Rotation */
#loader {
  position: absolute;
  top: 40%;
  left: 50%;
  margin: -100px 0 0 -100px;
}

.loader-ellips {
  font-size: 20px;
  position: relative;
  width: 64px;
  margin: 100px auto 0;
}

.ring {
  width: 200px;
  height: 200px;
  border: 0px solid rgb(0, 0, 0);
  border-radius: 50%;
  position: absolute;
}

@keyframes rotate1 {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate3 {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }

  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/*--------------------------------------------------------------
  # Slider Styles
  --------------------------------------------------------------*/

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
   height: 100vh; 
  position: relative;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2; /* Ensure the content is above the overlay */
}

.slide .content h2 {
  font-size: 3em;
  margin: 0;
  font-weight: 700;
}

.slide .content p {
  font-size: 1.5em;
  margin: 10px 0;
}

.slide .content .btn {
  background: var(--accent-color);
  border: none;
  padding: 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.slide .content .btn:hover {
  background: var(--nav-hover-color);
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2; /* Ensure this content is above the overlay */
}
.slide-text h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: bold;
  margin-bottom: 20px;
}

.corecolor {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
  # Slider RESPONSIVE 1. TYPE
  --------------------------------------------------------------*/
  @media only screen and (max-width: 1199px) and (min-width: 992px) {

 
  .slide-text {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Ensure this content is above the overlay */
  }

  .checktext {
    font-size: 1rem;
  }

}

@media only screen and (max-width: 992px) and (min-width: 768px) {

  .slide-text {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* Ensure this content is above the overlay */
  }

  .checktext {
    font-size: 1rem;
  }


}




@media only screen and (max-width: 576px) and (min-width: 520px) {

.calc-heading {

  font-size: calc(1.255rem + 1.5vw) !important;

  }
}

@media only screen and (max-width: 521px) and (min-width: 480px) {

  .calc-heading {
  
    font-size: calc(1.225rem + 1.5vw) !important;
  
    }

    .checkbox-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 80px !important;
    }
  }

  @media only screen and (max-width: 480px) and (min-width: 380px) {
 
  

    .calc-heading {
    
      /* font-size: calc(1rem + 1.5vw) !important; */
      font-size: 20px !important;
    
      }
  
      .checktext {
        font-size: 18px;
      }
    
      .checkbox-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 55px !important
      }
    }
  

    
/*--------------------------------------------------------------
  # Slider RESPONSIVE 2. SAPCE
  --------------------------------------------------------------*/


  
  @media only screen and (max-width: 609px) and (min-width: 564px) {
    .space-heading{
      /* font-size: 20.8px !important; */
      font-size: calc(1.245rem + 1.5vw);
    }

    
    .checkbox-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 60px !important ;
    }

  }


  
  @media only screen and (max-width: 564px) and (min-width: 509px) {
    .space-heading{
      /* font-size: 20.8px !important; */
      font-size: calc(1.15rem + 1.5vw);
    }

    .checkbox-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 55px !important ;
    }

    .checktext {
      font-size: 15px
    }
  
    .space-btns {
      display: flex;
      align-items: center; 
      justify-content: space-between; 
  }
  
  }    

  @media only screen and (max-width: 509px) and (min-width: 445px) {
    .space-heading{
      /* font-size: 20.8px !important; */
      font-size: calc(1.0rem + 1.5vw);
    }

    .checktext {
      font-size: 15px;
    }

      
    .space-btns {
      display: flex;
      align-items: center; 
      justify-content: space-between; 
  }
  

  }

  
  @media only screen and (max-width: 446px) and (min-width: 380px) {
    /* .space-heading{
    
      font-size: calc(0.8rem + 1.5vw);
    } */

    .space-heading{
      /* font-size: 20.8px !important; */
      font-size: calc(0.9rem + 1.5vw);
    }
    .checkbox-group {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 40px;
    }

    .checktext {
      font-size: 14.8px;
    }
  
    .space-btns {
      display: flex;
      align-items: center; 
      justify-content: space-between; 
  }
  }    

  /*--------------------------------------------------------------
  # Slider RESPONSIVE 3. MEETING
  --------------------------------------------------------------*/

  @media (min-width: 992px) {
    .meeting-header{
      /* font-size: calc(1rem + 1.5vw); */
      margin-top: 60px;
    }

    .manager-header{
      margin-bottom: 0px !important;
    }

    .meeting-checkbox {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 135px;
    }
.meeting-btns{
  margin-right: 100px;
}

  }

  
  @media only screen and (max-width: 993px) and (min-width: 850px) {



    .meeting-header{
      /* font-size: calc(1rem + 1.5vw); */
      margin-top: 60px;
    }

    .manager-header{
      margin-bottom: 0px !important;
    }

    .meeting-checkbox {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 135px !important;
    }
.meeting-btns{
  margin-right: 100px;
}

  }


  @media only screen and (max-width: 851px) and (min-width: 776px) {

    .meeting-header{
   
      font-size: calc(0.7rem + 1.5vw);
      margin-top: 60px;
    }

    .manager-header{
      margin-bottom: 0px !important;
    }

    .meeting-checkbox {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      margin-left: 135px !important;
    }
.meeting-btns{
  margin-right: 70px;
}



}


@media only screen and (max-width: 777px) and (min-width: 677px) {

  .meeting-header{
   
    font-size: calc(0.7rem + 1.5vw);
    margin-top: 40px;
  }

  .manager-header{
    margin-bottom: 0px !important;
  }

  .meeting-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 120px !important;
  }
.meeting-btns{
margin-right: 20px;
}


}

@media only screen and (max-width: 678px) and (min-width: 578px) {

  .meeting-header{
   
    font-size: calc(0.6rem + 1.5vw);
    margin-top: 40px;
  }



  .manager-header{
    margin-bottom: 0px !important;
    font-size: calc(0.6rem + 1.5vw);
  }

  .meeting-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 80px !important;
  }
 .meeting-btns {
    margin-left: -30px;
  }

}

@media only screen and (max-width: 579px) and (min-width: 490px) {


  .meeting-header{
   
    font-size: calc(0.6rem + 1.5vw);
    margin-top: 40px;
  }



  .manager-header{
    margin-bottom: 0px !important;
    font-size: calc(0.6rem + 1.5vw);
  }

  .meeting-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 80px !important;
  }
 .meeting-btns {
    margin-left: -20px;
    display: flex;
    align-items: center; 
    justify-content: space-between;
  }

 

}


@media only screen and (max-width: 491px) and (min-width: 390px) {


  .meeting-header{
   
    font-size: calc(0.6rem + 1.5vw);
    margin-top: 40px;
  }



  .manager-header{
    margin-bottom: 0px !important;
    font-size: calc(0.6rem + 1.5vw);
  }

  .meeting-checkbox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 80px !important;
  }
 .meeting-btns {
    margin-left: -20px;
    display: flex;
    align-items: center; 
    justify-content: space-between;
  }

}


 /*--------------------------------------------------------------
  # Slider RESPONSIVE 4. Contact
  --------------------------------------------------------------*/
  @media only screen and (max-width: 815px) and (min-width: 770px) {

    .contact-heading{

      font-size: calc(1.3rem + 1.5vw);
    }
    input[type="text"], input[type="email"], textarea {
      width: 85% !important;

    }

  }


  @media only screen and (max-width: 771px) and (min-width: 711px) {
    .contact-heading{

      font-size: calc(1.2rem + 1.5vw);
    }

    input[type="text"], input[type="email"], textarea {
      width: 85% !important;

    }


  }

  @media only screen and (max-width: 712px) and (min-width: 590px) {
    .contact-heading{

      font-size: calc(1rem + 1.5vw);
    }
    input[type="text"], input[type="email"], textarea {
      width: 85% !important;

    }
  }

  
  @media only screen and (max-width: 591px) and (min-width: 533px) {
    .contact-heading{

      font-size: calc(0.9rem + 1.5vw);

    }

    input[type="text"], input[type="email"], textarea {
      width: 85% !important;

    }
    .con-heading{
      font-size: calc(1rem + 1.5vw);

    }
  }

    
  @media only screen and (max-width: 534px) and (min-width: 475px) {
    .contact-heading{

      font-size: calc(0.8rem + 1.5vw);

    }

    input[type="text"], input[type="email"], textarea {
      width: 80% !important;

    }
    .con-heading{
      font-size: calc(0.86rem + 1.5vw);

    }
  }

  @media only screen and (max-width: 475px) and (min-width: 390px) {


 .contact-heading{

      font-size: calc(0.7rem + 1.5vw);

    }

    input[type="text"], input[type="email"], textarea {
      width: 80% !important;

    }
    .con-heading{
      font-size: calc(0.8rem + 1.5vw);

    }
  }



/*--------------------------------------------------------------
  # Slider BUTTON
  --------------------------------------------------------------*/

.btn-get-started {
  font-size: 13px;
  padding: 10px 20px;
  background-color: var(--accent-color);
  color: #000000;
  text-transform: uppercase;
  border-radius: 100px;
  transition: 0.3s;
  display: inline-block;
}

.btn-get-started:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

@media only screen and (max-width: 450px) and (min-width: 380px) {
  .btn-get-started {
    font-size: 12px !important; 
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #000000;
    text-transform: uppercase;
    border-radius: 100px;
    transition: 0.3s;
    display: inline-block;
  }
}


.navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.nav-btn {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  transition: background-color 0.3s;
}

.nav-btn:hover,
.nav-btn.active {
  background-color: #fff;
}

.social-icons {
  position: absolute;
  left: 20px;
  top: 40%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
}

.social-icons a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
  # Service Styles
--------------------------------------------------------------*/
.service {
  font-size: 50px;
}

.fitout {
  background-color: var(--accent-color);
  color: var(--purple-color);
  height: 100%;
}

.it {
  background-color: var(--purple-color);
  color: var(--accent-color);
  height: 100%;
  position: relative;
}

.corner-img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 100px;
  height: auto;
}

.service-fitout:hover{
  color: var(--black-color);
}

@media (max-width: 768px) {
  .corner-img {
    width: 30px;
    top: 5px;
    right: 5px;
  }
}

/* Full height for both columns */
.main > .row {
  height: 100%;
}

.fitout,
.it {
  min-height: 50vh;
  font-weight: bold;
}

@media (min-width: 768px) {
  .fitout,
  .it {
    height: 100vh; /* Full height for larger screens */
  }
}

/*--------------------------------------------------------------
# Calculation Styles
--------------------------------------------------------------*/

.place-type {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-get-started,
.btn-skip {
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 100px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.custom-checkbox input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--surface-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}

.custom-checkbox input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.custom-checkbox input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 15px;
  border: solid var(--black-color);
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* .checktext {
  font-size: 25px;
} */

input[type="text"], input[type="email"], textarea {
  width: 50%; /* Adjust the width as needed */
  padding: 10px 15px;
  margin: 5px 0;
  border-radius: 25px; /* Rounded corners */
  border: 1px solid rgba(255, 255, 255, 0.5); /* Semi-transparent border */
  background-color: rgba(0, 0, 0, 0.5); /* Black transparent background */
  color: #fff; /* White text color */
  font-size: 16px; /* Adjust the font size as needed */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional: subtle shadow for a 3D effect */
  transition: background-color 0.3s, border 0.3s;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7); /* Lighter color for placeholder text */
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  background-color: rgba(0, 0, 0, 0.7); /* Slightly darker background on focus */
  border: 1px solid rgba(255, 255, 255, 0.7); /* Slightly more opaque border on focus */
  outline: none; /* Remove default outline */
}
@media (max-width: 576px){
    input[type="text"], input[type="email"], textarea {
      width: 100%
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/* Products BG Image
------------------------------*/
.project-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/project.jpg") !important;
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  /* height: 100vh; Adjust the height as needed */
}
.project {
  /* background-color: var(--purple-color); */
  font-size: 20px;
  color: var(--background-color);
  padding: 20px;
  text-align: center;
}
/* Additional portfolio styles remain unchanged */
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio-wrap .slide::before {
    background-color: rgba(0, 0, 0, 0) !important; 
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
  color: white;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #403847;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
  color: white;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.project h2 {
  color: var(--accent-color);
}
.portfolio-wrap .slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    
}
/*--------------------------------------------------------------
   # FOR MOBILE DEVICE  
--------------------------------------------------------------*/

@media (max-width: 600px) {
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }

  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }

  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
  }

  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: white;
  }

  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }

  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
  }

  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }

  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }

  .portfolio .portfolio-wrap .portfolio-info h5 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
    color: white;
  }

  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #403847;
  }

  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
  }

  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
  # FOR LARGE DEVICE  
--------------------------------------------------------------*/

@media (min-width: 600px) {
  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }

  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
  }

  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: white;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
  }

  .portfolio #portfolio-flters li:hover,
  .portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: white;
  }

  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }

  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(34, 34, 34, 0.6);
  }

  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(34, 34, 34, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }

  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }

  .portfolio .portfolio-wrap .portfolio-info h5 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px !important;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-style: italic;
  }

  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 5px 0 0;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
    color: white;
  }

  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: var(--purple-color);
  }

  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.2);
  }

  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #64ab73;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #64ab73;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  color: #000000;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #64ab73;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/* --------------------------------------------
            About Us
-----------------------------------------------*/
.about {
  background-color: var(--purple-color);
  color: var(--background-color);
  /* padding: 20px; */
  text-align: center;
}

.about h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* .about p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
} */

/* .aboutimg {
  background-color: var(--accent-color);
  padding: 70px;
  
} */

.leftie {
  background-color: #4b3e33;
  /* min-height: 100vh; */
}

.rightie {
  background-color: var(--purple-color);
  /* min-height: 100vh; */
}



/* --------------------------------------------
            SOCIAL ICONS FOR PROJECTS FILE:
-----------------------------------------------*/

.social-icon-pro {
  position: fixed;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  list-style-type: none;
  z-index: 1000; /* Ensures it stays on top of other elements */
}

.social-icon-pro li {
  margin: 5px 0;
}

.social-icon-pro a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icon-pro a:hover {
  color: var(--accent-color);
}

.social {
  background-color: #4b3e33;
}

.img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
}
/* 
@media (max-width: 768px) {
  .about {
    padding: 10px;
  }

  .aboutimg {
    padding: 10px;
  }

  .about p {
    font-size: 14px;
  }

  .social-icon {
    left: 10px;
  }
} */


/* --------------------------------------------
          ABOUT US RESPONSIVE 
-----------------------------------------------*/
@media (min-width: 992px) {
  .about p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .about-img {
    width: 100%;
    margin: 100px;
    margin-bottom: 0px;
    margin-top: 155px;
    position: relative;
  }

  .leftie {
    background-color: #4b3e33;
    min-height: 100vh;
  }

  .rightie {
    background-color: var(--purple-color);
    min-height: 100vh;
  }
  .about h2 {
    font-size: 20px;
  }

  .social-icon {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
  }

  .social-icon li {
    margin: 5px 0;
  }

  .social-icon a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }

  .mobile-nav-toggle {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
    margin-right: 30px;
   padding: 0;
  }

  /* @media (min-width: 992px) {
    .col-lg-1 {
        flex: 0 0 auto;
        width: 5.333333% !important ;
    }
} */
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  .about {
    padding-top: 150px;
  }
  .about p {
    font-size: 25px;
    line-height: 1.5;
    padding: 20px;
  }
  .about-img {
    width: 100%;
    margin: 60px;
    margin-bottom: 0px;
    background-size: cover;
    position: relative;
  }

  .social-icon {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
  }

  .social-icon li {
    margin: 5px 0;
  }

  .social-icon a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }
}

@media only screen and (max-width: 768px) and (min-width: 576px) {
  .about {
    padding-top: 150px;
  }

  .social-icon {
    position: relative;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    font-size: 20px;
  }

  .about p {
    font-size: 18px;
    line-height: 1.5;
    padding: 15px;
  }

  .about-img {
    width: 100%;
    margin: 50px;
    margin-bottom: 0px;
    background-size:contain;
    position: relative;
  }

  
  .social-icon li {
    margin: 5px 0;
  }

  .social-icon a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }
}

@media only screen and (max-width: 576px) and (min-width: 450px) {
  .about {
    padding-top: 150px;
  }

  .social-icon {
    position: relative;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    font-size: 18px;
  }

  .about p {
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
  }

  .about-img {
    width: 100%;
    margin: 60px;
    margin-bottom: 0px;
    background-size: contain;
    position: relative;
  }

  .social-icon li {
    margin: 5px 0;
  }

  .social-icon a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s;
  }

  
  .mobile-nav-toggle {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
    margin-right: 40px;
  
  }


}



@media only screen and (max-width: 450px) and (min-width: 380px) {

  .about {
    padding-top: 150px;
  }

  .social-icon {
    position: relative;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    list-style-type: none;
    font-size: 17px;
  }

  .about p {
    font-size: 16px;
    line-height: 1.5;
    padding: 7px;
  }



  .about-img {
    width: 100%;
    margin: 60px;
    margin-bottom: 0px;
    background-size: contain;
    position: relative;
  }
  .social-icon li {
    margin: 3px 0;
  }

  .social-icon a {
    color: #fff;
    
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .mobile-nav-toggle {
    cursor: pointer;
    width: 30px;
    height: 25px;
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    z-index: 10000;
    transition: all 0.3s ease;
    margin-right: 50px;
  
  }


}

/* @media (max-width: 568px) {
  .row {
    flex-direction: column;
  }

  .about,
  .aboutimg {
    padding: 10px;
    text-align: center;
  }

  .about h2 {
    font-size: 1.5rem;
  }

  .about p {
    font-size: 14px;
  }

  .social-icon {
    flex-direction: row;
    justify-content: center;
    position: static;
    transform: none;
    margin-bottom: 20px;
  }

  .social-icon li {
    margin: 0 10px;
  }
} */

/*--------------------------------------------------------------
# Client
--------------------------------------------------------------*/
.client-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/client.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 0; Added padding for better spacing */
}

.client-section h2 {
  color: var(--accent-color);
  font-size: 2.5rem; /* Adjust size for visibility */
  margin-bottom: 30px; /* Space below heading */
}

.client-section .img-fluid {
  max-width: 90%;
  height: auto;
  margin: 5px; /* Add margin for spacing between images */
}

/* Responsive Design for Different Screen Sizes */
@media (max-width: 768px) {
  .client-section .img-fluid {
    max-width: 80%; /* Adjust image width for smaller screens */
  }
}

@media (max-width: 576px) {
  .client-section .img-fluid {
    max-width: 100%; /* Full width for very small screens */
  }
}
/*--------------------------------------------------------------
# Client Section Styles
--------------------------------------------------------------*/

.client-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/client.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60px; /* Space around client section */
}

.client-section h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px; /* Space between logos */
  justify-items: center; /* Center logos in grid */
}

.client-grid img {
  width: 100%;
  max-width: 150px; /* Max width for uniform size */
  height: auto;
  object-fit: contain;
  background-color: transparent; /* Ensuring transparent background */
  padding: 10px; /* Padding around logos */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

.client-grid img:hover {
  transform: scale(1.1); /* Slight zoom-in on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .client-grid {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 576px) {
  .client-grid {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}


/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/

/* Contact Us Section Styles */
.contact-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/contactus.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 60px 0; */
  min-height: 100vh; 
  display: flex;
  align-items: center; 
  justify-content: center;
  flex-direction: column; 
  text-align: center; 
}

.section-title h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center; 
  /* padding-right: 160px; */
}


.contact .info-item + .info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--background-color);
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--background-color);
  text-align: left;
}

.contact .info-item p {
  font-size: 18px;
  color: var(--background-color);
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Styling for Google Maps iframe */
.contact .contact-container iframe {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact .info-item h3,
  .contact .info-item p {
    font-size: 16px;
  }

  .contact .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact .contact-container .info-item,
  .contact .contact-container iframe {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .contact-section h2 {
    font-size: 2rem;
  }

  .contact .info-item i {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .contact .info-item h3,
  .contact .info-item p {
    font-size: 14px;
  }
}
.contact button {
  display: block; /* Makes the button appear on a new line */
  width: 50%; /* Adjust width as needed */
  margin: 20px auto 0 auto; /* Adds space above the button and centers it */
  padding: 10px 20px; /* Adjust padding for the button */
  background-color: var(--accent-color); /* Button background color */
  color: var(--contrast-color); /* Button text color */
  border: none; /* Remove button border */
  border-radius: 25px; /* Rounded corners */
  font-size: 16px; /* Adjust font size */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.contact button:hover {
  background-color: var(--accent-color-hover); /* Change background color on hover */
}

.contact-input {
  width: 75% !important; 
}


.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-container .col-lg-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-add{
  margin-bottom: 0px !important;
  margin: 0px !important;
}

.conta-address{
  padding-right: 32px;
}
/*--------------------------------------------------------------
# Fit-out
--------------------------------------------------------------*/
.fit-out-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/fit-out.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.fit-out-title h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-align: center;
}

.card-flipper {
  position: relative;
  width: 300px;
  max-width: 400px; /* Constrain the width of the cards */
  height: 400px; /* Slightly increased the height for better visual impact */
  margin: 20px auto; /* Add margin to separate the cards */
  perspective: 1000px; /* Add perspective for 3D effect */
}

.card__front, .card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.card__front {
  background-color: var(--accent-color); /* White background for the front */
  z-index: 2;
  transform: rotateY(0deg);
}

.card__back {
  background-color: var(--purple-color); /* Purple background for the back */
  color: #fff;
  transform: rotateY(-180deg);
}

.card-flipper.effect__hover:hover .card__front {
  transform: rotateY(180deg);
}

.card-flipper.effect__hover:hover .card__back {
  transform: rotateY(0deg);
}

.card-title {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 24px; /* Slightly smaller font size */
  font-weight: bold;
}

.card__back .card-body .card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6; /* Better line spacing */
  margin: 20px; /* Add some margin around the text */
  padding: 10px;
  text-align: center;
}

.card__front .card-body .card-text {
  font-size: 16px;
  margin: 0 auto;
  padding: 10px;
}

.card__front {
  position: relative; /* Positioning context for the image */
  background-color: #fff; /* White background for the front */
  z-index: 2;
  transform: rotateY(0deg);
}

.front-image {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  z-index: 1; /* Place the image behind the text */
}

.card-body {
  position: relative; /* Ensure text is positioned above the image */
  z-index: 2; /* Text should be above the image */
}

.card-title {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 24px; /* Adjust as needed */
  font-weight: bold;
}

.d-block {
  display: block;
}
.d-none {
  display: none;
}

footer {
    display: block !important;
    visibility: visible !important;
    background-color: var(--purple-color);
}
footer p{
    color:var(--background-color);
    font-family: var(--heading-font);
}

footer span {
    font-weight: bold;
    color:var(--accent-color);
}

.footer-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white;
    text-align: center;
    padding: 10px;
}

.copyright-text2 {
    position: absolute;
    bottom: 10px;
    right: 20px;
    color:var(--background-color); 
    font-size: 15px;
    font-family: var(--heading-font);
}

.copyright-text span, .copyright-text2 span {
    font-weight: bold;
    color:var(--accent-color);
}

.footer-container {
    position: relative; /* Ensure proper positioning */
}

.copyright-text {
    /*position: absolute;*/
    /*bottom: 10px;*/
    /*right: 20px;*/
     display: flex;
    justify-content: flex-end; 
    color: var(--background-color); /* Ensure contrast */
    font-size: 15px;
    font-family: var(--heading-font);
}

