/* Importing Poppins font family from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

:root {
    --yellow-light: #004100;
    --yellow-deep: #003a00;
    --secondary: #6e802a;
    --primary: #A3BD40;
    --accent: #131224;

    --white: #fff;
    --primary-dark: #546123;
    --body: #131224;
    --border: rgba(0,0,0,0.08);
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
    
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--primary-dark);
    line-height: 1.7;
    /* background: var(--body); */
}

.head {
  color: var(--primary-dark);
  font-weight: 500;
  margin-bottom: 10px;
  position: relative;
}

.title {
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 80px;
  text-transform: uppercase;
}

.head::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  width: 40px;
  height: 5px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  border-radius: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
} 

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px; 
  margin: 0 auto;
  width: 80%;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 10%;
    position: relative;
    left: 0;
    top: 0;
    z-index: 999;
    /* box-shadow: var(--shadow); */
}

.logo img {
    width: 120px;
}

#menuBtn {
    display: none;
} 
    
#closeBtn {
    display: none;
}
    
#menu {
    flex: 1;
    text-align: right;
}
    
#menu li {
    display: inline-block;
    margin-right: 22px;
    font-size: 18px;
    font-weight: 400;
    padding: 0;
}
    
#menu li a {
    text-decoration: none;
    color: #fff;
    transition: all 0.4s;
    text-transform: capitalize;
    font-weight: 600;
    transition: 0.5s ease;
    position: relative;
    font-size: 18px;
}
    
#menu li a:hover {
    color: var(--primary);
}
    
#menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    background: #fff;
    width: 0;
    border-radius: 3px;
    height: 3px;
    transition: 0.5s ease;
}

#menu li a:hover::after {
    width: 100%;
}

/* hero */
#hero {
    width: 100%;
    height: 100vh;
    /* background: url(/images/hero.jpg) no-repeat center/cover; */
    /* background: url(/img/hero-image.jpeg) no-repeat center/cover; */
    background-attachment: fixed;
}

.overlay {
  background: rgba(0,0,0,0.5);
}

.hero .text-box {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
}

.hero .text-box h1 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero .text-box h2 {
  color: #fff;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  line-height: 1.2;
  margin-left: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero p {
  color: #fff;
}

.btn {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 12px 30px;
  border-radius: 30px;
  margin-top: 40px;
  display: inline-block;
  font-weight: bold;
  transition: background 0.5s;
}

.btn:hover {
  background: var(--primary-dark);
}



/* ========== HERO SECTION ============ */
#hero {
    width: 100%;
    height: 100vh;
    /* background: url(/img/banner.jpg) no-repeat center/cover; */
    background: url(/images/hero.jpg) no-repeat center/cover;
    background-attachment: fixed;
}

.overlay {
  background: rgba(0,0,0,0.5);
}

.hero .text-box {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
}

.hero .text-box h1 {
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero .text-box h2 {
  color: #fff;
  padding-left: 10px;
  border-left: 3px solid var(--primary);
  line-height: 1.2;
  margin-left: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  
}

.hero p {
  color: #fff;
}

.btn {
  text-decoration: none;
  color: #fff;
  background: var(--primary);
  padding: 12px 30px;
  border-radius: 15px;
  margin-top: 40px;
  display: inline-block;
  font-weight: bold;
}

/* two-col */
.two-col {
  padding-top: 100px;
  padding-bottom: 250px;
}

.two-col .col-2 div {
  border-radius: 20px;
}

.two-col .left {
  position: relative;
  padding-right: 60px;
}

.two-col .col-2 .left-img1 {
  height: 550px;
  position: relative;
  width: 85%;
  position: relative;
  /* border-radius: 5px; */
  position: relative;
  /* z-index: 1; */
  background: url(/img/IMG-20251108-WA0011.jpg) no-repeat center/cover;
}

.two-col .col-2 .left-img1::after {
    position: absolute;
    content: '';
    /* background: #fdad0877; */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.two-col .col-2 .left-img2 {
  margin-left: 150px;
  height: 400px;
  position: absolute;
  right: 50px;
  top: 0;
  margin-top: 250px;
  z-index: 1;
  display: block;
  overflow: visible;
  box-shadow: var(--shadow);
}


.two-col .col-2 .left-img1,
.two-col .col-2 .left-img2 {
  overflow: hidden;
}

/* .two-col .col-2 .left-img1 img {
  width: 100%;  
  height: 100%;
  object-fit: cover;
} */

/* .two-col .col-2 .left-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 */
 
.two-col .col-2 .left-img1 img,
.two-col .col-2 .left-img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col .head {
  position: relative;
  margin-left: 40px;
}

.two-col .head::after {
  content: '';
  position: absolute;
  left: 0;
  top: 40%;
  transform: transition(-50%);
  width: 40px;
  height: 3px;
  margin-left: -30px;
}

.two-col .col-2 .paraOne {
  margin-top: 40px;
}

.two-col .col-2 .paraOne.border {
  position: relative;
  padding-left: 30px;
  margin-left: 30px;
}
.two-col .paraOne.border:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  width: 3px;
}

.two-col .count{
  color: var(--primary);
  font-size: 50px;
  font-weight: 800;
}

.two-col .col-2.right .container.margin {
  margin-top: 50px;
  justify-content: ;
  width: 100%;
  align-items: center;
}

/* ========== EXPERIENCE SECTION ============ */
.experience {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--primary);
}

.experience .head {
  color: #fff;
}

.experience .head::after {
  background: #fff;
}

.experience h1 {
  color: #fff;
  margin-bottom: 50px;
}

.experience .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.experience .col-2 {
  display: flex;
  align-items: center;
  background: var(--secondary);
  border-top: 5px solid #fff;
  transition: all 1s;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 20px;
}

.experience .col-2:hover {
  background: #fff;
  border-top: 5px solid var(--primary-dark);
  transform: translateY(-7px);
}

.experience .col-2:hover .exp-icon .fa-solid {
  color: var(--primary-dark);
} 

.experience .exp-icon {
    margin-right: 20px;
}

.experience .exp-icon .fa-solid {
  width: 56px;
  height: 56px;
  font-size: 2.5rem;
  color: #fff;
  line-height: 100px;
  text-align: center;
  transition: all 0.4s;
  border-radius: 10px;
}

.experience .col-2 h3 {
    margin-bottom: 10px;
}

.experience .col-2:hover h3 {
  color: var(--primary-dark);
}

.experience .col-2:hover p {
  color: var(--primary-dark);
}

.experience .exp-text {
  text-align: left;
  padding: 20px 0;
} 

.experience .exp-text p {
  color: #fff;
  font-size: 13px;
}

.experience h3 {
  color: #fff;
  text-transform: uppercase;
}

 
/* services */
.services {
    padding: 100px 0;
    text-align: center;
}

.services .container {
  align-items: start;
}

.services .col-4 {
  padding: 30px;
  transition: all 0.5s ease;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.services .col-4:hover {
  transform: translateY(-7px);
}

.services .col-4:hover {
  background: var(--primary-dark);
  color: #fff;
}

.services .col-4:hover h2 {
  color: #fff;
}

.services .col-4:hover i {
  color: #fff;
}

.services .serv-icon img {
  width: 80px;
  margin-bottom: 20px;
}

.serv-icon .icon {
    width: 56px;
    height: 56px;
}

.services .serv-icon i {
  margin-bottom: 20px;
  color: var(--primary-dark);
  /* color: var(--yellow-light); */
  font-size: 56px;
}

.services h1 {
  padding-bottom: 10px;
}

.services h2 {
  padding-bottom: 10px;
  color: var(--primary-dark);
  text-transform: uppercase;
}

.services .cta-center p a {
  text-decoration: none;
  color: var(--primary-dark);
}

.services .btn {
  border-radius: 20px;
}

/* feature */
.feature {
  text-align: center;
  background: var(--primary);
  padding: 100px 8%;
}

.feature .head::after {
  background: #fff;
}

.feature h3 {
  color: #fff;
}

.btn-icon {
  color: var(--primary);
  text-decoration: none;
  padding: 15px 20px;
  text-align: left;
  background: #fff;
  border-radius: 50px;
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  margin-top: 50px;
  margin: 24px auto 0;
}

.feature .btn {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 36px;
    padding: 8px 10px;
    margin: 40px auto 0;
}

.feature .btn p {
    color: var(--blue-deep);
}

.feature h1 {
  color: #fff;
  margin-bottom: 25px;
}

.feature p {
  color: #fff;
}

.feature .fas {
  background: var(--blue-deep);
  color: var(--yellow-light);
  padding: 12px;
  border-radius: 50%;
  margin-left: 12px;
}

/* team */
.team {
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}

.team .col-4 {
  transition: all 0.5s ease;
}

.team .col-4:hover {
  transform: translateY(-7px);
}

.team .team-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.team .overlay {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    background: linear-gradient(rgba(0,0,0,0.5), var(--blue-deep));
}

.team .col-4:hover .overlay {
    opacity: 1;
    transform: scale(1.1);
}

.team .overlay .social-icon {
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.team .overlay .facebook {
    fill: #fff;
    width: ;
    height: ;
}

.team .team-text .facebook {
    fill: var(--blue-deep);
    margin-right: 4px;
}

.team .team-text .twitter {
    fill: var(--blue-deep);
    margin-right: 4px;
}

.team .team-text .instagram {
    fill: none;
    stroke: var(--blue-deep);
    margin-right: 4px;
}

.team .overlay .twitter {
    fill: #fff;
}

.team .overlay .instagram {
    stroke: #fff;
}

.team .col-4 .team-img.bg {
  background: #fdf812a1;
}

.team img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.team .team-text {
  text-align: left;
  margin-top: 20px;
}

.team .team-text p {
  color: var(--card-blue-lighter);
}

.team .team-text h4 {
  color: var(--blue-deep);
}

.team .team-text .social-links {
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}

.team .team-text .social-links:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  background: linear-gradient(to bottom, var(--yellow-deep), var(--yellow-light));
  width: 3px;
}

.team .team-text .social-links i {
  color: var(--blue-deep);
  margin-right: 10px;
}

/* portfolio */
.portfolio {
  padding: 100px 10%;
  background: var(--primary);
}

.portfolio .head {
  margin-bottom: 30px;
  margin-left: 50px;
  position: relative;
  color: #fff;
}

.portfolio .container {
  width: 100%;
}

.portfolio .head:after {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(to right, var(--yellow-deep), var(--yellow-light));
}

.portfolio .container .left {
  position: relative;
  flex-basis: 50%;
  padding: 0;
}

.portfolio .container .left .overlay,
.portfolio .container .right .col-2 .overlay
{
  background: #022a4daf;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio .container .left:hover .overlay,
.portfolio .container .right .col-2:hover .overlay {
  opacity: 1;
}

.portfolio .container .right {
  flex-basis: 50%;
  display: flex;
  flex-wrap: wrap;
  height: ;
}

.portfolio .left h2 {
  color: #fff;
}

.portfolio .right .col-2 h2 {
  color: #fff;
  font-size: 14px;
}

.portfolio .left p {
  color: #fff;
}

.portfolio .right .col-2 p {
  color: #fff;
  font-size: 12px;
}

.portfolio .left {
  position: relative;
}

.portfolio .right .col-2 {
  position: relative;
}

.portfolio .left .overlay {
    display: flex;
    justify-content: start;
    align-items: end;
    padding: 30px;
}

.portfolio .left .overlay .inner {
    display: flex;
    align-items: center;
}


.portfolio .right .overlay {
    display: flex;
    justify-content: start;
    align-items: start;
    align-items: end;
    padding: 20px;
}

.portfolio .container .right .col-2 {
    flex-basis: 50%;
}

.portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio .fas {
  color: var(--blue-deep);
  font-size: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: var(--yellow-light);
  transition: all 0.4s;
  border-radius: 50%;
  margin-right: 10px;
}


/* testimonial */
.testimonial {
  padding-top: 100px;
  text-align: center;
  padding-bottom: 200px;
}

.testimonial .intro {
  margin-bottom:  40px;
}

.testimonial .col-3 {
  text-align: left;
  position: relative;
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.testimonial .col-3:hover  {
    transform: translateY(-7px);
}

.testimonial .rating {
  margin-top: 10px;
}

.testimonial .rating .star {
  stroke: #FFD700; /* outline color */
  fill: #FFD700;   /* fill color */
}

.testimonial .span {
  margin-top: 10px;
  width: 50px;
}

.testimonial .rating .fa-star {
  font-size: 24px;
  color: #ffd11f;
}

.testimonial .col-3 .col-3-flex {
  display: flex;
  align-items: start;
  border-radius: 20px;
}

.testimonial .col-3-flex p {
  color: var(--primary);
}

.testimonial .img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
}

.testimonial .col-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial .fa-quote-left {
  position: absolute;
  bottom: -15px;
  right: 0;
  font-size: 150px;
  z-index: -1;
  opacity: 0.1;
  transition: all 0.4s;
  line-height: 0.75;
}

.testimonial .col-3:hover .fas {
  color: var(--yellow-light);
  opacity: 1;
}


/* feature-two */
.feature-two {
  padding: 100px 0;
  height: 50vh;
  background: url('/img/interlocking-surface-texture-geometric-pattern-with-smooth-reflective-gray-and-orange-elements-photo.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-attachment: fixed;
  text-align: center;
}

.feature-two .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.7);
  padding-left: 50px;
  justify-content: center;
}

.feature-two .btn-icon {
  background: var(--primary);
  color: #fff;
  width: 300px;
}

.feature-two i {
  background: #fff;
  color: var(--blue-deep);
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 6px;
  margin-left: 50px;
}

.feature-two h3 {
  font-weight: normal;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 20px;
}

.feature-two span {
  font-weight: 600;
}

.feature-two p {
  color: #fff;
}

.feature-two img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  position: absolute;
  bottom: -150px;
  left: 50%;
}

.feature-two p a {
  text-decoration: none;
  color: #fff;
}

/* google-map */
.map-container {
  width: 100%;
  max-width: 80%;
  margin: 100px auto 40px auto;
}

iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

.fa-chevron-up {
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
  color: #fff;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  bottom: 50px;
  right: 50px;
}


/* footer */
.footer {
  margin-top: 100px;
  color: #fff;
  padding: 100px 0 50px 0;
  background: var(--body);
  font-size: 14px;
}

.footer a {
    font-size: 14px;
}

.footer .container {
  align-items: start;
}

.footer .about p {
    color: #fff;
    text-align: left;
}

.footer h3 {
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  width: fit-content;
}

.footer h3::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: -6px;
    background: #fff;
    width: 50%;
    height: 3px;
    border-radius: 3px;
}

.footer .social-links {
  margin-top: 30px;
  display: flex;
}

.footer .social-links a {
  display: inline-block;
}

.footer .social-links i {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  margin-right: 5px;
}

.footer .links a {
    text-decoration: none;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}

.footer .service-list p {
  color: #fff;
}

.footer .touch a {
    text-decoration: none;
    color: #fff;
    display: block;
    line-height: 40px;
}

.footer .touch a {
    text-decoration: none;
    color: #fff;
    display: block;
    line-height: 40px;
}

.footer .touch i {
    font-size: 18px;
    color: var(--primary);
}

.footer .touch p {
    color: #fff;
    margin-bottom: 16px;
}

.footer .col-4:last-child i {
  margin-right: 20px;
}

.footer-two .container p {
  padding: 20px 0;
  color: #fff;
}

.copyright {
    text-align: center;
    padding: 24px 0;
    background: var(--body);
    padding: 24px 10%;
    font-size: 14px;
}

.copyright p {
  color: #fff;
}


/* MEDIA QUERY FOR SMALL SCREEN DEVICES */
@media only screen and (max-width: 768px){
  .container {
    width: 100%;
    padding: 0;
  }

  .navbar {
    height: 80px;
    overflow: hidden !important;
    transition: 0.5s;
    background: var(--primary);
    background: transparent;
  }
    
  .logo {
    margin-top: 20px;
    position: absolute;
    top: 5px;
    left: 20px;
  }
    
  .logo img {
    width: 80px;
  }
    
  /* Menu */
    #menu {
    height: 100%;
    width: 80px;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    padding: 100px 20px;
    align-items: start;
    left: 0;
    transition: 0.5s;
    width: 100%;
  }
  
  #menu li {
    margin-bottom: 30px;
  }
  
  #menuBtn {
    display: block;
    color: #fff;
    position: absolute;
    font-size: 30px;
    right: 40px;
    top: 40px;
    z-index: 999;
  } 
  
  #closeBtn {
    font-size: 30px;
    color: #fff;
    display: none;
    position: absolute;
    height: 50px;
    width: 50px;
    right: 40px;
    top: 40px;
  }
  
  ul li {
  /* display: block; */
    margin-right: 0;
    font-weight: 400;
  }
  
  .hero .overlay {
  position: relative;
  }
  
  .hero {
    overflow: hidden;
  }

  .hero .text-box {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
  }
    
  .hero span {
    width: 250px;
    height: 250px;
    right: -20px;
    bottom: -80px;
  }

  .hero .hero-img {
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 200px;
  }
    
    
  /* two-col */
    .two-col {
    padding: 100px 24px 50px 24px;
  }
    
  .two-col .left {
    position: relative;
    padding-right: 0;
  }
    
  .two-col .right {
    padding-top: 150px;
  }
    
  .two-col .right .col-3 {
    margin-bottom: 50px;
  }
  
  .two-col .col-2 .left-img1 {
    height: 400px;
  }
    
  .two-col .col-2 .left-img2 {
    margin-left: 100px;
    height: 300px;
    right: 0;
    margin-top: 180px;
  }

  .two-col .col-2 .left-img2 img {
    width: 400px;
    height: 500px;
    object-fit: cover;
  }
  
  .two-col .count{
    font-size: 50px;
    font-weight: 800;
  }
      
  .two-col .col-2.right .container.margin {
    padding: 0;
    text-align: center;
  }
    
  /* experience */
  .experience {
    text-align: center;
    padding: 100px 20px;
    }
    
  .experience .head {
    color: #fff;
  }
    
  .experience h1 {
    margin-bottom: 50px;
    /* margin-left: 24px; */
  }
    
  .experience .container {
    grid-template-columns: 1fr;
    padding: 0;
  }
    
  .experience .col-2 {
    align-items: start;
  }
    
  .experience .col-2:hover {
    background: #fff;
  }
    
  .experience .exp-text {
    text-align: left;
    padding: 20px;
  } 
      
  /* =========== TEAM =========== */
  .team {
    padding: 100px 24px;
  }
  
  .team .container {
    padding: 0;
  }
  
  .team .col-4 {
  margin-bottom: 50px;
  }
  
  .team .col-4 h4 {
  margin-bottom: 20px;
  margin-top: 10px;
  }
  
  .team .col-4 {
  margin-bottom: 50px;
  }
      
  /* portfolio */
  .portfolio {
    padding: 100px 20% !important;
  }
  
  .portfolio .container {
    padding: ;
  }
  
  .portfolio .col-2.left {
    height: 400px;
  }
  
  .portfolio .right .overlay {
    padding: 10px;
  }
  
  .portfolio .container .right .col-2 {
    flex-basis: 50%;
  }

  /* testimonial */
  .testimonial {
      padding: 100px 20px;
  }
  
  .testimonial .container {
      width: 100% !important;
  }
  
  
  /* about */
  .about h1 {
    margin-bottom: 30px;
  }
  
  .about .container {
    margin-top: 200px;
  }
  
  .about .col-2.left {
    flex-basis: 100%;
  }
  
  .about .col-2.left .container  {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
  
  .about .col-2.left .container .col-2 {
    flex-basis: 50%;
  }
  
  .about .col-2.left .container .col-2 h3 {
    font-size: 0.95rem;
  }
  
  .about .col-2.left .container {
    width: 100%;
    margin-top: 50px;
    margin-top: 50px;
  }
  
  .about .col-2.right {
    flex-basis: 100%;
  }
  
  .about .col-2.right div {
    height: 400px;
  }
    
  /* google-map */
  .map-container {
    max-width: 90%;
  }
  
  .services {
      padding: 100px 20px;
  }
  
  .services .container {
      width: 100%;
      padding: 0;
  }
  
  .footer {
    padding: 100px 20px 40px 20px;
  }
}
  

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 10%;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A9810;
    animation: pulse2 2s infinite; /* Apply pulse animation */
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 200px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 50px;
}

/* Pulse animation */
@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0  rgba(33,255,125,0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);/=
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.bounce-up-down {
    display: inline-block;
    font-size: 48px;
    color: #fff;
    animation: upDown 1.5s ease-in-out infinite;
    position: fixed;
    bottom: 100px;
    right: 30px;
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px); /* move up */
    }
}


/* ===== FAQ PAGE ===== */
.faq-page {
  background: #fff;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-page .head {
  text-align: center;
}

.faq-page .title {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.faq-page .intro {
  text-align: center;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.faq-wrapper {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  /* background: #f8f8f8; */
  overflow: hidden;
  border: 1px solid #ccc;
}


/* Project Gallery */
.gallery { 
  padding: 100px 0; 
  text-align: center;
}

.gallery .head { 
  color: var(--primary); 
  font-weight: 600; 
  margin-bottom: 5px; 
}

.gallery .title { 
  font-size: 2rem; 
  margin-bottom: 30px;
}

.filter-btns { 
  margin-bottom: 40px; 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
  flex-wrap: wrap; 
}

.filter-btn { 
  padding: 10px 20px; 
  border: none; 
  background: var(--primary); 
  color: #fff; 
  cursor: pointer; 
  border-radius: 50px; 
  transition: 0.3s; 
  font-weight: 600; 
}

.filter-btn.active, 
.filter-btn:hover { 
  background: var(--primary-dark); 
  color: #fff; 
}

.gallery .container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 20px; 
  justify-content: center; 
}

.gallery .col-3 { 
  flex: 1 1 calc(25% - 20px); 
  background: #fff; 
  border-radius: 8px; 
  overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
  transition: transform 0.3s ease; 
}

.gallery .col-3:hover { 
  transform: translateY(-5px); 
}

.gallery .col-3 img { 
  width: 100%; 
  display: block; 
  border-radius: 8px; 
}

.gallery .gallery-info { 
  padding: 15px; 
  text-align: left; 
}

.gallery .gallery-info h3 { 
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.gallery .gallery-info p {
  font-size: 0.95rem; 
  color: #555; 
}

.gallery-cta { 
  margin-top: 40px; 
}

.gallery-cta p { 
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.gallery-cta .btn-icon {
  background: #25D366; 
  color:#fff; 
  padding: 12px 25px; 
  border-radius: 50px; 
  text-decoration: none; 
  display: inline-flex; 
  align-items: center; 
  gap: 10px; 
  font-weight: 600; 
}

.filter-item a {
  display: block;
  height: 350px;
  overflow: hidden;
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95); 
  display: none; 
  justify-content: center;
  align-items: center; 
  z-index: 9999;
  flex-direction: column;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 80%; 
  border-radius: 8px; 
  margin-bottom: 15px;
}

.lightbox-overlay .close-lightbox { 
  position: absolute; 
  top: 20px; 
  right: 30px; 
  font-size: 2rem; 
  color: #fff; 
  cursor: pointer;
}

.lightbox-overlay .nav-arrow { 
  position: absolute; 
  top: 50%; transform: 
  translateY(-50%); 
  font-size: 2.5rem; 
  color: #fff; cursor: 
  pointer; padding: 10px; 
  user-select: none; 
}

.lightbox-overlay .prev { 
  left: 30px; 
}

.lightbox-overlay .next { 
  right: 30px; 
}

/* Responsive */
@media (max-width: 1024px) { 
  /* Project Gallery */
  .gallery { 
    padding: 100px 20px; 
  }

  .gallery .col-3 { 
    flex: 1 1 calc(50% - 20px); 
  } 
}

@media (max-width: 600px) { 
  .gallery .col-3 { 
    flex: 1 1 100%; 
  } 
}


/* ===== FAQ PAGE ===== */
.faq-page {
  background: #fff;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-page .head {
  text-align: center;
}

.faq-page .title {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}

.faq-page .intro {
  text-align: center;
  color: var(--body);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.faq-wrapper {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 30px;
  /* background: #f8f8f8; */
  overflow: hidden;
  border: 1px solid var(--primary);
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--primary);
  overflow: hidden;
  border-radius: 30px;
}

.faq-question .arrow {
  font-size: 20px;
  color: var(--primary);
  font-weight: bold;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 20px;
  line-height: 1.6;
  color: #444;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

.hero {
  position: relative;
  width: 100%;
  height: 600px; /* adjust as needed */
  overflow: hidden;
}

.hero .overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slider-img.active {
  opacity: 1;
  transform: translateX(0);
}

/* Text overlay */
.text-box {
  position: relative;
  z-index: 10;
  color: #fff;
  /* text-align: center; */
  max-width: 800px;
  margin: 0 auto;
  top: 30%;
}

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero .overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.slider-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.slider-img.active {
  opacity: 1;
  transform: scale(1);
}

/* Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 8;
  border-radius: 50%;
  display: none;
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-btn:hover {
  background: rgba(0,0,0,0.75);
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  text-align: center;
  z-index: 8;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: #fff;
}

/* Text overlay stays above slider */
.text-box {
  position: relative;
  z-index: 10;
  color: #fff;
  /* text-align: center; */
  max-width: 900px;
  margin: 0 auto;
  top: 30%;
}

/* .hero-slider {
  cursor: pointer;
} */ 

.hero-slider .overlay {
  background: rgba(0,0,0,0.5);
}

/* Dots container */
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}

/* Base dot style (JS will override size) */
.slider-dots .dot {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Active dot */
.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.4);
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  background: var(--body);
  padding: 0 20px;
  overflow: hidden;
}

.wrapper .social-links {
  width: fit-content;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 140px;
  background: var(--body);
}

.wrapper .social-links a {
  display: inline-block;
}

.wrapper .social-links i {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}

hr {
  border: 1px solid #ffffff24;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  margin: 0;
  z-index: -1;
}

