body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e1e1e;
    color: #ffffff;
}

.bk-wrapper {
    background: url('images/bk2.png') no-repeat center center;
    background-size: cover;
    padding: 0.5in;
    display: flex;
    justify-content: center;
}

.content-wrapper {
    background: rgba(30, 34, 48, 0.9);
    backdrop-filter: blur(6px);
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #1a1d29;
}

.logo-text {
  font-weight: bold;
  color: #ffca61; /* default white */
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.logo-link:hover .logo-text {
  color: #ffffff /* changes on hover */
}

.logo {
    display: flex; /* Enables flexbox for inline alignment */
    align-items: center; /* Vertically centers the image and text */
    font-size: 24px;
    font-weight: bold;
    color: #ffca61;
}

.logo img {
    margin-right: 10px; /* Adds spacing between the image and the text */
}

nav a {
    margin: 0 15px;
    color: #fff;
    text-decoration: none;
}

nav a:hover {
    color: #ffca61;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 60px 56px 60px;

  background-image: linear-gradient(to right, #1e2230 80%, #1e2230 20%), url('images/NewHeroBkgrnd-test7-76.png');

  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;

  opacity: 0;
  animation: fadeInHero 1s ease-in-out forwards;
  animation-delay: 0.2s;
}

/* Fade-in animation keyframes */
@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
    max-width: 50%;
    z-index: 2;
}

.hero-text h1 {
    font-size: 48px;
    margin: 0;
}

.highlight {
    color: #ffca61;
}

.hero-text p {
    font-size: 18px;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    height: 460px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: -60px;
}

.about {
    background-color: #2a2e40;
    padding: 80px 60px 40px;
    position: relative;
    z-index: 0;
}

.about a {
    color: #ffca61; /* Sets the link color to the desired orange shade */
    text-decoration: none; /* Optional: Keeps links clean by removing underline */
}

.about a:hover {
    text-decoration: underline; /* Adds an underline on hover for better visual feedback */
}

.about h2,
.about p,
.about ul li {
    color: white; /* Ensures other text elements stay white */
}

.about ul {
    list-style-type: none; /* Removes the bullets from the list */
    padding: 40; /* Removes any default padding from the list */
}

.about ul li {
    margin-left: 0; /* Ensures the list items maintain their original alignment */
}

.about-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.about-tabs button {
    background-color: transparent;
    border: 1px solid #ffca61;
    color: #ffca61;
    padding: 10px 15px;
    cursor: pointer;
}

.about-tabs button:hover {
    background-color: #ffca61;
    color: #1e2230;
}

.about-tabs button.active {
  background-color: #ffca61;
  color: #1e2230;
}

.about-tab-content {
    background-color: #1e2230;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-tab-content h2 {
    font-size: 24px;
    color: #ffca61;
}

.about-tab-content p {
    line-height: 1.6;
}

.about-img {
    text-align: center;
    margin-top: 20px;
}

.about-img img {
    height: 200px;
}

.projects {
    padding: 40px 60px;
}

.projects h2 {
    color: #ffca61;
    padding-bottom: 10px;
}

.project-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
}

.project-item {
  flex: 0 0 auto; /* Don't shrink or stretch */
  scroll-snap-align: start;
  width: 200px;
  background-color: transparent;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.3s, color 0.3s;
}

.project-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 5px;
}

.project-item span {
    display: block;
    font-weight: bold;
    margin-top: 5px;
}

.project-item:hover {
    background-color: #ffca61;
    color: #1e2230;
}

.btn {
    background-color: transparent;
    border: 1px solid #ffca61;
    padding: 10px 20px;
    color: #ffca61;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}
/* Portfolio */
.portfolio {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}
.portfolio-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}
/*
.fullscreen-btn {
    background-color: transparent;
    border: 1px solid #ffca61;
    padding: 10px 20px;
    color: #ffca61;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    margin-top: 10px;
}

.fullscreen-btn:hover {
    background-color: #ffca61;
    color: #1e2230;
}


.fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    padding: 6px 12px;
    color: #ffca61;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    z-index: 2;
}
.fullscreen-btn:hover {
    background-color: #ffca61;
    color: #1e2230;
}
*/

.fullscreen-btn {
  position: absolute;
  top: 15px;     /* ⬇️ down from 10px to 15px */
  right: 15px;   /* ⬅️ inward from 10px to 15px */
  background-color: transparent;
  border: none;
  padding: 8px 15px;
  color: #ffca61;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  z-index: 2;
}

.fullscreen-btn svg {
  width: 22px;   /* 🆙 make the icon larger */
  height: 22px;
  stroke: #ffca61;
  pointer-events: none;
}
.fullscreen-btn:hover {
  background-color: #ffca61;
  color: #1e2230;
}

.fullscreen-btn:hover svg {
  stroke: #1e2230; /* Match the text color */
}






/* Fullscreen Mode - Keep Content Centered */
:fullscreen .portfolio-item iframe {
    width: 80%;
    height: 80vh;
    margin: auto;
    display: block;
}

.portfolio-item {
    background-color: tranparent;
    padding: 20px 30px 20px 20px; /* Top, Right, Bottom, Left */
    width: 35%;
    text-align: left;
    border-radius: 8 px;
    position: relative;
}

.portfolio-item h3 {
    padding-left: 10px; /* Adds padding to push the title slightly to the right */
}

.portfolio-item p {
    padding-left: 10px; /* Adds more padding to the paragraph for further inset */
}

.portfolio-item iframe {
    width: 100%;
    height: 300px;
    border: none;
    max-width: 100%;
}

/* Footer */
footer {
    background: #1a1d29;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.contact {
    background-color: #1e2230;
    padding: 60px;
    color: white;
}

.contact h2 {
    color: #ffca61;
    margin-bottom: 20px;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact label {
    margin: 10px 0 5px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 16px;
}/*
.contact button {
width: fit-content();
background-color: #ffca61;
color: #1e2230;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
}

.contact button:hover {
    background-color: #e0b050;
}
*/
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 50px;
  padding: 10px 0; /* remove left/right padding */
  position: relative;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-track::before,
.carousel-track::after {
  content: '';
  display: block;
  flex: 0 0 5px; /* Ensures they behave like fixed-width items */
  height: 1px; /* optional */
  scroll-snap-align: start; 
  }

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: black;
  color: #ffca61;
  font-size: 4rem;
  padding: 0px ;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}

.carousel-btn.left {
  left: -0px;
}

.carousel-btn.right {
  right: 0px;
}

.carousel-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto; /* avoid jumpy smooth scroll while dragging */
}
.form {
    background-color: #2a2e40;
    padding: 80px 60px 40px;
    position: relative;
    z-index: 0;
    color: white;
   }

.form h2 {
    color: #ffca61;
    margin-bottom: 20px;
}


.thank-you-wrapper a:not(.btn) {
  text-decoration: none;
  background-color: #ffca61;
  color: #1e2230;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.thank-you-wrapper a:not(.btn):hover {
  background-color: #e0b050;
}

.thank-you-wrapper h1 {
            color: #ffca61;
            font-size: 2.5rem;
        }

.thank-you-wrapper p {
            margin: 20px 0;
            font-size: 1.2rem;
         }

/*
 .thank-you-wrapper a:not(.btn) {
  text-decoration: none;
  background-color: #ffca61;
  color: #1e2230;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.thank-you-wrapper a:not(.btn):hover {
  background-color: #e0b050;
}

            
        .thank-you-wrapper h1 {
            color: #ffca61;
            font-size: 2.5rem;
        }
        .thank-you-wrapper p {
            margin: 20px 0;
            font-size: 1.2rem;
        }
        /
        .thank-you-wrapper a {
            text-decoration: none;
            background-color: #ffca61;
            color: #1e2230;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .thank-you-wrapper a:hover {
            background-color: #e0b050;
        }
*/

.testimonial-slider {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 20px;
      padding: 20px 0;
    }
    .testimonial-slider::-webkit-scrollbar {
      display: none;
    }
    .testimonial-card {
      flex: 0 0 80%;
      max-width: 200px;
      scroll-snap-align: start;
      background-color: #2a2e40;
      padding: 20px;
      border-radius: 10px;
      color: white;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    .testimonial-card p {
      font-style: italic;
      margin: 0;
    }
    .testimonial-card span {
      display: block;
      margin-top: 10px;
      font-weight: bold;
      color: #ffca61;
    }
.btn:hover {
    background-color: #ffca61;
    color: #1e2230;
}
