

.ycolr{
  color: #f7c600 !important;

}

.bcolr{
  color: #007bff !important;

}

.wcolr{
  color:white !important;
}

.tcenter{
  text-align: center;
}

        /* Hero Section with Background Image */
        .hero-section {
            background-image: url(../images/about-banner.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

             .hero-projects {
            background-image: url(../images/projects-banner.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

                .hero-services {
            background-image: url(../images/services-banner.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }


                    .hero-sustain {
            background-image: url(../images/sustain-banner.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }


.hero-section2 {
            background-image: url(../images/abtbg2.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

.hero-section3 {
            background-image: url(../images/abtbg1.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 75vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }


        .hero-section4 {
            background-image: url(../images/services-bg.png); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;

        }

           .hero-section5 {
            background-image: url(../images/aboutsectionlastbg.jpg); /* Replace with your actual background image path */
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }






/* Image styling */
.worker-img {
    z-index: 2;
    position: relative;
    width: 100%;
    height: auto;
}

/* Responsive adjustments for desktop */
@media (min-width: 992px) {
    .hero-section5 {
        padding: 150px 0;
    }
    .h2 {
        font-size: 1.8rem;
    }
}




        /* Overlay for the background image */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background-color: rgba(0, 0, 0, 0.5);

        }

        /* Text in the hero section */
        .hero-content {
            position: relative;
            color: #fff;
            text-align: center;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 25px;
            font-weight: bold;
        }

        .hero-content p {
            font-size: 24px;
            margin-top: 10px;
        }

        .navbar .nav-link {
            color: #fff !important;
            font-weight: bold;
        }

        .navbar .nav-link:hover {
            color: #f0ad4e !important;
        }

        .navbar-brand img {
            width: 100px;
            height: auto;
        }

        .btn-contact {
            background-color: #f0ad4e;
            border: none;
            padding: 10px 20px;
            font-weight: bold;
        }

        .btn-contact:hover {
            background-color: #ec971f;
        }



/* Pattern Background Container */
.pattern-container {
  position: relative;
  height: 100vh;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Animation of the Pattern */
.animated-pattern {
 /* position: relative;
  top:25px;
  left: 0px;
  background-image: url(../images/bg1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 150px;
  height: 150px;
  animation: float 3s infinite alternate ease-in-out;*/

   content: '';
        position: absolute;
        height: 150px;
        width: 150px;
        background-image: url(../images/bg1.png);
        background-repeat: no-repeat;
        top: 32%;
        animation: float 8s linear infinite;
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}



/* Footer */
footer {
  background: #333;
  padding-block: 6.25rem;
}

.address-area {
  p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.65em;
  }
}

.footer-social {
  h4 {
    color: var(--white);
  }
}



#sustainabilty{
padding-top:120px;
padding-bottom:120px;
}

#services{
padding-top:120px;
padding-bottom:120px;
}



.card {
   /* border-radius: 10px;
    overflow: hidden;*/
    border: none !important;
}

.card-img-top {
/*    height: 200px;*/
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #1d73b2;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-text {
    font-size: 14px;
    color: #555;
}













/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}











      .custom-btn {
            display: inline-block;
            background-color: #0056b3; /* Blue background */
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            font-family: Arial, sans-serif;
            font-weight: bold;
            position: relative;
            border: none;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color 0.3s;
            z-index: 1;
        }

        .custom-btn::after {
            content: '';
            position: absolute;
            top: 0;
            right: -15px; /* Shifts the yellow triangle to the right */
            width: 0;
            height: 0;
            border-top: 35px solid #f7c600; /* Yellow triangle */
            border-left: 35px solid transparent;
            z-index: -1;
        }

        .custom-btn:hover {
            background-color: #003f8c; /* Darker blue on hover */
        }









    .solar-section {
      background-color: #f0f0f0; /* Light grey background */
      padding: 40px 0;
    }
    .yellow-bg {
      background-color: #ffd700; /* Solar Yellow */
      padding: 40px;
      border-radius: 20px;
    }
    .solar-section h2 {
      color: #0056b3; /* Blue text */
      font-weight: bold;
    }
    .solar-icons {
      font-size: 40px;
      color: #0056b3; /* Blue icons */
      margin-bottom: 15px;
    }
    .text-description {
      font-size: 16px;
      font-weight: 500;
      color: #333;
    }
    .main-content {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }




 .projects-section {
      background-color: #003366; /* Navy blue background */
      color: #fff;
      padding: 50px 0;
    }
    .projects-title {
      font-size: 24px;
      font-weight: bold;
      background-color: #ffd700; /* Yellow banner */
      padding: 10px 20px;
      display: inline-block;
      color: #003366;
      border-radius: 5px;
    }
    .projects-description {
      font-size: 16px;
      margin-top: 20px;
      color: #ffd700; /* Yellow text for description */
    }
    .project-card {
      margin-top: 40px;
      text-align: center;
    }
    .project-card img {
      border-radius: 50%;
      object-fit: cover;
      height: 200px;
      width: 200px;
      margin-bottom: 20px;
    }
/*    .btn-know-more {
      background-color: #ffd700;
      color: #003366;
      font-weight: bold;
      border-radius: 50px;
      padding: 10px 20px;
      margin-top: 10px;
    }
*/



   .eco-section {
      background-color: #cfe4f9; /* Light blue background */
      padding: 50px 0;
    }
    .eco-title {
      font-size: 24px;
      font-weight: bold;
      background-color: #003366; /* Navy blue */
      padding: 10px 20px;
      display: inline-block;
      color: #ffd700;
      border-radius: 5px;
    }
    .eco-description {
      font-size: 18px;
      color: #003366;
      margin-top: 20px;
    }
    .btn-know-more {
      width:232px;
      height: 38px;
border:none !important;
border-radius: 0 !important;
      color: #fff;
      font-weight: bold;



text-align:left;
padding-left:30px;
    }
    .eco-image {
      max-width: 100%;
      height: auto;
    }




  .solar-icon {
      font-size: 48px;
      color: #1e3e74;
    }
    .solar-text {
      font-size: 18px;
      color: #1e3e74;
      margin-top: 10px;
    }
    .section-title {
      font-size: 28px;
      color: #1e3e74;
      margin-bottom: 30px;
    }
    .icon-wrapper {
      text-align: center;
      padding: 20px;
    }
    .icon-wrapper img {
      max-width: 100px;
      margin-bottom: 15px;
    }









.btn-custom {
      display: inline-block;
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      padding: 15px 40px;
      text-decoration: none;
      position: relative;
      border-radius: 4px;
      background-image: url('images/buttonbg2.png'); /* Path to your background image */
      background-size: cover;
      background-position: center;
      border: none;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background-size: 110%; /* Zoom effect on hover */
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add shadow on hover */
    }

    .btn-custom span {
      position: relative;
      z-index: 1;
    }

    .btn-custom:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); /* Dark overlay to enhance text visibility */
      z-index: 0;
      transition: all 0.3s ease;
    }

    .btn-custom:hover:before {
      background: rgba(0, 0, 0, 0.6); /* Darken overlay on hover */
    }








.project-circle {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transition: opacity 0.5s ease;  /* Fading effect on hover */
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
/*  background: rgba(0, 0, 0, 0.7);*/
  color: white;
  padding: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.5s ease;  /* Fade-in of the text */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.project-circle:hover .overlay {
  opacity: 1;  /* Text appears on hover */
}

.project-circle:hover .project-image {
  opacity: 0.3;  /* Image fades out on hover */
}











.service-item {
  text-align: center;
  margin-bottom: 30px;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #003170;
  margin: 0;
}

h2 {
  font-size: 32px;
  font-weight: bold;
  color: #003170;
}

@media (max-width: 767px) {
  .service-item {
    margin-bottom: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  h2 {
    font-size: 28px;
  }
}



#projectsection{
  padding-top: 120px;
  padding-bottom:120px;
}

.sectiontitle{
  margin-bottom:20px;
}

.sectionsubtitle{
  margin-bottom:20px;
}


#projectsection img{
  width:30%;
}










#servicessection{
  padding-top: 120px;
  padding-bottom:120px;
}

#servicessection img{
  width:100%;

}

.yellow-box {
    background-color: #ffcd00; /* Background color */
    padding: 15px;            /* Space inside the box */

    color: #000;              /* Text color */
    font-size: 20px;          /* Font size */
}





#servicessection{
  padding-top: 120px;
  padding-bottom:120px;
}





/* Divider with background image */
        .divider {
            position: relative;
            width: 240px;
            height: 9px; /* Adjust height to fit the design */
            background: url('../images/divider01.png') no-repeat center center;
            background-size: cover;
        }



/* about navigation inner */
.bg-custom {
/*    background-color: #FFD700; */
}
/* Default Navigation Link Styles */
.nav-pills .nav-item .nav-link {
    margin-inline: 0px !important;
}
.nav-pills .nav-link {
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #0056b3;
    border-radius: 0px !important;
    text-align: center;
    position: relative;
}

.nav-pills .nav-link:hover {
    background-color: #004490;
    color: white;
}

.nav-pills .nav-link.active {
    color: black;
    background-color: #FFD700;
}

.nav-pills .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #0056b3;
    right: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-pills .nav-link:hover::after {
    width: 40%;
}

.nav-pills .nav-item {
    list-style: none;
}

/* Mobile-Specific Styles */
@media (max-width: 768px) {
    /* Reduce padding for mobile */
    .nav-pills .nav-link {
        padding: 8px 15px;
        font-size: 14px; /* Smaller font size */
    }

    /* Center-align the links in mobile view */
    .navbar-nav {
        text-align: center;
    }

    /* Stack nav items vertically in mobile view */
    .nav-pills .nav-item {
        display: block;
        width: 100%; /* Full width */
    }

    /* Adjust underline on hover */
    .nav-pills .nav-link:hover::after {
        width: 60%; /* Expand underline more on hover for mobile */
    }
}



.bg-about-sm-shape {
  position: relative;
}

.bg-about-sm-shape::after {
  content: "";
  position: absolute;
  height: 150px;
  width: 150px;
  background-image: url(../images/01.png); /* Make sure the path is correct */
  background-repeat: no-repeat;
  left: 0; /* Change to left to position it on the left side */
  top: 32%;
  animation: jump-1 8s linear infinite;
  z-index: 1; /* Ensure it's above the ::before */
}

@media only screen and (max-width: 767px) {
  .bg-about-sm-shape::after {
    left: -10%; /* Adjust for smaller screens */
  }
}

@media only screen and (max-width: 479px) {
  .bg-about-sm-shape::after {
    left: -20%; /* Adjust for even smaller screens */
  }
}

@keyframes jump-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px); /* Height of the jump */
  }
  100% {
    transform: translateY(0);
  }
}

.bg-about-sm-shape::before {
  content: "";
  position: absolute;
  height: 150px;
  width: 150px;
  background-image: url(../images/02.png);
  background-repeat: no-repeat;
  top: 60%;
  right: -2%;
  animation: rotateIt 10s linear infinite;
  z-index: 0; /* Behind the content */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bg-about-sm-shape::before {
    top: 76%;
  }
}

@media only screen and (max-width: 767px) {
  .bg-about-sm-shape::before {
    top: 76%;
    height: 100px;
    width: 100px;
  }
}

@keyframes rotateIt {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}




/* Vertical line between columns */
.column-with-line {
    position: relative;
}

.column-with-line::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: yellow;
}

.column-with-line:last-child::after {
    display: none;
}


hr.bclr{
    border-top: 2px solid #0056b3 !important;
    opacity: unset !important;
}

hr.smbclr{

  width: 100px;
    border-top: 2px solid #0056b3 !important;
    opacity: unset !important;
}

hr.ybclr{

  width: 100px;
    border-top: 2px solid #0056b3 !important;
    opacity: unset !important;
}


.divider {
  font-size: 30px;
  display: flex;
  align-items: center;
}

.divider::before, .divider::after {
  flex: 1;
  content: '';
  padding: 3px;
  background-color: yellow;
  margin: 5px;
}







.contactsection{
padding-top: 120px;
padding-bottom: 120px;
}


  .contact-info .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-info i {
            font-size: 34px !important;

            margin-right: 15px;
        }
        .contact-info h6 {
            color: #d2b98b;
            font-weight: bold;
            margin: 0;
        }
        .contact-info p {
            color: #6c757d;
            margin: 0;
        }
        .form-container {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .form-header {
            font-size: 24px;
            font-weight: bold;
        }
        .form-header small {
            font-size: 14px;
            color: #6c757d;
        }
        .form-control, .btn {
            border-radius: 0;
        }
        .btn-submit {
            background-color: #d2b98b;
            color: #fff;
        }





      /* Container for the project image */
          .project-img {
            position: relative;
            overflow: hidden;
            border-radius: 50%; /* Circular image effect */
            display: inline-block;

        }

        .project-img img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        /* Hover Effect */
        .project-img .project-hover {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background-color: rgba(255, 223, 0, 0.8); /* Semi-transparent yellow */
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .project-img:hover .project-hover {
            transform: translateY(0); /* Slide the hover effect up */
        }

        .project-img:hover img {
            transform: scale(1.1); /* Slightly zoom in the image */
        }

        /* Text Inside Hover Effect */
        .project-hover .hover-text {
            font-size: 16px;
            color: #ffffff;
            text-align: center;
            padding: 10px;
            font-weight: bold;
        }



      /* Container for the fade-in animation */
        .fade-in-container {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        /* Fade-in animation */
        .fade-in {
            opacity: 0;
            animation: fadeIn 4s ease-in forwards;
        }

        /* Animation keyframes */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }





.icon-container {
            display: flex;
            gap: 30px;
            text-align: center;
            justify-content: center;
        }

        .icon {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        /* Active class to trigger the fade-in */
        .icon.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Style for icon images */
        .icon img {
            width: 80px;
            height: 80px;
        }

        /* Style for icon captions */
        .icon p {
            margin-top: 10px;
            font-size: 16px;
            color: #333;
        }
