@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Teko:wght@300..700&display=swap');

:root {
  --primary-color: #ffcd00;
  --secondary-color: #004eb1;
  --text-color: #333;
  --light-blue: #f1fdf7;
  --white: #fff;

  --header-ff: "Teko", sans-serif;
  --text-ff: "Inter", sans-serif;
}

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

body {
  font-family: var(--text-ff);
  font-size: 1rem;
}

ul,
ol {
  list-style: none;
  padding-left: unset;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
  font-family: var(--header-ff);
  color: var(--secondary-color);
}

h1 {
  font-size: 4.125rem;
}
h2 {
  font-size: 3.052rem;
}
h3 {
  font-size: 2.441rem;
}
h4 {
  font-size: 1.953rem;
}
h5 {
  font-size: 1.563rem;
}
h6 {
  font-size: 1.25rem;
}

p {
  color: var(--text-color);
  line-height: 1.65em;
}

/* Common Style */
.main-btn {
  font-family: var(--header-ff);
  font-size: 20px;
  background: rgb(0,78,177);
  background: linear-gradient(50deg, rgba(0,78,177,1) 60%, rgba(255,205,0,1) 60%);
  padding: 8px 100px 6px 20px;
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  clip-path: polygon(0 0, 80% 1%, 100% 100%, 0% 100%);
  max-width: 500px;
}

/* Header Styles */
.custom-header {
  background: rgba(0,94,185,0) !important;
  -webkit-transition:all .5s ease;
	-moz-transition:all .5s ease;
	transition:all .5s ease
}

.custom-header.sticky {
  background: rgba(0,94,185,1) !important;
}

.navbar-brand {
  padding-block: 1.875rem;
  -webkit-transition:all .5s ease;
	-moz-transition:all .5s ease;
	transition:all .5s ease
}

.navbar-brand.sticky {
  padding-block: .5rem;
}

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

.navbar .nav-item .nav-link {
  color: white;
  margin-inline: .5rem;
}

.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link.active {
  color: var(--primary-color);
}

/* Hero */
.carousel-caption {
  text-align: left;
}
.carousel-inner > .item > img {
  max-height: 400px;
  width:100%;
}
.caption-title p {
  font-size: 76px;
  line-height: 1em;
  font-family: var(--header-ff);
  color: var(--white);
  text-shadow: 0px 5px 25px #333;
  margin-bottom: 1.5rem;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  opacity: 1;
}

.carousel-indicators .active {
  background-color: var(--secondary-color);
}

/* About Us Section */
.about-section {
  background: var(--light-blue);
  background-image: url(../assets/images/dots.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-block: 6.25rem;
}

/* Feartures */
.features-section {
  padding-block: 6.25rem;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(255,205,0,1) 40%);
}

.rounded-border {
  padding: 100px 50px;
  border: 2px solid var(--secondary-color);
  border-radius: 30px;
}

/* Projects */
.projects-wrap {
  background: var(--secondary-color);
  padding-block: 6.25rem;
}

.project-description {
  h2, p {
    color: var(--white);
  }
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background: var(--primary-color);
}

.project-img {
  position: relative;
}

.project-img img {
  width: 100%;
}

.project-caption {
  position: absolute;
  top: 60%;
  left: 10%;
  right: 10%;

  p {
    font-size: 18px;
  }
}

.project-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: var(--secondary-color);
  line-height: 1em;
  text-align: center;
  margin-top: -30px;
  float: right;
}

/* Eco Friendly */
.eco-friendly-wrap {
  padding-block: 6.25rem;
  background: #b0d4ee;
}

.eco-friendly-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: var(--secondary-color);
  line-height: 1em;
  text-align: center;
}

.sunlight-wrap {
  padding-block: 6.25rem;
}

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

.address-area {
  p {
    color: var(--white);
  }
}

.footer-social {
  h4 {
    color: var(--white);
  }
}
.textleft{
    text-align: left;
}
.team-img {
    width: 350px; /* Adjust size as needed */
    height: 350px; /* Ensures a perfect circle */
    border-radius: 50%;
    object-fit: cover;
    background-color: white; /* Helps remove any unwanted background */
    border: 2px solid  var(--primary-color); /* Optional: Adds a clean white border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Soft shadow effect */
}

@media (max-width: 991px) { /* Adjust for mobile view */
    .custom-header .navbar-collapse.show {
        background-color: var(--secondary-color) !important; /* Blue background when navbar is open */
        padding: 10px 0; /* Optional: Adds some spacing */
    }
    .navbar-collapse {
        text-align: center;
    }
    .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .btn.btn-warning {
        display: block;
        margin: 10px auto;
        margin-left: 30%;
        margin-right: 30%;
    }
    .main-btn{
        display: block;
    }
    .margin-12{
        margin-left: 12px;
    }
    .moveleft{
        text-align: left !important;
    }
    .img-pos{
        object-fit: cover !important;
    }
    .textleft{
        text-align: center;
    }
    .team-img {
        width: 250px; /* Adjust size as needed */
        height: 250px; /* Ensures a perfect circle */

    }
}
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

/* Default: Mobile Layout */
.team-member {
    width: 100%;
}

/* Desktop: Arrange with CEO in Center */
@media (min-width: 992px) {
    .team-container {
        flex-direction: row;
        margin-bottom: 8px;
    }
    .team-member {
        width: 30%; /* Adjust width to fit in a row */
    }
    .ceo {
        order: 2; /* Move CEO to center */
    }
    .left {
        order: 1;
    }
    .right {
        order: 3;
    }
}
