 body,
    html {
      margin: 0;
      padding: 0;
      height: 100%;
      overflow-x: hidden;
      font-family: Arial, sans-serif;
      scroll-behavior: smooth;
      scroll-padding-top: 80px
    }

    /* Full background slider */
    .slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      z-index: -1;
    }

    .slider .slide {
      width: 100%;
      height: 100vh;
      background-size: cover;
      background-position: center;
    }

    /* Overlay content */
    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 100px;
    }

    .hero-content h1 {
      font-size: 60px;
      font-weight: bold;
    }

    .hero-content p {
      font-size: 18px;
      max-width: 500px;
    }

    .hero-content .btn {
      margin-top: 20px;
      margin-right: 15px;
      padding: 12px 25px;
      font-weight: bold;
    }

    /* Navbar */
    nav {
      position: absolute;
      top: 0;
      width: 100%;
      padding: 20px 50px;
      z-index: 5;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: 500;
      position: relative;
      padding-bottom: 4px;
    }

    nav .nav-item a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      left: 0;
      bottom: 0;
      background: white;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    .logo {
      width: 100%;
      /* filter: invert(100%); */
    }

    /* Custom Slick Dots + Arrows */
    .slick-dots {
      bottom: 40px;
    }

    .slick-dots li button:before {
      font-size: 12px;
      color: #fff;
      opacity: 0.7;
    }

    .slick-dots li.slick-active button:before {
      color: #fff;
      opacity: 1;
      font-size: 14px;
    }

    .custom-nav {
      position: absolute;
      bottom: 35px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #fff;
      padding: 0 40%;
      font-weight: bold;
      z-index: 3;
    }

    .custom-nav span {
      cursor: pointer;
      position: relative;
    }

    .custom-nav span::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 50px;
      height: 1px;
      background: #fff;
      margin-left: 10px;
      margin-right: 10px;
    }

    .custom-nav .prev::after {
      left: 100%;
    }

    .custom-nav .next::after {
      right: 100%;
    }


    .passion-create-container {
      padding: 20px;
      color: #ffffff;
      font-size: 24px;
      line-height: 1.5;
    }

    .passion-create-container strong {
      font-weight: bold;
    }

    .service-slider {
      margin: 0 -15px;
    }

    .service-slider .slick-slide {
      margin: 0 15px;
    }


    .team-section {
      background-color: #1a1a1a;
      color: #fff;
      padding: 50px 0;
    }

    .team-carousel {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .photographer-card {
      position: relative;
      width: 280px;
      background-color: #0d0d0d;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

      .photographer-card {
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: rotateY(90deg);
  }

  .photographer-card.show {
    opacity: 1;
    transform: rotateY(0deg);
  }

    .photographer-card:hover {
      transform: translateY(-10px);
    }

    .image-wrapper {
      position: relative;
      width: 100%;
      height: 350px;
      overflow: hidden;
    }

    .image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: filter 0.3s ease-in-out;
      filter: grayscale(100%);
    }

    .red-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 0;
      /* Starts with no height */
      background: linear-gradient(to top, #F26522 0%, rgba(255, 0, 0, 0) 100%);

      pointer-events: none;
      transition: height 0.4s ease-in-out;
      /* Animate the height */
    }

    .photographer-card:hover .red-overlay {
      height: 50%;
      /* Adjust this value to control how much is covered */
    }

    .photographer-card:hover .image-wrapper img {
      filter: grayscale(1%);
    }

    .info {
      padding: 20px;
      text-align: center;
    }

    .info h3 {
      margin: 0;
      font-size: 1.5rem;
    }

    .info p {
      color: #bbb;
      margin: 5px 0 20px;
      font-size: 1rem;
    }

    .social-links a {
      color: #fff;
      border: 1px solid #777;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 0.9em;
      /*margin: 0 5px;*/
      transition: background-color 0.3s ease;
    }

    .social-links a:hover {
      background-color: #fff;
      color: #1a1a1a;
    }

    section {
      border-top: 1px solid #333;
      /* dark gray line */
    }


     .ceo-section {
      padding: 60px 0;
      background: #1a1a1a;
      color: #fff;

      --_trans-speed: 300ms;
      --_avatar-size: 4rem;
      --_quote-bg-clr: var(--clr-secondary);
      --_quote-padding: 1rem;
      --_quote-pointer-offset: 1rem;
      --_quote-offset: 1rem;
      /* this is to allow for the bottom arrow indicator*/
      --_quotemarks-size: 60px;
      --_quotemarks-offset-x: -1rem;
      --_quotemarks-offset-y: -2rem;
      --_clip-text: polygon(0 0, 0 0, 0 100%);
      --_clip-text-width: 80px;
      --_dots-size: 1.5rem;
      --_dots-bg-clr: var(--clr-secondary);
      --_dots-inset: 100%;
      --_dots-border-clr: var(--clr-secondary);
      --_scale: 1;

      --_quotemarks-offset-x: -1rem;
      --_quotemarks-offset-y: -1rem;
      --_quotemarks-size: 80px;
      --_quote-padding: 1rem 1.5rem 3rem 3rem;
      --_box-clip-start-x: 100px;
      --_clip-text: polygon(0 0, 70% 0, 0 100%);
    }

    .ceo-section h5 {
      color: #e63946;
      font-size: 14px;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .ceo-section h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 30px;
    }


    *,
    ::before,
    ::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --clr-bg: #222;
      --clr-primary: #f5f5f5;
      --clr-secondary: #075985;
    }

    .quotes {
      --_box-clip: polygon(var(--_box-clip-start-x) 0,
          100% 0,
          100% calc(100% - var(--_quote-offset)),
          calc(100% - var(--_quote-pointer-offset)) calc(100% - var(--_quote-offset)),
          calc(100% - (var(--_quote-pointer-offset) + 1rem)) 100%,
          calc(100% - (var(--_quote-pointer-offset) + 2rem)) calc(100% - var(--_quote-offset)),
          0 calc(100% - var(--_quote-offset)));
      display: grid;
      place-content: center;
      grid-template-areas: 'stack';
      width: 100%;
      transition: width var(--_trans-speed) ease-in-out;
    }

    .quotes>article {
      grid-area: stack;
      transition: all 300ms;
      margin-block-end: 1rem;
    }

    .quotes .clip {
      height: 100%;
      width: var(--_clip-text-width);
      shape-outside: var(--_clip-text);
      float: left;
      display: block;
    }

    .quotes blockquote {
      margin-bottom: 1rem;
      text-align: right;
      transition: scale var(--_trans-speed) ease-in-out;
      scale: var(--_scale, 0);
      display: flex;
    }

    /* quote mark*/
    .quotes blockquote::before {
      content: '';
      position: absolute;
      top: var(--_quotemarks-offset-y);
      left: var(--_quotemarks-offset-x);
      z-index: 2;
      width: var(--_quotemarks-size);
      height: var(--_quotemarks-size);
      transition: translate, opacity, top;
      transition-timing-function: ease-in-out;
      transition-rudarion: var(--_trans-speed);
      transition-delay: var(--_trans-delay-quotes, 0ms);
      opacity: var(1, 0);
      scale: var(--_scale, 0);
      background-image: url('data:image/svg+xml,<svg fill="white" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><title>quote</title><path d="M9.563 8.469l-0.813-1.25c-5.625 3.781-8.75 8.375-8.75 12.156 0 3.656 2.688 5.375 4.969 5.375 2.875 0 4.906-2.438 4.906-5 0-2.156-1.375-4-3.219-4.688-0.531-0.188-1.031-0.344-1.031-1.25 0-1.156 0.844-2.875 3.938-5.344zM21.969 8.469l-0.813-1.25c-5.563 3.781-8.75 8.375-8.75 12.156 0 3.656 2.75 5.375 5.031 5.375 2.906 0 4.969-2.438 4.969-5 0-2.156-1.406-4-3.313-4.688-0.531-0.188-1-0.344-1-1.25 0-1.156 0.875-2.875 3.875-5.344z"></path></g></svg>');
      background-repeat: no-repeat;
    }


    .quotes blockquote>p {
      position: relative;
      font-weight: 300;
      font-size: 0.9rem;
      line-height: 1.5;
      padding: var(--_quote-padding);
      isolation: isolate;
      background: var(--_quote-bg-clr);
      clip-path: var(--_box-clip);
      text-wrap: balance;
    }

    .quotes .user {
      display: flex;
      align-items: start;
      gap: 1rem;
      justify-content: end;
      text-align: right;
    }

    .quotes .user * {
      transition:
        translate var(--_trans-speed) ease-in-out,
        opacity var(--_trans-speed) ease-in-out,
        scale var(--_trans-speed) ease-in-out;
      ;
    }

    /* user - name */
    .quotes .user p:first-child {
      font-size: 1.1rem;
      color: var(--clr-primary);
      letter-spacing: 0.2rem;
      text-transform: uppercase;
      translate: var(--_translate, 0 2rem);
      transition-delay: var(--_trans-delay-name, 0ms);
    }

    /* user - role */
    .quotes .user p:last-child {
      font-weight: 300;
      font-size: .8rem;
      color: var(--clr-secondary);
      translate: var(--_translate, 0 2rem);
      transition-delay: var(--_trans-delay-role, 0ms);
    }

    /* user - image*/
    .quotes .user img {
      border-radius: 2px;
      border: 1px solid var(--clr-primary);
      width: var(--_avatar-size, 60px);
      height: var(--_avatar-size, 60px);
      object-fit: cover;
      transition-delay: var(--_trans-delay-img, 0ms);
      scale: var(--_scale, 0);
    }

    .processimg {
      filter: invert(100%);
      width: 100%;
    }

  .processimg {
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: rotateY(90deg);
  }

  .processimg.show {
    opacity: 1;
    transform: rotateY(0deg);
  }

    .process-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .process-list li {
      padding: 15px 0;
      border-bottom: 1px solid #333;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: all 0.3s;
    }

    .process-list li::before {
      content: "↗";
      margin-right: 10px;
    }

    .process-list li.active {
      color: #e63946;
    }

    .card-box {
      position: relative;
      overflow: hidden;
      height: 200px;
    }

    .process-card {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100%;
      background: #222;
      padding: 20px;
      opacity: 0;
      transition: all 0.5s ease;
    }

    .process-card.active {
      left: 0;
      opacity: 1;
    }

    .process-card.exit-left {
      left: -100%;
      opacity: 0;
    }

    .contact-section {
            background: #1a1a1a;
color: #fff;
      padding: 80px 0;
      position: relative;
      z-index: 1;
    }

    /* Dark input with rounded corners */
.custom-input {
  background: #222;
  border: none;
  color: #fff;
  padding-left: 40px; /* space for icon */
  border-radius: 8px;
}

.custom-input::placeholder {
  color: #888;
}

/* Icon inside inputs */
.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: orange;
  font-size: 18px;
  pointer-events: none;
}

/* Textarea */
textarea.custom-input {
  min-height: 120px;
  resize: none;
}

/* Button styling */
.btn-send {
  background: orange;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  border: none;
}

.btn-send:hover {
  background: #e69500;
}

     .contact-box {
      background: linear-gradient(180deg, #1a1a1a, #111);
      padding: 40px;
      border-radius: 8px;
      max-width: 900px;
      margin: 0 auto 60px;
      text-align: center;
    }

    .contact-box h2 {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .contact-box p {
      color: #ffffff;
      margin-bottom: 30px;
    }
 
    /* .form-control {
      background: transparent;
      border: none;
      border-bottom: 1px solid #333;
      border-radius: 0;
      color: #fff;
      padding: 10px 0;
    }

    .form-control:focus {
      box-shadow: none;
      border-color: #e63946;
    }

    textarea.form-control {
      resize: none;
      height: 100px;
    }

    .btn-send {
      background: transparent;
      border: 1px solid #666;
      color: #fff;
      padding: 10px 25px;
      margin-top: 20px;
      transition: 0.3s;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: bold;
    }

    .btn-send:hover {
      background: #e63946;
      border-color: #e63946;
    } */

    /* Contact Info */
    .contact-info {
      text-align: center;
      margin-top: 40px;
    }

    .contact-item {
      text-align: center;
      color: #fff;
    }

    .contact-item i {
      background: #F26522;
      color: #fff;
      border-radius: 50%;
      padding: 12px;
      font-size: 18px;
      margin-bottom: 15px;
      display: inline-block;
    }

    .contact-item h5 {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .contact-item p {
      margin-bottom: 8px;
      color: #ffffff;
    }

    .contact-item a {
      font-size: 13px;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
    }

    .contact-item a:hover {
      color: #F26522;
    }
    .contact-box{

    z-index: 99;
    position: relative;

    }
    footer {
      background: #0d0d0d;
      padding-top: 60px;
      text-align: center;
    }

    /* Semicircle */
    .footer-arc {
      border-top: 1px solid #333;
      border-left: 1px solid #333;
      border-right: 1px solid #333;
      border-radius: 50% 50% 0 0;
      padding: 50px 20px;
      margin: 0 auto;
      max-width: 600px;
      position: relative;
    }

    .footer-logo {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .footer-newsletter p {
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
      color: #ccc;
    }

    .newsletter-form {
      display: flex;
      justify-content: center;
    }

    .newsletter-form input {
      background: #111;
      border: 1px solid #333;
      color: #fff;
      padding: 10px;
      width: 250px;
      border-right: none;
    }

    .newsletter-form button {
      background: #e63946;
      color: #fff;
      border: none;
      padding: 10px 20px;
      font-size: 13px;
      text-transform: uppercase;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .newsletter-form button:hover {
      background: #c62828;
    }

    /* Footer Links */
    .footer-links {
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
      text-transform: uppercase;
      font-size: 13px;
      letter-spacing: 1px;
      color: #ccc;
    }

    .footer-links li:hover {
      color: #e63946;
      cursor: pointer;
    }

    /* Bottom Bar */
    .footer-bottom {
      border-top: 1px solid #222;
      padding: 15px 0;
      margin-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #aaa;
    }

    .social-icons{
      width:50%;
      text-align: end;
    }

    .social-icons i {
      background: #222;
      color: #fff;
      margin-left: 8px;
      padding: 8px;
      border-radius: 50%;
      transition: 0.3s;
    }

    .social-icons i:hover {
      background: #e63946;
    }


      .service-card {
      min-height: 200px;
      /* adjust value as needed */
      background: #1a1a1a;
      /* optional, to make it stand out */
      border-radius: 10px;
      transition: transform 0.3s ease;
      border-radius: 20px;
      color: #fff;
    }

  .service-card {
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    transform: rotateY(90deg);
  }

  .service-card.show {
    opacity: 1;
    transform: rotateY(0deg);
  }

    .service-card img {

      filter: invert(100%);
      width: 30%;
      position: relative;
      left: 0;
      transition: transform 0.5s ease-in-out;

      /* transform: translateY(-8px); */
    }

    .service-card:hover img {
      animation: zoomInOut 1.5s infinite ease-in-out;
    }

    @keyframes zoomInOut{
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.2);
    }
    }

    .service-card:hover {
      background: #F26522;
      color: #ffffff;
      /* red text on hover */
    }

    .service-card:hover .icon i {
      color: #F26522;
    }

    .service-card .icon i {
      color: #fff;
      transition: color 0.3s ease;
    }
    .service-slider .container{
        position: relative !important;
    }
    .service-slider .row{
        position: relative;
       z-index: 99;
    }

    .description{
          font-size: 16px;
    text-align: left;
    }


    .process-section {
      background-color: #1a1a1a;
      color: #fff;
      padding: 50px 0;
    }

    .hero-section {
      position: relative;
      height: 100vh;
      display: flex;
      background: url('../images/Image_Web.jpg') center/cover no-repeat;/*url('https://picsum.photos/1600/900?blur=4') center/cover no-repeat*/;
    }

    .hero-overlay {
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(to right, rgba(17,17,17,0.8), rgba(0,0,0,0.5));
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 850px;
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
    }

    .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 4%;
}

/* Large devices / desktops (default already covers desktops) */

/* Tablets (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-content {
        height: 80vh;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn-custom {
        padding: 0.6rem 1.8rem;
        font-size: 0.95rem;
    }
}




    .hero-content p:first-child {
      letter-spacing: 3px;
      animation: slideInDown 1s ease forwards;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.3;
      margin: 20px 0;
      animation: fadeInText 2s ease forwards;
    }
    .color-orange{
            color: #F26522;

    }

    .hero-content h1 span {
      color: #F26522;
      position: relative;
    }

    .hero-content h1 span::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      height: 3px;
      width: 100%;
      background: #ffcc00;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .hero-content h1 span:hover::after {
      transform: scaleX(1);
    }

    .hero-content p:last-child {
      font-size: 1.1rem;
      opacity: 0.8;
      animation: fadeIn 2.5s ease forwards;
    }

    .btn-custom {
      background: #F26522;
      color: #fff;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 0;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      background: linear-gradient(135deg, #F26522, #ff9800);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 20px rgba(255, 87, 34, 0.6);
    }

    .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      width: 25px;
      height: 40px;
      border-radius: 25px;
      animation: bounce 2s infinite;
      z-index: 99;
    }


    .hero-section .btn-custom{
        border-radius: 0;
        width: 25%;
    }

    .contact-section{
      padding-top: 8% !important;
    }

    /* Mobile devices (up to 767px) */
@media (max-width: 767px) {
    .hero-content {
        height: 70vh;
        padding-left: 10px;
        padding-right: 10px;
        justify-content: flex-start;
        padding-top: 6rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content .btn-custom {
        padding: 0.5rem 1.5rem;
        font-size: 0.85rem;
    }
    .hero-section .btn-custom {
        border-radius: 0;
        width: 40%;
    }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: #111; /* change to any color you like */
    padding: 1rem;          /* optional: add some padding */
  }
  .navbar-nav .nav-link {
    color: #fff;            /* ensure links are visible */
  }
  .navbar-nav .nav-link:hover {
    color: #ddd;            /* hover effect */
  }
}

    /* Animations */
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInDown {
      0% { opacity: 0; transform: translateY(-30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInText {
      0% { opacity: 0; letter-spacing: -5px; }
      100% { opacity: 1; letter-spacing: normal; }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translate(-50%,0); }
      40% { transform: translate(-50%,-10px); }
      60% { transform: translate(-50%,-5px); }
    }

    @keyframes scrollAnim {
      0% { opacity: 1; top: 8px; }
      100% { opacity: 0; top: 22px; }
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2rem;
      }
    }

    .btn-custom {
      background-color: #F26522;
      border: none;
      padding: 10px 25px;
      font-weight: 600;
      color: #fff;
      transition: 0.3s;
    }
    .btn-custom:hover {
      background-color: #e04a00;
    }

    /* Scroll down icon */
    .scroll-down {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #F26522;
      width: 80px;
      height: 80px;
      border-radius: 50%;
    }
    .scroll-down {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .scroll-down span {
      width: 14px;
      height: 14px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      transform: rotate(-45deg);
      opacity: 0;
      animation: arrowAnim 1.5s infinite;
    }

    .scroll-down span:nth-child(1) {
      animation-delay: 0s;
    }
    .scroll-down span:nth-child(2) {
      animation-delay: 0.3s;
    }
    .scroll-down span:nth-child(3) {
      animation-delay: 0.6s;
    }

    @keyframes arrowAnim {
      0% { opacity: 0; transform: rotate(-45deg) translateY(-5px); }
      50% { opacity: 1; transform: rotate(-45deg) translateY(0); }
      100% { opacity: 0; transform: rotate(-45deg) translateY(5px); }
    }

    /* Navbar */
    .navbar {
      transition: background-color 0.4s ease, box-shadow 0.4s ease;
    }

    .navbar.scrolled {
      background-color: #111 !important; /* dark background */
      box-shadow: 0 2px 10px rgba(0,0,0,0.4);
    }

    .navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85) !important; /* dark background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);        /* subtle shadow */
}


    .step:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0px 8px 25px rgba(255, 102, 0, 0.4);
      background: rgba(255, 102, 0, 0.1);
    }

    .step:hover i {
      color: #ffcc00;
      transform: rotate(10deg);
    }

        @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* --- Typing effect --- */
.typing-text span {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 0.05s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink {
  50% { border-color: transparent }
}

/* --- Process Steps --- */
.process-flow {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.step {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.step i {
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 10px;
  display: block;
}

.step.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-section-about {
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hero-section-about.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991.98px) {
.hero-section-about {
  text-align: center;
  opacity: 1;
  transform: translateY(50px);
  transition: all 0.8s ease;
}
}

.our-company{

text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.our-company.show {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
}

.lines {
  background-color: #000;
  /* height: 100vh;
  overflow: hidden; */
  opacity: .2;
  position: absolute;
}

.line {
  height: 200px;
  transform: skewX(-20deg);
  width: 10px;
}

.one {
  animation: animation 80s linear infinite alternate;
  box-shadow: -306px 955px 4px #00ff7b, 1926px 120px 3px #00ff7b, 1040px 102px 5px #00ff7b, 1446px 496px 4px #00ff7b, 241px 827px 5px #00ff7b, 1850px 695px 3px #00ff7b, -410px 134px 5px #00ff7b, 843px 556px 5px #00ff7b, 1709px 327px 5px #00ff7b, 1032px 554px 1px #00ff7b, -315px 142px 1px #00ff7b, 1367px 72px 1px #00ff7b, 1279px 891px 3px #00ff7b, 511px 634px 2px #00ff7b, 489px 888px 2px #00ff7b, -144px -474px 2px #00ff7b, 322px 71px 2px #00ff7b, -265px 950px 1px #00ff7b, -427px 639px 2px #00ff7b, 1099px 366px 4px #00ff7b, 917px -22px 3px #00ff7b, 1652px -327px 3px #00ff7b, 843px 934px 5px #00ff7b, 1254px 391px 1px #00ff7b, 1970px 682px 1px #00ff7b, 610px 380px 3px #00ff7b, 0px -42px 4px #00ff7b, 516px 183px 3px #00ff7b, 1885px 995px 2px #00ff7b, 6px -55px 2px #00ff7b, 74px 560px 5px #00ff7b, 328px 316px 4px #00ff7b, -210px 462px 4px #00ff7b, 1063px 270px 2px #00ff7b, 712px -326px 2px #00ff7b, 34px -202px 3px #00ff7b, 1685px 849px 3px #00ff7b, 919px 945px 4px #00ff7b, 764px 249px 4px #00ff7b, 223px -466px 3px #00ff7b, 1479px -440px 3px #00ff7b, 296px 949px 3px #00ff7b, 606px -381px 4px #00ff7b, 325px 883px 1px #00ff7b, -214px 995px 2px #00ff7b, 807px -493px 2px #00ff7b, 1131px -239px 1px #00ff7b, -9px 210px 2px #00ff7b, 440px -309px 2px #00ff7b, 1835px -252px 4px #00ff7b, 1987px -55px 2px #00ff7b;
}

.two {
  animation: animation 80s linear infinite alternate-reverse;
  box-shadow: 1737px -24px 3px #00ff7b, 1934px 262px 2px #00ff7b, 1163px 550px 3px #00ff7b, 482px 865px 3px #00ff7b, 175px -343px 5px #00ff7b, 1496px 842px 5px #00ff7b, 35px -250px 5px #00ff7b, -276px -497px 3px #00ff7b, 418px 677px 2px #00ff7b, 603px -55px 2px #00ff7b, 255px 880px 3px #00ff7b, 427px 748px 4px #00ff7b, 1930px -238px 5px #00ff7b, 1805px 76px 3px #00ff7b, 1178px 531px 5px #00ff7b, 1099px -407px 4px #00ff7b, -105px -59px 1px #00ff7b, 1767px -110px 1px #00ff7b, 482px 68px 1px #00ff7b, 105px 118px 2px #00ff7b, 222px -77px 2px #00ff7b, 1907px 329px 3px #00ff7b, 1229px 282px 2px #00ff7b, 369px 63px 3px #00ff7b, 1294px 649px 4px #00ff7b, 645px 690px 5px #00ff7b, 970px 193px 2px #00ff7b, 1954px -380px 5px #00ff7b, 1228px 355px 4px #00ff7b, -318px 469px 5px #00ff7b, 781px -124px 1px #00ff7b, -331px -216px 4px #00ff7b, -68px -480px 5px #00ff7b, 1639px -219px 4px #00ff7b, 1299px -384px 5px #00ff7b, 942px 136px 5px #00ff7b, 1908px 880px 1px #00ff7b, -396px -469px 3px #00ff7b, 670px 41px 4px #00ff7b, 1738px -285px 1px #00ff7b, 707px -331px 2px #00ff7b, 1991px -435px 4px #00ff7b, -394px 930px 3px #00ff7b, 61px 986px 3px #00ff7b, 920px -8px 1px #00ff7b, -352px -181px 5px #00ff7b, 116px 930px 1px #00ff7b, -235px -467px 4px #00ff7b, -214px 102px 3px #00ff7b, 664px 165px 3px #00ff7b, -151px 830px 5px #00ff7b;
}

.overlay {
  background-image: radial-gradient(#193326, black);
  height: 100vh;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100vw;
}

@keyframes animation {
  0% {
    opacity: 0.7;
    transform: skewX(-20deg) translate(0px, 0px);
  }
  25% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
    transform: skewX(-20deg) scale(1.5);
  }
  100% {
    opacity: 0.3;
    transform: skewX(-20deg) scale(0.7) translate(150px, 200px);
  }
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
}

.navbar-brand img {
  max-height: 50px;
}

@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .btn-custom {
    margin-top: 1rem !important; /* responsive mt */
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}