body {
  background-image: url(photos/five.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 15, 13, 0.7);
  z-index: 1;
  pointer-events: none;
  font-family: 'Poppins', sans-serif;

}

body>* {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

/* Navbar base */
.navbar {
  transition: background-color 0.3s ease;
}

/* Default links: white */
.navbar .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

/* Active link styling */
.navbar .nav-link.active {
  font-weight: 600;
  text-decoration: underline;
}

/* Scrolled state */
.navbar.scrolled {
  background-color: rgb(255, 255, 255) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Links turn black when scrolled */
.navbar.scrolled .nav-link {
  color: black !important;
}

/* Logo */
.my-logo {
  max-width: 120px;
  height: auto;
}

@media (min-width: 992px) {
  .my-logo {
    margin-left: -40px;
  }
}

/* Button gradient */
.first-btn {
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */
}

/* Button text turns black when scrolled */
.navbar.scrolled .first-btn {
  color: black;
}

/* 2-part */

/* Section spacing */
.secound {
  margin-top: 210px;
}

/* Button styles */
.first-btnn {
  border: 1px solid white;
}

/* Icon color */
.video-icon {
  color: rgb(162, 201, 120);
}

/* Image styles */
.girl-img {
  height: 340px;
  width: 90%;
  border: 1px solid white;
  border-radius: 50%;
  object-fit: cover;
      border: 1px solid white;
    box-shadow: 10px 20px 40px rgb(162, 201, 120);
}


/* Responsive adjustments */

/* Mobile (<768px): smaller than full width */
@media (max-width: 767px) {
  .secound {
    margin-top: 130px;
  }

  .girl-img {
    width: 85%;
    height: 255px;
  }

  .first-btnn {
    font-size: 12px;
    /* slightly larger for readability */
  }
}

/* Tablet (768px–991px): full width */
@media (min-width: 768px) and (max-width: 991px) {
  .girl-img {
    width: 100%;
    height: auto;
    /* let height adjust naturally */
  }

}

.my-line {
  color: rgb(162, 201, 120);

}

/* 3-part */

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(143, 188, 139, 0);
}

.glass-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgb(162, 201, 120);

}

.my-text {
  width: 50%;
  text-align: center;
  margin: auto;

}

.cards-icon {
  color: rgb(162, 201, 120);

}

@media (max-width: 767px) {
  .my-text {
    width: 90%;

  }
}

/* 4-part */
.project-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgb(162, 201, 120);
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
  box-shadow: 0 0 0 rgba(143, 188, 139, 0);
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 40px rgb(162, 201, 120);

}

.project {
  border-radius: 15px;

}

.project-btn {
  background: linear-gradient(135deg,
      rgb(106, 148, 77),
      rgb(162, 201, 120),
      rgb(72, 104, 50));
  color: white;
  /* default text color */

}
/* 5-part */
.last-row {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}