* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cuprum", Courier, monospace;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}

h4 {
  font-size: 20px;
  color: #222;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: gray;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

.logo {
  display: inline-block;
  max-height: 100px;
  line-height: 0;
}

.logo img {
  display: block;
  height: 100%;
  width: auto;
}
/* Header */
/* Header */
/* Header */
/* Header */ /* Header */
/* Header */
/* Header */
/* Header */ /* Header */
/* Header */
/* Header */
/* Header */
/* Header */
/* Header */
/* Header */
/* Header */

/* HEADER/NAV BAR e3e6f3;*/
#header {
  background: rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  box-shadow: 0 9px 45px rgba(0, 0, 0, 9);
  position: relative;
  z-index: 999;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

#navbar {
  display: flex;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

#navbar li a {
  position: relative;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  padding: 4px 12px;
  transition: 0.3s ease;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 50%;
  height: 2px;
  background: #29b4d1;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

/* IMAGE CAROSEL */
.carousel {
  width: 100%;
  max-width: none; /* ensure no inherited max-width */
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin: 0;
  height: 86vh;
}

.carousel > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 200ms opacity ease-in-out;
  transition-delay: 200ms;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.9) 95%
  );
}

.carousel-button {
  position: absolute;
  z-index: 2;
  background: none;
  border: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  border-radius: 0.25rem;
  padding: 0 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}

.carousel-button:hover,
.carousel-button:focus {
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
}

.carousel-button:focus {
  outline: 1px solid black;
}

.carousel-button.prev {
  left: 1rem;
}

.carousel-button.next {
  right: 1rem;
}

.carousel-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: auto; /* avoid stretching */
  top: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  max-width: 50%; /* or whatever width constraint you want */
  padding: 1rem;
  color: white;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

@media (max-width: 768px) {
  .carousel-caption {
    bottom: 1rem;
    left: 1rem;
    max-width: 70%;
    padding: 0.75rem 1rem;
  }
}

.carousel-caption h4 {
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.carousel-caption h2 {
  font-size: 2rem;
  margin: 0;
}

.carousel-caption h1 {
  font-size: 2.5rem;
  margin: 0;
}

.carousel-caption p {
  margin: 0;
  font-size: 1rem;
}

.carousel p {
  color: #ff0000;
}
.carousel h1 {
  color: #b6e0eb;
}

.carousel h4 {
  color: #29b4d1;
}

/* ACTUAL FEATURE SECTION */

#product1 {
  text-align: center;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
  margin: 15px 0;
  transition: 0.2s ease;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.26);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 12px;
}

#product1 .pro .des h5 {
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 14px;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

/* ABOUT ME */
.about-section {
  width: 100%;
  min-height: 65vh;
  background-color: #b6e0eb;
  padding-bottom: 100px;
}

.about-container {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  margin: auto;
  align-items: center;
  padding-top: 100px;
}

.content-section {
  float: left;
  width: 50%;
}

.about-image-section {
  display: flex;
  justify-content: space-evenly;
  width: 40%;
}

.about-image-section img {
  width: 70%;
  height: auto;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.26);
  border: 1px solid #000000;
  border-radius: 25px;
}

/* CALL TO ACTION BANNER */
#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(images/calltoaction.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  margin: 0;
}

#banner h4 {
  color: #fff;
  font-size: 16px;
}

#banner h2 {
  color: #fff;
  font-size: 30px;
  padding: 10px 0;
}

#banner h2 span {
  color: #f50000;
}

#banner button:hover {
  background-color: #088178;
  color: #fff;
}

#banner3 h3 {
  color: #f50707;
  font-weight: 800;
  font-size: 15px;
}

/* PHOTO GALLERY*/

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px 20px 0 20px;
}

.container .heading {
  width: 50%;
  padding-bottom: 50px;
}

.container .heading h3 {
  font-size: 3em;
  font-weight: bolder;
  padding-bottom: 10px;
  border-bottom: 3px solid #222;
}

.container .heading h3 span {
  font-weight: 100;
}

.container .box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.container .box .climb {
  display: flex;
  flex-direction: column;
  width: 32.5%;
}

.container .box .climb img {
  width: 100%;
  padding-bottom: 15px;
  border-radius: 5px;
}

.container .btn {
  margin: 40px 0 70px 0;
  background: #222;
  padding: 15px 40px;
  border-radius: 5px;
}

.container .btn a {
  color: #fff;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: bolder;
  letter-spacing: 3px;
}

@media only screen and (max-width: 769px) {
  .container .box {
    flex-direction: column;
  }

  .container .box .climb {
    width: 100%;
  }
}

@media only screen and (max-width: 643px) {
  .container .heading {
    width: 100%;
  }

  .container .heading h3 {
    font-size: 1em;
  }
}

/* NEWS LETTER */

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: url(images/b14.png);
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: #041e42;
  margin-bottom: 0;
  margin-top: 0;
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 22px;
  font-weight: 600;
  color: #818ea0;
}

#newsletter p span {
  color: #ffbd27;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

#newsletter input {
  height: 3.125rem;
  padding: 0 1.25em;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: #088178;
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* FOOTER */

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  background: #f8f8f8; /* optional background for contrast */
  margin-top: 0;
  width: 100%;
}

footer .col {
  display: flex;
  flex: 1 1 220px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem; /* consistent vertical spacing inside */
  min-width: 180px;
}

footer .logo {
  margin-bottom: 1rem;
  max-width: 180px;
  height: auto;
}

footer h4 {
  font-size: 0.9rem;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

footer a {
  font-size: 0.85rem;
  text-decoration: none;
  color: #222;
  margin: 0; /* consume spacing via gap */
  line-height: 1.4;
}

footer .follow {
  margin-top: 0.5rem;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .copyright {
  flex: 1 1 100%;
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1rem;
  color: #555;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1rem;
}
