:root {
  --primary: #ed7c2c;
  --secondary: #525368;
  --light: #E8F5E9;
  --dark: #0F4229;
}




body {
  font-family: 'Barlow', sans-serif !important;
}



.bg1 {
  background-color: #4069e5 !important;
  color: #fff;

}



.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: .5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
}

.btn.btn-secondary {
  color: white;
  border: none;

}

.btn.btn-secondary:hover {
  background: #4069e5;
}

/*** Topbar Start ***/
.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary);
}

/*** Topbar End ***/

/* Top Navigation Bar */
/* Optional custom styling for the top-nav */
.top-nav {
  background-color: #f8f9fa;
  /* Light background */
  padding: 10px 20px;
}

.top-left {
  font-size: 14px;
  white-space: nowrap;
  /* Prevent text from wrapping in the left section */
}

.top-options {
  font-size: 14px;
}

.top-options a {
  font-size: 16px;
}

/* Optional: Add a hover effect on the language and font-size links */
.top-options a:hover {
  text-decoration: underline;
  color: #007bff;
}



/*** Navbar ***/


.sticky-top {
  transition: 1s;

}

/* Ensure the navbar takes full width and centers its contents */
.navbar {
  width: 100%;
  /* Full width */
  padding-left: 0;
  /* Remove left padding */
  padding-right: 0;
  /* Remove right padding */
  justify-content: center;
  /* Center the content inside the navbar */
}

/* Ensure the navbar items are centered */
.navbar-nav {
  display: flex;
  /* Make navbar items a flex container */
  justify-content: center;
  /* Center the navbar items horizontally */
  width: 100%;
  /* Ensure navbar items take full width */
  padding-left: 0;
  /* Remove any padding on the left */
  margin-left: 0;
  /* Remove any left margin */
}

/* Optional: Remove padding or margin from the dropdown items to ensure alignment */
.nav-item,
.dropdown-menu {
  padding-left: 0;
  padding-right: 0;
}

/* Remove margins and padding from navbar brand for full alignment */
.navbar-brand {
  padding-left: 0;
  /* Remove left padding */
  padding-right: 0;
  /* Remove right padding */
}

/* Optional: Remove the padding on the search button to align it with the navbar */
.navbar .d-flex {
  padding-left: 0;
  padding-right: 0;
}

.navbar .navbar-nav .nav-item.nav-link,
.navbar .navbar-nav .nav-link {
  color: white;
}

.navbar .navbar-nav .nav-link {
  position: relative;
  padding: 10px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  transition: .5s;
  z-index: 99;

}

.navbar a:hover {
  color: black;
  /* Change color on hover */
}

.nav-item .fa-home {
  font-size: 24px;
  color: white;
  /* default color */
  transition: color 0.3s ease;

}

/* Active class styling */
.nav-item.active .fa-home {
  color: black;
  /* active hone par black color */
}

.navbar i:hover {
  color: black;
}


.navbar .navbar-nav .nav-item {
  margin: 0 5px;
}

.navbar .navbar-nav .nav-item::before,
.navbar .navbar-nav .nav-item::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  border: 2px solid var(--bs-secondary);
  opacity: 0;
  transition: 0.5s;
  z-index: 2 !important;
}

.navbar .navbar-nav .nav-item::before {
  top: 0;
  left: 0;
  border-bottom: 0;
  border-right: 0;
}

.navbar .navbar-nav .nav-item::after {
  bottom: 0;
  right: 0;
  border-top: 0;
  border-left: 0;
}

.navbar .navbar-nav .nav-item:hover::after,
.navbar .navbar-nav .nav-item:hover::before,
.navbar .navbar-nav .nav-item.active::after,
.navbar .navbar-nav .nav-item.active::before {
  width: 50%;
  height: 50%;
  opacity: 1;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top .navbar .navbar-nav .nav-link:hover,
.sticky-top .navbar .navbar-nav .nav-link.active {
  color: black !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107" !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
}

.sticky-logo-navbar {
  top: 0;
  background-color: white;
  padding: 5px 0;
  /* Increase top/bottom padding */
  z-index: 1020;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sticky-logo-navbar .navbar-brand span {
  color: black;
  /* Change text color to black */
}




.navbar .navbar-toggler {
  padding: 8px 15px;
  color: rgb(86, 86, 103);
  background: white;

}

.nav-bar .navbar-toggler {
  color: var(--bs-dark);
  box-shadow: none !important;
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: white;
  transition: .5s;
  opacity: 1;
}

.navbar .nav-item .dropdown-menu {
  background: var(--bs-light);
  transition: 0.5s;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
  transition: 0.5s;
}

.dropdown .dropdown-menu .dropdown-item:hover,
.dropdown .dropdown-menu .dropdown-item.active {
  background: var(--bs-white);
  color: white;
  background-color: black;
}



#searchModal .modal-content {
  background: rgba(255, 255, 255, .6);
}

/*** Navbar End ***/




/*** searchModal Start ***/

#searchModal .modal-content {
  background-color: #f8f9fa;
}

#searchModal input {
  border-radius: 0;
}

#searchModal button {
  border-radius: 0;
}

/*** searchModal End ***/




/*** Carousel Start ***/
.carousel .carousel-inner .carousel-item {
  position: relative;
  overflow: hidden;
  height: 90vh;
  font-family: "Roboto", sans-serif;
}

.carousel .carousel-item h4 {
  font-style: initial;

}



.carousel .carousel-inner .carousel-item img {

  animation-duration: 10s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.carousel-caption {
  text-align: left;
  /* Ensures left alignment */
  left: 0;
  /* Aligns caption to the left edge */
  padding-left: 90px;
  /* Optional padding for spacing */
}

.carousel-caption .animated {
  animation-delay: 0.5s;
  /* Adjust the delay as needed */
}

/* Style for the growing line */
.line-grow {
  height: 2px;
  /* Line height */
  background-color: rgb(255, 174, 0);
  /* Line color */
  width: 0%;
  /* Start with 0% width */
  margin-top: 10px;
  /* Space below the heading */
  max-width: 200px;
  /* Max width for larger screens */
  animation: growRight 6s ease-in-out forwards;
  /* Growing animation */
}

/* Line grow animation */
@keyframes growRight {
  from {
    width: 0%;
    /* Start with no width */
  }

  to {
    width: 100%;
    /* Fully extend the line */
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .line-grow {
    max-width: 150px;
    /* Reduce the line width on tablets */
    animation: growRight 3s ease-in-out forwards;
  }
}

@media (max-width: 576px) {
  .line-grow {
    max-width: 200px;
    /* Reduce the line width on mobile devices */
    animation: growRight 3s ease-in-out forwards;
  }
}

@media (max-width: 540px) {
  .line-grow {
    max-width: 275px;
    /* Reduce the line width on mobile devices */
    animation: growRight 3s ease-in-out forwards;
  }
}



@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }

  25% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  50% {
    width: 130%;
    height: 130%;
    -webkit-filter: blur(10px);
    opacity: 0.7;
  }

  75% {
    width: 115%;
    height: 115%;
    -webkit-filter: blur(3px);
    opacity: 0.9;
  }

  100% {
    width: 100%;
    height: 100%;
    -webkit-filter: blur(0px);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .carousel .carousel-inner .carousel-item img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .carousel .carousel-inner .carousel-item {
    height: 700px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 700px;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .carousel-item .carousel-caption h1 {
    font-size: 36px;
  }

  .carousel-item .carousel-caption p.fs-5 {
    font-size: 15px;
  }
}

.carousel .carousel-inner .carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  z-index: 1;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}



.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  background: transparent;
}




.button-container {
  display: inline-flex;
  align-items: center;
}

#service3ReadMore {
  color: #ffffff;
  text-decoration: none;
  position: relative;
}

#service3ReadMore:hover {
  color: gray;
  /* Text color changes on hover */
}

#service3ReadMore::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background-color: white;
  margin-left: 10px;
  position: relative;
  top: -9px;
  /* Moves the line upwards */
  /* Space between text and line */
  transition: width 0.3s ease-in-out;
  /* Smooth growth animation */
}

#service3ReadMore:hover::after {
  width: 60px;
  /* Line grows on hover */
  background-color: #666;
}



.news-bar {
  background-color: #dc3545;
  /* Red background */
  color: white;
  overflow: hidden;
  white-space: nowrap;
}

.news-label {
  background-color: #b02a37;
  padding: 5px 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.news-text {

  padding-left: 20px;
  animation: scroll-left 25s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}


.about-section h6 {
  letter-spacing: 2px;
}

.about-section img {
  transition: transform 0.4s ease;
}

.about-section img:hover {
  transform: scale(1.03);
}

.btn-1 {
  background-color: #ed7c2c;
}

.btn-1:hover {
  background-color: #4069e5;
}

.text-orange {
  color: #ed7c2c !important;
}


.text-orange {
  color: #ed7c2c;
}

.client-logo {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.client-logo img {
  max-width: 100%;
  max-height: 70px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo:hover img {
  filter: grayscale(0%);
}


.text-orange {
  color: #ed7c2c;
}

.btn-orange {
  background-color: #ed7c2c;
  color: #fff;
  border-radius: 0;
}

.btn-orange:hover {
  background-color: #d96b1f;
  color: #fff;
}

.safety-img {
  max-height: 420px;
  object-fit: contain;
}


.text-orange {
  color: #ed7c2c;
}

.founder-img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  border: 6px solid #007bff;
}

.text-orange {
  color: #ed7c2c;
}

.project-img {
  width: 100%;
  height: 580px;
  /* SAME HEIGHT FOR ALL IMAGES */
  object-fit: cover;
  /* image crop hogi, stretch nahi */

}

.tab-btn {
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.tab-btn:hover {
  color: #ed7c2c;
}

.active-tab {
  color: #ed7c2c;
  border-color: #ed7c2c;
  font-weight: 600;
}

.project-desc {
  max-width: 460px;
}

.line-grow {
  width: 60px;
  height: 3px;
  background-color: #ed7c2c;
}





/*** Services Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: 1;
}

.service-img img {
  height: 460px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-img img:hover {
  transform: scale(1.05);
}

.card {
  border-radius: 10px;
  overflow: hidden;
}

.service .service-item .service-img img {
  transition: 0.5s;
}

.service .service-item:hover .service-img img {
  transform: scale(1.2);
}

.service .service-item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
  z-index: 2;
}

.service .service-item:hover:after {
  height: 100%;
  background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s;
  opacity: 0;
  z-index: 3;
}

.service .service-item:hover .service-content {
  opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
  color: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover .service-content a.fs-4:hover {
  color: var(--bs-secondary);
}

.service .service-item .service-tytle {
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  right: 0;
  background: var(--bs-white);
  display: flex;
  transition: 0.5s;
  z-index: 3;
}

.service .service-item:hover .service-tytle {
  margin-right: -100%;
}

/*** Services End ***/


/*** Fact Counter ***/
.counter {
  background: linear-gradient(to bottom, rgb(4, 102, 207) 70%, rgb(255, 255, 255) 50%);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/*** Top Feature ***/
@media (min-width: 991.98px) {
  .top-feature {
    position: relative;
    margin-top: -80px;
    z-index: 1;

  }
}

.bg-orange {
  background-color: #ff5e15;
}

/*** patti box CSS ***/
.patti-box {
  background: #025324f6;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);

}

.patti-title {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.patti-text {
  opacity: 0.95;
}

.email-box {
  flex: 1;
  min-width: 200px;
  outline: none;
  box-shadow: none;
  padding: 10px 15px;
}

.email-box::placeholder {
  color: #777;
}



.send-btn {
  color: white;
  border: 2.5px solid #fff;
  border-radius: 2.5px;
  /* ✅ White line border */
  background-color: white;
  color: #fff;
  /* White text */
  padding: 10px 15px;
  font-weight: 600;
  background-color: linear-gradient(90deg, var(--parrot), #27ae60);

  transition: all 0.3s ease;
}

.send-btn:hover {
  background-color: #01200e91;
  color: #fff;
  border: 2.5px solid #fff;
  border-radius: 2.5px;
  /* ✅ White line border */
  color: #fff;
  /* White text */
  padding: 10px 15px;
  transform: scale(1.05);
}

@media (max-width: 575.98px) {

  .email-box,
  .send-btn {
    width: 100%;
  }
}




/*--------------------------------------------------------------
# Our Commitments
--------------------------------------------------------------*/
.commitments {
  background-color: #ffffff;
  padding: 80px 0;
}

.commitments .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.commitments .section-title p {
  color: #6c757d;
  font-size: 16px;
}

.commitment-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.commitment-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.commitment-box .icon {
  font-size: 42px;
  color: #ffc107;
  /* Bootstrap warning color */
  margin-bottom: 20px;
}

.commitment-box h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.commitment-box p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}




/* ================================
   Contact Page Custom CSS
================================ */

/* Page Header */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('img/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Section spacing */
section {
  position: relative;
}

/* Contact Info */
.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555;
}

.contact-info i {
  font-size: 20px;
  margin-right: 10px;
}

/* Map iframe */
.contact-info iframe {
  border-radius: 8px;
}

/* Card styling */
.contact-card {
  border: none;
  border-radius: 12px;
}

.contact-card .card-body {
  background: #ffffff;
  border-radius: 12px;
}

/* Form controls */
.form-control {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, .25);
}

/* Button */
.btn-primary {
  background-color: #0d6efd;
  border: none;
  padding: 10px 28px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7;
}

/* Footer */
footer {
  font-size: 14px;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .page-header h1 {
    font-size: 32px;
  }
}


#siteTitle {
  text-decoration: none;
}

.gallery-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-box:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s;
}

.gallery-box:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ======================
   SERVICES SECTION
====================== */

.service-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: #f9a825;
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

.service-box h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 14.5px;
  color: #666;
  margin-bottom: 0;
}



.cta-section {
  background: #f2f2f2;
  min-height: 420px;
  position: relative;
}

/* TEXT SLIDE FROM LEFT */
.slide-left {
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft 1.2s ease forwards;
}

/* RIGHT DESIGN */
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #4069e5 50%, transparent 50%);
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.2s ease forwards;
  animation-delay: 0.3s;
}

.cta-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: linear-gradient(45deg, #4160bb7c 50%, transparent 50%);
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1.2s ease forwards;
  animation-delay: 0.3s;
}

/* Keyframes */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Initial hidden state */
.animate-card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

/* When visible */
.animate-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional hover lift effect */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.career-btn {
  background-color: white;
  /* light grey background */
  color: #198754;
  /* dark green text */
  border: 2px solid #198754;
  /* green border */
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease-in-out;
}

.career-btn:hover {
  background-color: #198754;
  /* fill green on hover */
  color: #fff;
}


.client-btn {
  display: inline-block;
  background-color: #f3f3f3;
  color: #0b5d3b;
  border: 2px solid #0b5d3b;
  padding: 10px 28px;
  border-radius: 6px;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.client-btn:hover {
  background-color: #0b5d3b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.image-strip img {
  width: 100%;
  height: 500px;
  /* Height control */
  object-fit: cover;
  /* Crop nicely */
  transition: 0.4s ease;
}

.strip-img {
  overflow: hidden;
}

.image-strip img:hover {
  transform: scale(1.05);
  /* Slight zoom effect */
}




.contact-section {
  font-family: 'Barlow', sans-serif;
}

/* Contact Info Styling */
.contact-info {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.info-box i {
  font-size: 18px;
  color: #0b5d3b;
}

.info-box a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.info-box a:hover {
  color: #0b5d3b;
}

/* Map Styling */
.map-box iframe {
  border-radius: 10px;
}

/* Form Card */
.contact-card {
  border-radius: 12px;
}

/* Button Styling */
.contact-btn {
  background-color: #0b5d3b;
  color: #fff;
  border-radius: 6px;
  border: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background-color: #084d30;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


#pdfFrame {
  transition: opacity 0.3s ease;
}




/* Carousel height control */
.carousel-item img {
  height: 550px;
  object-fit: cover;
}

.carousel-item {
  transition: transform 0.8s ease-in-out;
  /* default 0.6s hota hai */
}

/* Clients Section Box */
.clients-section {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 92%;
  max-width: 1200px;
  padding: 15px 20px;
  z-index: 10;
}

/* Heading Box Left */
.clients-heading {
  background: #2b6ef2;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 20px 25px;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.clients-logos img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.clients-logos img:hover {
  transform: scale(1.1);
}




/* Bottom padding to prevent cut-off */
.position-relative {
  margin-bottom: 60px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .carousel-item img {
    height: 400px;
  }

  .clients-section {
    bottom: -30px;
    width: 95%;
    padding: 10px 15px;
  }

  .clients-heading {
    font-size: 1.1rem;
    padding: 12px 15px;
    clip-path: none;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .clients-logos img {
    max-height: 45px;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 300px;
  }

  .clients-section {
    bottom: -20px;
    padding: 8px 10px;
    width: 96%;
  }

  .clients-heading {
    font-size: 1rem;
    text-align: center;
    border-radius: 6px;
  }

  .clients-logos {
    gap: 15px;
    justify-content: center;
  }

  .clients-logos img {
    max-height: 40px;
  }
}




.building-hero {
  position: relative;
  height: 60vh;
  background: url('../img/footer-img.jpg') center center/cover no-repeat;

  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay */
.building-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Yellow Shape */
.building-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background: rgba(255, 193, 7, 0.7);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.8s;
}

/* Content Position */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Sector Line */
.sector-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sector-line .line {
  width: 50px;
  height: 2px;
  background: #ffc107;
}

.sector-text {
  font-size: 14px;
  letter-spacing: 2px;
}


/* ===== Animation Add ===== */

/* Yellow line left se aaye */
.sector-line .line {
  transform: translateX(-80px);
  opacity: 0;
  animation: slideLine 1s ease forwards;
}

/* SECTOR text fade */
.sector-text {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
  animation-delay: 0.5s;
}

/* Buildings heading animation */
.building-hero h1 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.5s ease forwards;
  animation-delay: 0.8s;
}

/* Keyframes */
@keyframes slideLine {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}