/* Global Styles */
:root {
  --primary-color: #ffc107;
  --secondary-color: #343a40;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --white-color: #ffffff;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 76px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.text-warning {
  color: var(--primary-color) !important;
}

.btn-warning {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: var(--dark-color);
}

.btn-outline-warning {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

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

/* Navigation */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 70%;
}

/* Hero Section */
#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/images/bg-img.jpg") no-repeat center
    center / cover;
  height: 80vh;
  min-height: 500px;
}

/* Page Header */
#page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("/assets/images/page-header-bg.jpg") no-repeat
    center center / cover;
  height: 30vh;
  min-height: 300px;
}

.breadcrumb-item a {
  color: var(--primary-color);
}

/* Services Preview */
.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Projects Preview */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-card img {
  border-radius: 10px;
  transition: all 0.5s ease;
}

.project-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white-color);
  border-radius: 0 0 10px 10px;
  transition: all 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card:hover .project-overlay {
  bottom: 0;
}

/* Testimonials */
.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}

.testimonial-content {
  position: relative;
  padding: 20px;
}

.testimonial-content:before {
  content: "\201C";
  font-size: 4rem;
  position: absolute;
  top: -20px;
  left: -10px;
  color: var(--primary-color);
  opacity: 0.3;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author h5 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

/* Footer */
.footer-links a {
  color: #adb5bd;
  display: block;
  padding: 5px 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 10px;
}

.contact-info li {
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

/* About Page */
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 5px solid var(--primary-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Services Page */
.service-item {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--white-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-step {
  position: relative;
}

.process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
}

.process-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  background-color: var(--dark-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Projects Page */
.project-filter {
  margin-bottom: 30px;
}

.filter-btn {
  background-color: transparent;
  border: 1px solid var(--gray-color);
  color: var(--gray-color);
  padding: 8px 20px;
  margin: 0 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.project-details img {
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Contact Page */
.contact-info-box {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  text-align: center;
}

.contact-info-box i {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.contact-form {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/*About Team Section*/

.box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;

}

.member-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  column-gap: 40px;

}

.box {
  height: 400px;
  width: 290px;
  background-color: rgb(250, 250, 250);
  border-radius: 22px;
  border-style: solid;
  border-color: darkgray;
  border-width: 2px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.08);
  padding-bottom: 8px;

}

.box1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-content: center;





}

.box2 {
  flex: 1;




}

.Parent {
  display: flex;
  background-color: #ffc527;

  margin-top: 160px;
  width: 100%;

  height: 125px;

  position: sticky;
  justify-content: center;

}

.profile-picture-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.profile-picture {
  height: 200px;
  border-radius: 108px;
  border-color: darkgray;
  border-style: solid;
  border-width: 2px;
  margin-top: 13px;

}

.info-container {
  flex: 1;

}

.profile-name {
  font-family: fantasy;
  font-size: 24px;
  font-weight: 400;

  text-align: center;
  margin-top: 12px;

}

.edu-info {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.about-info {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: rgb(78, 72, 72);
  font-family: sans-serif;

}

/* Responsive Styles */
@media (max-width: 991px) {
  #hero {
    height: 70vh;
  }

  .navbar-collapse {
    background-color: var(--dark-color);
    padding: 20px;
    border-radius: 5px;
    margin-top: 15px;
  }

  .nav-link:after {
    display: none;
  }
}

@media (max-width: 767px) {
  #hero {
    height: 60vh;
    text-align: center;
  }

  #hero .btn {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .process-step:after {
    display: none;
  }
  .container-lg{
   margin-top: 20px;
  }
  .fw-bold{
    text-align: center;
  }
  .container-sm{
    margin-top: 10px;

  }
  
  .profile-picture {
    height: 110px;
   
  
  }
  .profile-name {
    font-size: 14px;
 
  }
  .edu-info {
    font-size: 11px;
  }
  .about-info {
    font-size: 10px;
  }
  .box {
    height: auto;
    width: auto;
  }
  
}

@media (max-width: 576px) {
  body {
    padding-top: 66px;
  }

  .navbar {
    padding: 10px 0;
  }

  #hero {
    height: 50vh;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

/* Project Showcase Slider */
.slider{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.slider img{
  width: 400px;
  height: 300px;
  border: 2px solid #ff3d0036;
  border-radius: 13px;
  box-shadow: 4px 7px 7px 0px;
  cursor: pointer;
  margin: 10px;
  transition: 400ms;
}

.slider img:hover{
  /* filter: grayscale(1); */
  transform: scale(1.09);
}


.project-slider {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 16px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
  transition: background 0.3s ease;
}

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

.prev-btn {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next-btn {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--primary-color);
}

@media (max-width: 768px) {
  .slide img {
      height: 400px;
  }
  
  .slider-btn {
      padding: 12px;
      font-size: 16px;
  }
}
/*Contact form section*/

.contact-form {
  max-width: 600px;
  background: white;
  padding: 30px;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.btn-warning {
  background-color: #ffc107;
  border: none;
  font-weight: bold;
}

.btn-warning:hover {
  background-color: #e0a800;
}

.badge {
  font-size: 14px;
  padding: 6px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.badge i {
  margin-left: 6px;
  cursor: pointer;
}

label {
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}


.map-responsive {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



