body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #eee;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

header {
  background: #121212;
  padding: 1rem 0;
  border-bottom: 1px solid #333;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  color: #ff6600;
}

nav {
  float: right;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.hero {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(to right, #1f1f1f, #121212);
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .btn {
  background: #ff6600;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.portfolio .btn {
  background: #ff6600;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
 /* margin-bottom: 10px; */
  text-decoration: none;
  font-weight: bold;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1b1b1b;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #333;
}

.card h3 {
  color: #ff6600;
}

form input,
form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background: #222;
  color: #fff;
}

form button {
  background: #ff6600;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: bold;
  cursor: pointer;
}

footer {
  background: #121212;
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #333;
}
/* Basic nav styling */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Mobile menu toggle button */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff6600;
}

/* Hide nav and show toggle on small screens */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #121212;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    border-top: 1px solid #333;
  }

  nav a {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #222;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    float: right;
  }
}

/* Hamburger (☰) Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ff6600;
}

/* Close (✖) Icon */
.close-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: #ff6600;
  display: none;
}

/* Fullscreen Nav Styling for Mobile */
@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    font-size: 24px;
    color: #fff;
    padding: 1rem;
    text-decoration: none;
    border-bottom: 1px solid #222;
  }

  .menu-toggle {
    display: block;
    z-index: 1000;
  }

  .navbar.active .close-icon {
    display: block;
  }
}
/* Hover effect for nav links (both desktop and mobile) */
nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Slide on hover */
nav a:hover {
  transform: translateX(5px);
  color: #ff6600;
}
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1b1b1b;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #333;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 0 transparent;
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 20px rgba(255, 8, 0, 0.2);
  border-color: #ff6600;
}

/* Image inside each card */
.card img {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
  object-fit: contain;
}
.portfolio {
  padding: 4rem 0;
  background-color: #111;
  color: #eee;
  text-align: center;
}

.portfolio .subtitle {
  color: #aaa;
  margin-bottom: 1rem;
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.portfolio-item {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateX(-6px); 
  box-shadow: 0 12px 20px rgba(223, 52, 52, 0.15);
  border-color: #ff6600;
}

.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 180px;
  margin-bottom: 1rem;
}

.portfolio-item h3 {
  color: #ff6600;
  margin-bottom: 0.5rem;
}

.portfolio-item p {
  color: #ccc;
  font-size: 0.95rem;
}
.view-more {
  margin-top: 2rem;
  text-align: center;
}

.btn-view-more {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #ff6600;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-view-more:hover {
  background-color: #d3d3d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(255, 8, 0, 0.2);
}
.about {
  padding: 4rem 0;
  background-color: #121212;
  color: #eee;
}

.about .intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  text-align: center;
  color: #ccc;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 400px;
}

.about-text h3 {
  color: #ff6600;
  margin-top: 1.5rem;
}

.about-text p {
  color: #ccc;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.about-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-text ul li {
  margin-bottom: 0.5rem;
  color: #aaa;
  padding-left: 1.2rem;
  position: relative;
}

.about-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 20px #ff6600;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6600;
  margin-bottom: 1rem;
}

.about .intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-text h3 {
  color: #ff6600;
  font-size: 1.6rem;
  margin-top: 2rem;
  text-align: center;
}

.about-text p {
  color: #ccc;
  line-height: 1.7;
  margin-top: 1rem;
  text-align: center;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 500px;
  padding: 1rem;
}

.about-text ul {
  list-style: none;
  margin-top: 1.5rem;
  padding-left: 0;
}

.about-text ul li {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff6600;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.95rem;
  color: #ddd;
}

.about-image {
  flex: 1 1 350px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(221, 92, 6, 0.1);
}
.contact {
  padding: 4rem 0;
  background: #0d0d0d;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
}

.contact button {
  background: #ff6600;
  color: #000;
  padding: 0.75rem;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: #d3d3d3;
  transform: translateY(-2px);
}
.contact {
  padding: 4rem 0;
  background: #0d0d0d;
  text-align: center;
}

.contact .section-title {
  margin-bottom: 2rem;
  color: #ff6600;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: #161616;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 255, 200, 0.05);
}

.contact input,
.contact textarea {
  padding: 0.9rem 1.2rem;
  background: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #ff6600;
  outline: none;
}

.contact button {
  background: #ff6600;
  color: #000;
  padding: 0.9rem 1.5rem;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px; /* Rounded button */
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact button:hover {
  background: #d3d3d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 8, 0, 0.2);
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(145deg, #0d0d0d, #121212);
  color: #fff;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2; /* ensure text stays above background objects */
}

.hero .btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  background: #ff6600;
  color: #000;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background: #d3d3d3;
  transform: translateY(-2px);
}

/* === Animated Background Objects === */

.hero-bg {
   position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("https://th.bing.com/th/id/R.686e74897db0894b0ca8d4fb292bd3a2?rik=efKCgmIsBreA9Q&riu=http%3a%2f%2ffloridadocumentimaging.com%2fwp-content%2fuploads%2f2021%2f12%2fThe-Evoluiton-of-Analytics-Part-II-1024x680-Web.png&ehk=CtR1gMOpJ77NR%2byOcjkBq6xt26VeU9q921WUiZQQX3Y%3d&risl=&pid=ImgRaw&r=0") no-repeat center center/cover;
  filter: blur(6px) brightness(0.6);
  z-index: -1;
}

.circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  background: #ff6600;
  animation: float 12s infinite ease-in-out;
}

/* Different sizes, positions, delays */
.circle1 {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle2 {
  width: 250px;
  height: 250px;
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.circle3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 45%;
  animation-delay: 4s;
}

/* Floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

.footer, section {
      padding: 20px;
      text-align: center;
    }
.footer a:hover {
  color: #ff6600;
  transform: translateX(5px);
}
.footer a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s ease;
   display: inline-block;
 /* transition: color 0.3s ease; */
}
.footer-links li::before,
.footer-legal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff6600; /* vertical line color */
}
.footer {
      background: #111;
      color: #aaa;
      font-size: 0.9rem;
      padding: 20px;
    }


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: left; /* ensures inner texts align left */
}

.footer h3, .footer h4 {
  color: #fff;
}

.footer-links ul,
.footer-legal ul {
  list-style: none; /* remove default bullets */
  padding: 0;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px; /* spacing for vertical line */
}
.social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start; /* left aligned instead of center */
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.tags {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  background-color: #eef2f7;
  color: #333;
  font-size: 0.9em;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.tag:hover {
  background-color: #dbe9ff;
  cursor: default;
}
.what-you-get {
  background: #f9faff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #222;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #ff6600;
  letter-spacing: 1.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 12px 28px rgba(0, 123, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(223, 68, 7, 0.3);
}

.icon {
  font-size: 3rem;
  color: #ff6600;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}
