/* ========================================
GLOBAL RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ========================================
NAVBAR SECTION
======================================== */

/* Logo */
.navbar-brand img {
  height: 40px;
  width: auto;
}

/* Brand Text */
.brand-text {
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
  color: #2c3e50;
}

/* Navigation Links */
.nav-link {
  font-size: 16px;
  font-weight: 500;
  margin-left: 15px;
  color: #333 !important;
  transition: 0.3s;
}

/* Hover Effect */
.nav-link:hover {
  color: blue !important;
}

/* Active Link */
.nav-link.active {
  color: #198754 !important;
  font-weight: 600;
}


/* ========================================
VIDEO SECTION
======================================== */

.video-section {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background Video */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Dark Overlay */
.video-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

/* Responsive */

@media (max-width: 992px) {
  .video-section {
    height: 70vh;
  }
}

@media (max-width: 576px) {
  .video-section {
    height: 60vh;
  }
}


/* ========================================
ABOUT PROJECT SECTION
======================================== */

.about-project {
  overflow: hidden;
}

/* Image */
.about-img {
  max-width: 450px;
  width: 100%;
  height: 316px;
}


/* Image Animation */
.slide-left {
  animation: slideLeft 1.5s ease forwards;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Heading Animation */
.slide-top {
  animation: slideTop 1.2s ease forwards;
}

@keyframes slideTop {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Paragraph Animation */
.slide-right {
  animation: slideRight 1.6s ease forwards;
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Responsive */

@media (max-width: 768px) {

  .about-project {
    text-align: center;
  }

  .about-img {
    max-width: 280px;
    margin: auto;
  }

  .about-project h2 {
    font-size: 24px;
  }

  .about-project p {
    font-size: 15px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  .about-img {
    max-width: 380px;
  }

  .about-project h2 {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {

  .about-img {
    max-width: 500px;
  }

  .about-project h2 {
    font-size: 32px;
  }

  .about-project p {
    font-size: 17px;
  }
}


/* ========================================
PROJECT HIGHLIGHTS SECTION
======================================== */

/* Feature Buttons */

.feature-buttons {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  
}

.featureBtn {
  border: none;
  background: #e5e5e5;
  padding: 10px 22px;
  margin: 5px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

/* Active Button */
.featureBtn.active {
  background: #1e7f4f;
  color: #fff;
}

/* Hover */
.featureBtn:hover {
  background: #1e7f4f;
  color: white;
}


/* Tab Content */

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* List */

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  font-size: 16px;
  padding: 8px 0;
}

ul li i {
  color: #1e7f4f;
  margin-right: 10px;
  font-size: 18px;
}

/* LEFT → RIGHT animation */

.left-anim{
opacity:0;
animation:slideLeft 1s forwards;
}

@keyframes slideLeft{
from{
transform:translateX(-100px);
opacity:0;
}
to{
transform:translateX(0);
opacity:1;
}
}

/* RIGHT → LEFT animation */

.right-anim{
opacity:0;
animation:slideRight 1s forwards;
}

@keyframes slideRight{
from{
transform:translateX(100px);
opacity:0;
}
to{
transform:translateX(0);
opacity:1;
}
}

/* Responsive */

@media (max-width: 768px) {

  .featureBtn {
    font-size: 14px;
    padding: 8px 16px;
  }

  ul li {
    font-size: 15px;
  }
}

@media (max-width: 576px) {

  .featureBtn {
    width: 45%;
  }
}


/* ========================================
IMAGE GALLERY SECTION
======================================== */

.gallery-section {
  background: #f8f9fa;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}

/* Hover Effect */
.gallery-img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-img {
    height: 150px;
  }
}

/* Carousel Controls */

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black;
  padding: 10px;
  border-radius: 50%;
}


/* ========================================
TESTIMONIAL SECTION
======================================== */

.testimonial-section{
background:#f8f9fa;
}

.testimonial-heading{
font-weight:700;
color:#2c3e50;
}

/* Card */

.testimonial-card{
max-width:600px;
margin:auto;
padding:30px;
background:#ffffff;
border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-height: 260px; /* keeps all slides same height */
}

/* Image */

.testimonial-img{
width:80px;
height:80px;
border-radius:50%;
object-fit:cover;
margin-bottom:15px;
}

/* Name */

.testimonial-card h5{
font-weight:600;
margin-bottom:10px;
}

/* Text */

.testimonial-text{
font-size:15px;
color:#555;
line-height:1.6;
}

/* Carousel arrows */

.carousel-control-prev-icon,
.carousel-control-next-icon{
 top: 50%;
    transform: translateY(-50%);
} 




















/* ========================================
CONTACT SECTION
======================================== */

.contact-info {
  background: #f5f5f5;
}

/* Info Cards */

.info-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.info-card i {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 15px;
}

.info-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card p {
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Contact Form */

.contact-form-box {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-form-box h3 {
  font-weight: 600;
  color: #333;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

/* Focus Effect */

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13,110,253,0.2);
}

.contact-form-box textarea {
  height: 120px;
  resize: none;
}

/* Button */

.contact-form-box .btn {
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 500;
}

.contact-form-box .btn:hover {
  background: #0b5ed7;
  transform: scale(1.05);
}


/* Google Map */

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .map-container {
    height: 400px;
  }
}


/* ========================================
FOOTER SECTION
======================================== */

.footer-logo {
  height: 40px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  margin-left: 8px;
  color: #2c3e50;
}

.footer-links a {
  color: #000;
  text-decoration: none;
}

.footer-links a:hover {
  color: blue !important;
}