/* Gradient heading */
  .text-gradient {
    background: linear-gradient(90deg, #ff6600, #ff9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-us h2 {
    color: #222;
  }

  .about-us ul li {
    font-weight: 500;
    color: #444;
  }
    /* Navbar Styling */
    .navbar {
    
      border-bottom: none;
      position: sticky;
      width: 100%;
      top: 0;
      z-index: 1000;
      height: 80px;
      display: flex;
      align-items: center;
      background: rgba(56, 55, 69, 0.88);  /* light orange with opacity */
  backdrop-filter: blur(8px);          /* smooth glass effect */
  border-bottom: none;
    }

    .navbar-brand img {
      height: 120px;
      width: auto;
    }

    .navbar-nav .nav-link {
      margin: 0 10px;
      font-weight: 600;
      color: #ffffff;
      position: relative;
      transition: color 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #ff6600, #ff9933);
      transition: width 0.3s ease;
    }
    .navbar-nav .nav-link:hover {
      color: #ff9933;
    }
    .navbar-nav .nav-link:hover::after {
      width: 100%;
    }

    .navbar-nav .nav-link.active {
      color: #ff6600;
    }

    .btn-login {
      min-width: 120px;
      font-weight: 600;
      padding: 8px 18px;
      border: none;
      background: linear-gradient(90deg, #ff6600, #ff9933);
      color: white;
      transition: 0.3s ease;
      border-radius: 25px;
    }
    .btn-login:hover {
      background: linear-gradient(90deg, #ff9933, #ff6600);
      transform: scale(1.05);
    }
    /* Navbar background with light orange opacity */
.custom-navbar {
  
  backdrop-filter: blur(12px); /* nice blur effect */
  transition: background 0.3s ease-in-out;
}

/* Navbar text color */
.custom-navbar .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #ffebcc !important; /* softer hover effect */
}

/* Button styling */
.btn-login {
  background: #fff;
  color: #ff6600;
  font-weight: bold;
  border-radius: 20px;
  padding: 6px 16px;
  transition: 0.3s;
}

.btn-login:hover {
  background: #ff6600;
  color: white;
}

/* Mobile menu background */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(255, 140, 0, 0.9); /* orange opacity bg */
    padding: 15px;
    border-radius: 10px;
  }
}


    /* Hero Section */
    .hero {
      background: url("herosection.png") center/cover no-repeat;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 20px;
    }

    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive font size */
      font-weight: 700;
      line-height: 1.3;
    }

    .tagline {
      display: inline-block;
      position: relative;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin: 15px auto;
      padding: 10px 0;
    }

    .tagline::before,
    .tagline::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #ff6600, #ff9933);
    }
    .tagline::before { top: 0; }
    .tagline::after { bottom: 0; }

    /* Explore Button Styling */
    .btn-explore {
      margin-top: 20px;
      padding: 10px 25px;
      border: none;
      font-weight: 600;
      font-size: clamp(0.9rem, 2vw, 1.1rem);
      border-radius: 30px;
      background: linear-gradient(90deg, #ff6600, #ff9933);
      color: #fff;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-explore:hover {
      background: linear-gradient(90deg, #ff9933, #ff6600);
      transform: scale(1.08);
      box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
    }

    /* Typing text effect */
    .typing-text {
      font-size: clamp(1.2rem, 3vw, 2rem);
      font-weight: 600;
      color: #ff9933;
      white-space: nowrap;
      overflow: hidden;
      margin: 15px auto;
      border-right: 2px solid #ff9933; /* cursor effect */
      animation: blink 0.7s infinite;
    }

    @keyframes blink {
      50% { border-color: transparent }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .navbar-brand img {
        height: 80px;
      }
      .btn-login {
        min-width: 100px;
        padding: 6px 14px;
      }
    }
/* Ensure anchor scroll doesn’t hide under sticky/fixed navbar */
#about {
  scroll-margin-top: 80px; /* adjust to your navbar height */
}

.about-section {
  position: relative;
  background: url('herosection.png') center/cover no-repeat;
  color: #fff;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* dark overlay so text is readable */
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* Responsive parallax feel on larger screens only */
@media (min-width: 768px) {
  .about-section {
    background-attachment: fixed;
  }
}

/* Heading with orange lines above & below (exactly text width) */
.section-title {
  position: relative;
  display: inline-block;   /* width shrinks to text width */
  padding: 10px 0;         /* space for the lines */
  margin: 0 auto;
  color: #ffffff;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;               /* makes the line exactly as wide as the text box */
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ff9933);
}

.section-title::before { top: 0; }
.section-title::after  { bottom: 0; }

/* Paragraph on dark background */
.about-lead {
  color: #f1f1f1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: soften card hover on dark bg */
.about-section .card {
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}


.footer-card {
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255,140,0,0.4); /* orange glow */
}

.footer h5 {
  color: #ff7b00; /* orange theme from logo */
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  color: #ff7b00; /* orange hover */
  padding-left: 5px;
}


  .work-inquiry {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
  }
  .work-inquiry h2 {
    color: #ff6600;
  }
  .work-inquiry h4 {
    color: #333;
  }
  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  }
  .btn-primary {
    background: #ff6600;
    border: none;
    transition: background 0.3s ease;
  }
  .btn-primary:hover {
    background: #ff6600;
  }

  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
  }
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  }
  .icon {
    transition: transform 0.3s;
  }
  .card:hover .icon {
    transform: scale(1.2);
  }

  .tech-section {
    background: #f9f9f9;
  }

  .tech-logo {
    height: 60px;
    margin: 0 40px;

    transition: transform 0.3s, filter 0.3s;
  }

  .tech-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.2);
  }

  .tech-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .slide-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 20s linear infinite;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
.social-icon {
  font-size: 20px;
  color: #ff6600;  /* your theme orange */
  transition: color 0.3s ease, transform 0.2s ease;
}

.social-icon:hover {
  color: #ff9933;   /* lighter orange on hover */
  transform: scale(1.2);
}
 .services-section {
      padding: 80px 0;
      
    }
    .service-card {
      transition: all 0.3s ease-in-out;
      border-width: 2px !important;
      position: relative;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    .service-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      color: inherit;
      transition: transform 0.3s;
    }
    .service-btn:hover {
      transform: translateX(5px);
    }

    /* Alternate Blue & Orange Borders */
    .border-blue {
      border-color: #0a1a33 !important;
    }
    .border-orange {
      border-color: #ff6600 !important;
    }
    