@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
html {
  scroll-behavior: smooth;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth !important;
  background-color: #E0E1E2;
  text-decoration: none;
}

a {
  text-decoration: none;
}

.custom-navbar {
  background-color: #E0E1E2;
  padding: 0.8rem 1rem;
  border-bottom: #cccccc solid 1px;
}
.custom-navbar .nav-logo {
  height: 70px;
  margin-left: 140px;
}
.custom-navbar .nav-link {
  color: #1d1d1d;
  font-weight: 500;
  padding: 0 1rem;
}
.custom-navbar .nav-link.active, .custom-navbar .nav-link:hover {
  color: #F68120;
}
.custom-navbar .contact-btn {
  border: 1px solid #1d1d1d;
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: #1d1d1d;
  background: transparent;
  transition: all 0.3s ease;
  margin-left: auto;
}
.custom-navbar .contact-btn:hover {
  background-color: #F68120;
  color: white;
  border-color: #F68120;
}
@media (max-width: 991px) {
  .custom-navbar .navbar {
    padding: 0;
  }
  .custom-navbar .nav-link {
    font-size: 1.35rem;
  }
  .custom-navbar .contact-btn {
    font-size: 1.35rem;
  }
  .custom-navbar .navbar-collapse {
    background-color: #E0E1E2;
    padding-bottom: 1rem;
  }
  .custom-navbar .navbar-toggler {
    border: none;
  }
  .custom-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
}
.hamburger {
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  /* above overlay */
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #000;
  transition: all 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 8px;
}
.hamburger span:nth-child(3) {
  top: 16px;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 50;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #E0E1E2;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 2rem;
}
.mobile-menu-overlay.active {
  transform: translateY(0);
}
.mobile-menu-overlay .mobile-menu-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 50px;
}
.mobile-menu-overlay .mobile-menu-content a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.mobile-menu-overlay .mobile-menu-content a.active {
  color: #F68120 !important;
}

.hero-section {
  padding-top: 150px;
  padding-bottom: 40px;
}
.hero-section .hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hero-section .hero-image img {
  object-fit: cover;
  height: 500px;
  width: 100%;
  filter: brightness(0.5);
  transition: transform 0.3s ease;
}
.hero-section .hero-image.hero-image img:hover {
  transform: scale(1.05);
}
.hero-section .hero-image .hero-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 2rem;
}
.hero-section .hero-image .hero-text p {
  font-size: 14px;
  letter-spacing: 0.5px;
  opacity: 0.85;
}
.hero-section .hero-image .hero-text h1 {
  font-size: 2rem;
  line-height: 1.3;
}
.hero-section .hero-image .hero-text a.btn {
  border: 1.5px solid #fff;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero-section .hero-image .hero-text a.btn:hover {
  background-color: #fff;
  color: #000;
}
@media (max-width: 768px) {
  .hero-section .hero-image img {
    height: 400px;
  }
  .hero-section .hero-image .hero-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 1rem;
  }
  .hero-section .hero-image .hero-text h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-image img {
    height: 320px;
  }
  .hero-section .hero-image .hero-text {
    max-width: 100%;
  }
  .hero-section .hero-image .hero-text h1 {
    font-size: 1.35rem;
  }
}

.section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.3;
}
.section-heading .highlight {
  color: #F68120;
}

.highlight {
  color: #F68120;
}

.section-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1d1d1d;
  letter-spacing: 1px;
}

.primary-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border: 1px solid #1d1d1d;
  border-radius: 30px;
  font-weight: 500;
  color: #1d1d1d;
  text-decoration: none;
  transition: all 0.3s ease;
}
.primary-btn:hover {
  background-color: #F68120;
  color: white;
  border-color: #F68120;
}

.about-section {
  background-color: #E0E1E2;
}
.about-section .about-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.about-section .stats .stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F68120;
}
.about-section .stats .stat-label {
  font-size: 0.9rem;
  color: #1d1d1d;
}
.about-section img {
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .section-heading {
    font-size: 1.6rem;
  }
  .stats {
    text-align: center;
  }
  .stats .col-4 {
    margin-bottom: 1rem;
  }
}
.projects-section {
  background-color: #E0E1E2;
}
.projects-section .projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}
.projects-section .projects-grid .large-card {
  grid-row: span 1;
}
.projects-section .project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.projects-section .project-card .project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.projects-section .project-card:hover .project-img {
  transform: scale(1.05);
}
.projects-section .project-card .project-info {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: white;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.projects-section .project-card .project-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #000;
}
.projects-section .project-card .project-info p {
  font-size: 0.85rem;
  margin: 0;
  color: #666;
}

@media (max-width: 991px) {
  .projects-section .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .projects-section .projects-grid .large-card {
    grid-row: auto;
  }
}
.why-choose-us {
  background-color: #0f1114;
  color: white;
  border-radius: 30px;
  margin: 30px;
}
.why-choose-us .section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.why-choose-us .section-heading {
  font-weight: 700;
  line-height: 1.3;
  color: white;
}
.why-choose-us .section-heading .highlight {
  color: #F68120;
}
.why-choose-us .section-text {
  font-size: 1rem;
  opacity: 0.9;
}
.why-choose-us .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-choose-us .why-grid .why-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #1d2024;
}
.why-choose-us .why-grid .text-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.why-choose-us .why-grid .text-card .icon-circle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F68120;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-us .why-grid .text-card .icon-circle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.why-choose-us .why-grid .text-card .text-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.why-choose-us .why-grid .text-card .text-content p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}
.why-choose-us .why-grid .image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .why-choose-us {
    margin: 15px;
  }
  .why-choose-us .why-grid {
    grid-template-columns: 2fr;
  }
  .why-choose-us .why-grid .text-card {
    padding: 3rem 2rem;
  }
}
.testimonial-p-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.testimonials-section {
  min-height: 500px;
  display: flex;
  align-items: center;
}

/* Testimonials specific */
.testimonial-carousel-wrapper {
  width: 100%;
}

/* viewport window */
.testimonial-viewport {
  /* pale card background, similar to design */
  border-radius: 30px;
  border: 1px solid black;
}

/* track that slides left/right */
.testimonial-track {
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.34, 1);
  will-change: transform;
}

/* each testimonial card occupies viewport width */
.testimonial-card {
  width: 100%;
  box-sizing: border-box;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  color: black;
}

.quote {
  font-size: 0.95rem;
  color: #222;
  margin: 0;
  line-height: 1.5;
  /* left quote could be added via pseudo if desired */
}

/* author */
.testimonial-author .avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
}

.author-name {
  font-size: 1.5rem;
  color: black;
}

.author-role {
  font-size: 1rem;
  color: #6c757d;
}

/* circular arrow buttons */
.testimonial-controls .test-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid black;
  background: #E0E1E2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.testimonial-controls .test-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.testimonial-controls .test-btn:hover {
  transform: translateY(-3px);
}

/* desktop layout placement: controls bottom-right aligned */
@media (min-width: 992px) {
  .testimonial-controls {
    position: absolute;
    right: 0;
    bottom: -50px;
    transform: translateY(50%);
  }
}
/* mobile: stack controls center below the carousel */
@media (max-width: 991px) {
  .testimonial-controls {
    justify-content: center !important;
  }
  .testimonial-carousel-wrapper {
    max-width: 100%;
  }
  .section-heading {
    font-size: 1.35rem;
  }
}
.site-footer {
  background: #E0E1E2;
  color: #1d1d1d;
  border-top: #ccc 1px solid;
}
.site-footer .footer-logo img {
  max-width: 150px;
}
.site-footer .footer-menus .footer-menu {
  width: max-content;
}
.site-footer .footer-menus .footer-menu li {
  margin-bottom: 0.5rem;
  margin-right: 0.9rem;
}
.site-footer .footer-menus .footer-menu li a {
  text-decoration: none;
  color: #1d1d1d;
  font-size: 0.95rem;
}
.site-footer .footer-menus .footer-menu li a:hover {
  color: #F68120;
}
.site-footer .footer-menus .footer-menu li.socials {
  margin-top: 1rem;
}
.site-footer .footer-menus .footer-menu li.socials a {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #1d1d1d;
}
.site-footer .footer-menus .footer-menu li.socials a:hover {
  color: #F68120;
}
.site-footer .footer-right {
  width: fit-content;
}
.site-footer .footer-right p {
  font-size: 0.9rem;
  margin: 0;
}
.site-footer .footer-right p a {
  color: inherit;
  text-decoration: none;
}
.site-footer .footer-right p a:hover {
  color: #F68120;
}
.site-footer .footer-bottom-text {
  font-weight: 800;
  color: #F68120;
  letter-spacing: 1px;
  white-space: nowrap;
  text-align: center;
  font-size: 8.5vw;
  line-height: 1;
  margin: 0;
}

.contact-section {
  padding-top: 120px;
  padding-bottom: 40px;
  background: #E0E1E2;
  color: black;
}
.contact-section .contact-box {
  background: linear-gradient(to bottom right, rgba(246, 128, 32, 0.2196078431) 0%, #ffead8 30%, #ffead8 50%, rgba(246, 128, 32, 0.2196078431) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
}
.contact-section .contact-box .section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #444;
}
.contact-section .contact-box .section-title {
  font-weight: 700;
  font-size: 1.8rem;
}
.contact-section .contact-box .section-title .text-orange {
  color: #F68120;
}
.contact-section .contact-box .contact-info p {
  margin: 0.3rem 0;
  font-size: 0.95rem;
}
.contact-section .contact-box .social-icons a {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #333;
  transition: 0.3s;
}
.contact-section .contact-box .social-icons a:hover {
  color: #F68120;
}
.contact-section .contact-box .form-heading {
  font-weight: 600;
  text-transform: uppercase;
}
.contact-section .contact-box .form-control {
  border: none;
  background: none;
  border-bottom: 1px solid #444;
  border-radius: 0;
  padding-left: 0;
  color: #000;
}
.contact-section .contact-box .form-control::placeholder {
  color: #606060;
}
.contact-section .contact-box .form-control:focus {
  border-color: #F68120;
  box-shadow: none;
}
.contact-section .contact-box .type-btn {
  background: transparent;
  border: 1px solid #000;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}
.contact-section .contact-box .type-btn.active, .contact-section .contact-box .type-btn:hover {
  background: #F68120;
  color: white;
  border-color: #F68120;
}
.contact-section .contact-box .btn-dark {
  background-color: #111;
  color: white;
  font-weight: 500;
}
.contact-section .contact-box .btn-dark .arrow {
  margin-left: 8px;
  color: #F68120;
}

.projects-section {
  padding-top: 150px;
  padding-bottom: 40px;
  background: #E0E1E2;
  color: black;
}
.projects-section .filter-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.projects-section .filter-buttons .filter-btn {
  border: 1px solid #ccc;
  background: white;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.projects-section .filter-buttons .filter-btn.active, .projects-section .filter-buttons .filter-btn:hover {
  background: #0d0d0d;
  color: white;
  border-color: #0d0d0d;
}
.projects-section .project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  height: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.projects-section .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.projects-section .project-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}
.projects-section .project-card .overlay .overlay-text {
  position: relative;
  top: 30%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.projects-section .project-card .overlay .overlay-title {
  position: absolute;
  bottom: 10px;
  left: 3%;
  right: 3%;
  transform: translateX(0%);
  background: rgba(177, 177, 177, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 10px;
  text-align: center;
}
.projects-section .project-card .overlay .overlay-title h4 {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.projects-section .project-card:hover img {
  transform: scale(1.05);
}
.projects-section .project-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 576px) {
  .projects-section .filter-buttons {
    gap: 5px;
  }
  .projects-section .filter-buttons .filter-btn {
    font-size: 12px;
  }
}

/* Modal Carousel Arrows */
.custom-arrow {
  width: 50px;
  height: 50px;
  background: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: background 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.custom-arrow .arrow-icon {
  font-size: 1.5rem;
  color: #F68120;
}
.custom-arrow:hover {
  background: #1a1a1a;
  opacity: 1;
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .project-card .overlay h4 {
    font-size: 1rem;
  }
  .custom-arrow {
    width: 40px;
    height: 40px;
  }
}
.load-icon:hover {
  color: white;
}

.about-hero-section {
  padding-top: 150px;
  padding-bottom: 40px;
}
.about-hero-section .about-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.about-hero-section .about-image {
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
}
.about-hero-section .about-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.about-hero-section .about-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .about-hero-section .about-image .about-image img {
    height: auto;
  }
}

.our-number-section {
  padding: 25px 25px;
  margin: 25px 50px;
  border-top: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}
.our-number-section .stats .stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #ccc;
}
.our-number-section .stats .stat-card .stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: #F68120;
}
.our-number-section .stats .stat-card .stat-label {
  font-size: 0.9rem;
  color: #1d1d1d;
}

@media (max-width: 576px) {
  .our-number-section {
    padding: 15px 25px;
    padding-bottom: 0;
  }
  .our-number-section .stats {
    text-align: center;
  }
  .our-number-section .stats .stat-card {
    border-top: 2px solid #ccc;
    border-left: 0px;
    padding-top: 1rem;
  }
}
.timeline-section {
  background: #0f172a;
  color: #fff;
}
.timeline-section .timeline {
  position: relative;
  margin: 0 auto;
  padding: 2rem 0;
  padding-bottom: 0;
  max-width: 900px;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  top: 7%;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: #fff;
}
.timeline-section .timeline .timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 60px;
}
.timeline-section .timeline .timeline-item .timeline-dot {
  position: absolute;
  top: 23px;
  left: 11px;
  width: 18px;
  height: 18px;
  background: #F68120;
  border-radius: 50%;
  border: 3px solid #fff;
}
.timeline-section .timeline .timeline-item .timeline-content {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.timeline-section .timeline .timeline-item .timeline-content .timeline-date {
  display: inline-block;
  background: #F68120;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.timeline-section .timeline .timeline-item .timeline-content h5 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.timeline-section .timeline .timeline-item .timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .timeline-section .timeline::before {
    left: 15px;
  }
  .timeline-section .timeline-item {
    padding-left: 50px;
  }
  .timeline-section .timeline-content {
    font-size: 0.9rem;
  }
}

.services-section {
  background: #E0E1E2;
}
.services-section .service-card {
  border-radius: 12px;
  padding: 0;
  height: 100%;
}
.services-section .service-card .service-image {
  border-radius: 12px;
  height: 300px;
}
.services-section .service-card .service-image img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-section .service-card h5 {
  font-weight: 600;
  margin-top: 1rem;
  color: #111;
}
.services-section .service-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .services-section .service-card img {
    height: auto;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* WhatsApp green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: white;
}
.floating-whatsapp i {
  font-size: 2rem;
}

.floating-whatsapp:hover {
  background-color: #F68120;
}
