.option {
    font-size: 18px;
    color: #000; /* default black text */
    text-decoration: none;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: color 0.3s ease;
    }
    
    /* Underline animation */
    .option::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #7573cb; /* same hover color */
    transition: width 0.3s ease;
    }

    /* Smooth scroll for anchors */
    html { 
        scroll-behavior: smooth; 
    }


    /* On hover underline expands */
    .option:hover::after {
    width: 100%;
    }

    .option.active::after {
    width: 100%;
    }

    :root{
      --brand-dark:#0f1724;
      --brand-accent:#f59e0b; /* amber */
      --muted:#6c757d;
    }
    .hero_card{
        color: white;
    }
    body{font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;}
    .navbar-brand { font-weight: 700; color: var(--brand-accent) !important; }
    /* Hero */
    .hero {
      min-height: 72vh;
      background: linear-gradient(0deg, rgba(15,23,36,0.65), rgba(15,23,36,0.3)), url('https://res.cloudinary.com/dgax5dtrd/image/upload/v1760164540/banner_2_alyjh6.jpg') center/cover no-repeat;
      display:flex; align-items:center;
      color: #fff;
    }
    .hero .lead { color: #f0f6fb; font-size:1.03rem; }
    .btn-accent{ background:var(--brand-accent); border:none; color:#082032; font-weight:600; }
    /* Services */
    .service-card{ border-radius:10px; transition:transform .25s, box-shadow .25s; }
    .service-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(8,16,36,0.12); }
    /* Projects */
    .project-card{ overflow:hidden; border-radius:8px; }
    .project-card img{ transition: transform .35s ease; }
    .project-card:hover img{ transform: scale(1.06); }
    /* Footer */
    footer{ background:#071027; color:#dbeafe; }
    footer a{ color: #ffd580; text-decoration:none; }
    /* Utility */
    .muted-small{ color:var(--muted); font-size:.95rem; }
    /* Responsive tweak */
    @media (max-width: 767px){
      .hero{ min-height:56vh; padding:4rem 0; }
    }

    .scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .scroll-content {
    display: inline-block;
    animation: scroll 35s linear infinite;
  }
  
  .scroll-content img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s;
  }
  
  .scroll-content img:hover {
    transform: scale(1.05);
  }
  
  /* Smooth continuous scroll animation */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  /* Hover stop effect */
  .scroll-container:hover .scroll-content {
    animation-play-state: paused;
  } 

  .whatsapp_float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 90px; /* Keeps it just above the arrow */
  right: 25px;  /* Right side of the screen */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp_float i {
  margin-top: 14px;
}
.whatsapp_float:hover {
  transform: scale(1.1);
  box-shadow: 2px 2px 12px rgba(0,0,0,0.4);
}

/* Remove caret icon */
.dropdown-toggle::after {
  display: none !important;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0; /* so it aligns nicely */
}

/* Optional: smooth hover background */
.dropdown-menu a:hover {
  background-color: #f2f2f2;
  transition: 0.2s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

footer a:hover { text-decoration:underline; }