

:root {

    --accent: #554740;

    --dark-text: #242424;

    --black-background: #000;

    --dark-background: #554740;

    --white-text: #fff;

    --light-gray-text: #D9D9D9;

    --dark-gray-text: #666666;

    --white-background: #fff;

    --gray-background: #F4F4F4;

  }

  /* to be deleted tbd end*/

/* reset all default margin and padding */

*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  
  user-select: none;

  -webkit-user-select: none; /* Safari */
 
  -ms-user-select: none;     /* IE/Edge */

}

ul,a{

    list-style: none; 

}

/* Set up some basic styles */

html{
  scroll-behavior: smooth;

}



.smooth-wrapper {

  position: fixed;

  width: 100%;

}



body {

  line-height: 1.4;              

  width: 100vw;

  overflow-x: hidden;

  
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.fade-text span {
  color: gray;
    transition: color .25s linear;

}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


/* Style the scrollbar itself */

::-webkit-scrollbar {

  width: 15px;  /* Width of the vertical scrollbar */

  height: 12px; /* Height of the horizontal scrollbar */

}



/* Style the thumb (the draggable part of the scrollbar) */

::-webkit-scrollbar-thumb {

  background-color: var(--dark-background); /* Thumb color */

  border-radius: 10px;       /* Rounded corners for the thumb */

  border: 3px solid #f1f1f1; /* Border around the thumb */

  transition: all 0.4s ease;

}



/* Style the track (the area the thumb slides within) */

::-webkit-scrollbar-track {

  background-color: #f1f1f1; /* Track color */

  border-radius: 10px;       /* Rounded corners for the track */

}



/* Optional: Style the hover effect on the thumb */

::-webkit-scrollbar-thumb:hover {

  background-color: #d19458; /* Change color when the thumb is hovered */

}

.error-message{

  color: red;

}

.container{

  width: 100%;

  /* padding: 0 5%; */
  padding:  0 32px 72px;
  

  margin: auto; 

  padding-bottom: 100px; 

}
.alert{

  position: fixed;

  z-index: 24;

  bottom:30px;

  right:30px;

  transition: opacity 0.5s ease-in-out;

  animation: fadeOut 5s forwards;

  color: var(--dark-text);

  padding: 20px;

  border-radius: 20px;

  z-index: 40;

}

.alert-success{

  background-color: #4CAF50;

}

@keyframes fadeOut {

  0% {

    opacity: 1;

  }

  80% {

    opacity: 1;

  }

  100% {

    opacity: 0;

    visibility: hidden;

  }

}

.white-color{

  color: var(--dark-text) !important;

}

.dark-color{

  color: var(--dark-text) !important;

}

.mobile-only{

  display: none;

}

section{

  display: flex;

  justify-content: center;

  align-items: center;

  position: relative;

  /* overflow: hidden; */

}

.only-mobile{

 display: none; 

}

.black-btn:hover{

    cursor: pointer;

    background-color: transparent;

    border: 1px solid var(--dark-text);

    color: var(--dark-text);

  }

.bg-gray{

    background-color: #D9D9D9;

}

.pb-200{
  padding-bottom: 200px;
}
.pb-100{

  padding-bottom: 100px;

}
.pb-50{

  padding-bottom: 50px;

}
.pt-100{

  padding-top: 100px;

}
.pt-50{

  padding-top: 50px;

}

.ph-20{
  padding-inline: 20px;
}
.p-10{

  padding: 10px;

}

.p-20{

  padding: 20px;

}

.p-30{

  padding: 30px;

}

.p-40{

  padding: 40px;

}

.p-50{

  padding: 50px;

}

.p-100{

  padding: 100px;

}
.p-200{

  padding: 200px;

}

.pv-100{
 padding-top: 100px;
 padding-bottom: 100px;
}
.pv-200{
 padding-top: 200px;
 padding-bottom: 200px;
}
.m-auto{

  margin-inline: auto;

}

.mb-10{

  margin-bottom: 10px;

}

.mb-20{

  margin-bottom: 20px;

}

.mb-50{

  margin-bottom: 50px;

}

.mb-100{

  margin-bottom: 100px;

}

.h-100{

  height: 100%;

}

.h-50{

  height: 50%;

}

.w-100{

  width: 100%;

}

.w-50{

  width: 50%;

}

.flex{ /* this will be column in mobile */

    display: flex;

}

.flex-row{ /* this will always be row  */

  display: flex;

  flex-direction: row;

  gap: 20px;

  align-items: center;

}

.flex-column{ 

  display: flex;

  flex-direction: column;

}
.flex-wrap{
  flex-wrap: wrap;
}
.justify-center{

  justify-content: center;

}
.space-around{

  justify-content: space-around;

}

.space-evenly{

  justify-content: space-evenly;

}

.justify-start{

  justify-content: flex-start;

}

.justify-end{

  justify-content: flex-end;

}

.space-between{

  justify-content: space-between;

}

.align-start{

  align-items: flex-start;

}

.align-end{

  align-items: flex-end;

}

.align-center{

  align-items: center;

}

.gap-10{

    gap: 10px;

}

.gap-20{

    gap: 20px;

}

.gap-32{
  gap: 32px;
}
.gap-40{

    gap: 40px;

}

.gap-50{

    gap: 50px;

}

.gap-72{
  gap: 72px;
}
.gap-100{

  gap: 100px;

}
.gap-200{

  gap: 200px;

}

html.no-scroll {

  overflow: hidden;

}



.image-conatiner img{

 width: 100%;

}

section{

  /* overflow: hidden; */

  width: 100vw;

  font-weight: 600;

}


h1{

    font-size: 128px;

    font-family: 'Objektiv';

    color: var(--dark-text);

    font-weight: 800;

    line-height: 1;

    text-align: left;

  }

h2{

  font-size: 32px;

    font-family: 'Objektiv';

    color: var(--accent);

    font-weight: bold;

    font-weight: 700;


}

h3{

    font-size: 96px;

    font-family: 'Objektiv';

    color: var(--dark-text);

    font-weight: bold;

    line-height: 1.2;
}

h4{

    font-size: 36px;

    font-family: 'Objektiv';

    color: var(--dark-text);

    font-weight: 700;

}

h5{

    font-size: 32px;

    color: var(--dark-text);

    font-weight: 500;

}

h6{

  font-size: 24px;

  color: var(--dark-text);

  font-weight: 500;

  font-family: 'Objektiv';

}

p{
    font-family: 'Objektiv';

    color: var(--dark-text);

    font-weight: 400;

}

a{

    font-weight: 400;

    color: var(--dark-text);

}
a, span{
  font-size: 16px;
  
  font-family: 'Objektiv';
  
  text-decoration: none;
  
}
span{
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.dark-text{

  color: var(--dark-text);

}

.dark-text{

  color: var(--dark-text);

}

.accent-text{

  color: var(--accent);

}

.dark-gray-text{

  color: var(--dark-gray-text);

}

.light-gray-text{

  color: var(--light-gray-text);

}

.image-container img{

  width: 100%;

}

.xl6-text{

  font-size: 96px;

}
.xl5-text{

  font-size: 72px;

}

.xl4-text{

  font-size: 60px;
  line-height: 1;

}

.xl3-text{

    font-size: 48px;

}

.xl2-text{

    font-size: 36px;

}

.xl-text{

    font-size: 32px;

}

.l-text{

    font-size: 24px;

}

.m-text{

    font-size: 20px;

}

.s-text{

    font-size: 18px;
    line-height: 2;

}

.xs-text{

    font-size: 16px;

}
.xs2-text{

    font-size: 12px;
}
.text-balanced{
  text-wrap: balance;

}
.text-center{

  text-align: center;

}

.text-left{

  text-align: left;

}

.text-right{

  text-align: right;

}

.bg-dark{

  background-color: var(--dark-background);

}

.bg-white{

  background-color: var(--white-background);

}

.bg-accent{

  background-color: var(--accent-background);

}

.max-300{

  max-width: 300px;

}

.max-450{
  max-width: 450px;
}
.max-500{

  max-width: 500px;

}

.max-1000{
  max-width: 1000px;
}
.max-1200{

  max-width: 1200px;

  margin-inline:auto;

}

.max-1440{

  max-width: 1440px !important;

  margin-inline: auto;

}

.max-1900{

  max-width: 1900px !important;

  margin-inline: auto;

}

.width-100{

  width: 100%;

}


  .absolute{

    position: absolute;

  }



  /* buttons start */

  

.btn{

  min-width: 200px;

}

.outlined-btn{

  text-align: center;

  background-color: transparent;

  border: 1px solid var(--dark-text);

  color: var(--dark-text);

  width: 200px;

  padding: 10px 0;

  position: relative;

  overflow: hidden;



}

.outlined-btn:hover{

  cursor: pointer;

}
.outlined-btn:hover .btn-bg{
 background-color: #fff;
}
.outlined-btn:hover .btn-label{
 color: #000;
}
.white-btn{

  border-color: var(--dark-text);

  color: var(--dark-text);

}

.white-btn:hover span{

  color: var(--dark-text) !important;

}

.black-btn{

  text-align: center;

  background-color: var(--dark-text);

  color: var(--dark-text);

  padding: 10px 20px;

  position: relative;

  overflow: hidden;



}

.accent-btn{

  text-align: center;

  background-color: var(--accent);

  color: var(--dark-text);

  padding: 5px 10px;

  position: relative;

  overflow: hidden;

  transition: all .4s ease;

  border: none;

}

.accent-btn:hover{

  transform: scale(1.1);

  border: 1px solid var(--accent);

  background-color: transparent;

  color: var(--accent);

  cursor: pointer;

}




.btn:hover .btn-bg {

  transform: translate(-50%, -50%) scale(1);

}

.btn-label{

  position: relative;

  font-weight: 400;

  transition: color 0.3s ease-out;

  z-index: 1;

}



.outlined-btn:hover .btn-bg {

  transform: translate(-50%, -50%) scale(1);

}

/* for fill animation */ 

.btn-bg{

  position: absolute;

  top: 0;

  left: 0;

  min-width: 225%;

  min-height: 225%;

  aspect-ratio: 1;

  border-radius: 50%;

  background-color:  var(--dar);

  transform: translate(-50%, -50%) scale(0);

  transition: transform 0.5s ease-out;

}


  /* buttons end */

/* header start */

header{
  background: var(--white-background);
  width: 100vw;
}
.header-container{
  width: 100vw;
  max-width: 1440px;
  padding-inline: 50px;
  padding-top: 35px;
  margin-inline:auto;
  position: relative;

  display: flex;
  justify-content: space-between;
}
.header-container svg{
  width: 200px;
}
.header-container a{
  transition: all .4s ease;
}
.header-container a:hover{
  font-size: 1.25em;
  color: black;
  font-weight: 600;
}
/* header end */

/**************************  Homepage Start ***************************/

.hero-section{
  overflow: hidden;
  padding: 72px 32px;
position: relative;
z-index:-1;
}
.hero-section h1{
  will-change: contents;
  contain: layout style paint;
}
.hero-section .title-container{
  position: relative;
  margin-bottom: 60px;
}
.hero-section .title-container p{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  font-weight: bold;
}
.hero-section .image-container{
  width: 60%;
}
.hero-section .text-container{
  width: 40%;
}
.hero-section .hero-box{
      will-change: transform;
contain: style;
width: 100%;
  height: 310px;
  border-radius: 15px;
  padding: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.hero-box-1 {
  opacity: 1; /* Keep visible for LCP */
  visibility: visible; /* Keeps it in LCP calculation */
  transform: translateY(1000px);
}
.hero-box-2 {
  opacity: 1; /* Keep visible for LCP */
  visibility: visible; /* Keeps it in LCP calculation */
  transform: translateX(1000px);
}
.hero-box-3 {
  opacity: 1; /* Keep visible for LCP */
  visibility: visible; /* Keeps it in LCP calculation */
  transform: translateY(500px);
}
.hero-section .hero-box p{
  color: var(--white-text);
}

.hero-section .hero-box:nth-of-type(1){
  background-color: var(--dark-background);
}
.hero-section .hero-box:nth-of-type(1) .s-text{
  width: 233px;
}
.hero-section .hero-box:nth-of-type(1) .l-text{
  width: 170px;
}
.hero-section .hero-box:nth-of-type(2){
  position: relative;
  height: 240px;
}
.hero-section .hero-box:nth-of-type(2) img{
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
/* hero section end */
/* services section start*/
.cards-container{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding:50px 30px;
  border: 1px solid #adadad;
  width: 425px;
  gap: 40px;
  padding-inline: 20px;
  border-radius: 18px;
}
.service-card svg{
  width: 150px;
  height: 150px;
  align-self: center;
}
.service-card::after{
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 24px;
  font-family: "Objektiv";
}
.service-card:nth-child(1):after{
  content: "1.";
}
.service-card:nth-child(2):after{
  content: "2.";
}
.service-card:nth-child(3):after{
  content: "3.";
}
.service-card:nth-child(4):after{
  content: "4.";
}
.service-card:nth-child(5):after{
  content: "5.";
}
.service-card:nth-child(6):after{
  content: "6.";
}
/* services section end*/

/* About section  start*/

.about-section .image-container{
  width: 800px;
  transform-origin: top center;
  animation: swing 10s infinite ease-in-out;

}
@keyframes swing {
  0% { transform: rotate(2deg); }
  50% { transform: rotate(-2deg); }
  100% { transform: rotate(2deg); }
}
.about-section .text-container{
  width: 500px;
}

/* About section  end*/
#animated-text{
    color:#ababab;
}
/* values section start */


.values-container{
  height: 1900px;
  position: relative;
}
.values-container .background-image{
  position: absolute;
  bottom:0;
  z-index: -2;
}
.values .title-text .s-text{
  max-width: 700px;
  width: 100%;
}
.square .image-container{
  width: 125px;
}
.square .image-container svg{
  width: 100%;
  height: 100%;
}
.square .image-container svg path{
    stroke:var(--accent)

}
.square{
  width: 30%;
  max-height: 420px;
  background: transparent;
  padding: 50px;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  overflow: hidden;
  transition: max-height .6s ease;
}
.square::after{
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  filter: blur(100px);
  background-color: var(--light-gray-text);
  width: 75%;
  height: 75%;
  border-radius: 50px;

}
.square p{
  color: var(--dark-text);
  text-align: left;
  font-weight: bold;
}
.square p.s-text{
  opacity: 0;

  transition: opacity .1s ease ;
}
.square.open{
  max-height: 650px;
}
.square p.show{
  opacity: 1;
  transition: opacity .6s ease .3s;
}
.square:hover{
  cursor: pointer;
}

.square p{
  transition: all .4s ease;
}
.square:hover p,.square.open p{
  color: white;
}
.square:hover, .square.open{
  background-color: var(--dark-background);
}
.square {
  transition: all .4s ease;
}
.square p{
  transition: all .4s ease;
}
.square:hover svg path, .square.open svg path{
  color: white;
  stroke: #fff;
}
/* values section end */
/* process section start */
.process .circle{
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}
.process .s-text{
  width: 280px;
  text-align: center;
}
/* process section end */
/* parallax section start */

.parallax-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%; /* larger than container for scroll effect */
  background-image: url('../images/homepage/parallax.webp');
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: translateY(0);
  transition: transform 0.1s linear;
}

.parallax-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  color: white;
  text-align: center;
}


/* parallax section end */
/**************************  Homepage End ***************************/


/************************************ footer start ************************************/
footer {
  background: var(--dark-background);
  padding: 40px 40px 20px 40px ;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100vw;
  overflow: hidden;
}
.footer-text{
  font-size: 16px;
}
a{
  color: var(--light-gray-text);
}
.footer-container {
  position: relative;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin-inline: auto;
  align-items: flex-start;
  height: 350px;
}
.map-image{
  max-width: 400px;
}
.footer-column {
  margin-right: 30px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.footer-column:first-child{
  height: 100%;
}
.footer-column:first-child p{
  width: fit-content;
}
.footer-column:first-child .image-container{
  width:620px; 
  left: 0;
  bottom: 0;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: var(--white-text);
  text-align: left;
  width: 100%;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
}

.footer-column:nth-child(2) li {
  margin-bottom: 10px;
  text-align: left;
}
.footer-column:nth-child(3) li {
  margin-bottom: 20px;
}
.footer-column li a{
    transition: all 0.4s ease;
}
.footer-column li a:hover {
  font-weight:600;
  font-size: 18px;
}


.footer-logo {
  margin-bottom: 20px;
  width: 400px;
}

.footer-email {
  padding: 10px;
  width: 100%;
  margin-bottom: 15px;
}

.footer-btn {
  padding: 10px 20px;
  color: white;
  border: none;
  cursor: pointer;
}

footer .copyright hr{
  height: 1px;
  width: 100%;
  color: var(--black-background);
  border-color: #adadad;
  margin: 20px 0;
}
.copyright p{
  color: var(--white-text);
  text-align: left;
}
/************************************* footer end *************************************/
