/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Segoe UI, Arial, sans-serif;
  background: #f6f8fb;
  color: #333;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 50px;
  background: #f8fafc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}
.logo span {
  color: #e85d04;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f77f00;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: " ▼";
  font-size: 0.7em;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 10px 18px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #f1f1f1;
}

/* NAV BUTTONS */
.nav-buttons {
  display: flex;
  gap: 15px;
}

.btn-red {
  background: red;
  color: white;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* HERO */
.hero {
  padding: 110px 20px;
  text-align: center;
  background: linear-gradient(120deg, #0a9396, #94d2bd);
  color: white;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
}

/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-decoration: none;
  color: #000;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(10, 147, 150, 0.4);
}

/* SERVICE PAGE */
.service-hero {
  background: #001219;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-content {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  font-size: 18px;
}

/* CONTACT */
form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

form button {
  width: 100%;
  padding: 14px;
  background: #0a9396;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

/* FOOTER */
footer {
  background: #001219;
  color: white;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  /* Mobile dropdown: toggle on click */
  .dropdown-content {
    position: static;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  animation: glow 2.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255,255,255,0.4);
  }
  to {
    text-shadow:
      0 0 20px rgba(255,255,255,0.8),
      0 0 40px rgba(255,140,0,0.8);
  }
}
.stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: #fff;
}

.stat span {
  font-size: 42px;
  font-weight: 800;
}

.stat p {
  margin-top: 8px;
  font-size: 15px;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.plus {
  font-size: 36px;
  margin-left: 3px;
}

/* For Drop Down in contact */

/* FORM GROUP */

.form-group{
    margin-bottom:25px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

/* CUSTOM SELECT */

.custom-select{
    position:relative;
}

.custom-select select{

    width:100%;
    padding:16px 50px 16px 18px;

    border:2px solid #e6e6e6;
    border-radius:14px;

    background:#fff;

    font-size:16px;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    cursor:pointer;

    transition:.3s;
}

/* Hover */

.custom-select select:hover{

    border-color:#ff6b00;

    box-shadow:0 8px 25px rgba(255,107,0,.18);

}

/* Focus */

.custom-select select:focus{

    outline:none;

    border-color:#ff6b00;

    box-shadow:0 0 0 5px rgba(255,107,0,.18);

}

/* Arrow */

.custom-select .arrow{

    position:absolute;

    right:18px;

    top:50%;

    transform:translateY(-50%);

    color:#ff6b00;

    pointer-events:none;

    transition:.3s;

}

.custom-select:hover .arrow{

    transform:translateY(-50%) rotate(180deg);

}


/* Images */
/* ================= IMAGE MARQUEE ================= */

.image-slider{

    overflow:hidden;
    position:relative;
    width:100%;
    margin:40px auto;

}

.slide-track{

    display:flex;
    width:calc(320px * 12);
    animation:scrollImages 30s linear infinite;

}

.slide-track img{

    width:300px;
    height:220px;

    object-fit:cover;

    margin-right:20px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

    transition:.3s;

}

.slide-track img:hover{

    transform:scale(1.05);

}

.image-slider:hover .slide-track{

    animation-play-state:paused;

}

@keyframes scrollImages{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-320px * 6));
    }

}

/* ================= RECENT WORK ================= */

.recent-work{
    padding:80px 0;
}

/* Shiny Heading */

.shine-title{

    font-size:42px;
    font-weight:800;
    text-align:center;
    margin-bottom:15px;

    background:linear-gradient(
        90deg,
        #111 0%,
        #ffffff 20%,
        #ff3b30 40%,
        #ffffff 60%,
        #111 100%
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:shineText 5s linear infinite;

}

@keyframes shineText{

    from{
        background-position:-300%;
    }

    to{
        background-position:300%;
    }

}

.shine-subtitle{

    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:40px;

}

/* Image Slider */

.image-slider{

    overflow:hidden;
    position:relative;
    padding:20px 0;

}

.slide-track{

    display:flex;
    width:max-content;

    animation:scrollImages 30s linear infinite;

}

/* Premium Cards */

.slide-track img{

    width:330px;
    height:230px;

    margin-right:25px;

    object-fit:cover;

    border-radius:18px;

    border:2px solid rgba(255,255,255,.4);

    box-shadow:
        0 15px 35px rgba(0,0,0,.18),
        0 0 20px rgba(255,59,48,.25);

    transition:.45s;

    position:relative;

}

/* Hover */

.slide-track img:hover{

    transform:translateY(-10px) scale(1.05);

    box-shadow:
        0 20px 45px rgba(0,0,0,.25),
        0 0 35px rgba(255,59,48,.45);

}

/* Moving Shine */

.slide-track img::before{
    display:none;
}

/* Shine Overlay */

.slide-track img{
    position:relative;
    overflow:hidden;
}

.slide-track img:hover{
    filter:brightness(1.08);
}

.slide-track img::after{

    content:"";

    position:absolute;

    top:0;
    left:-150%;

    width:60%;
    height:100%;

    transform:skewX(-25deg);

    background:
    linear-gradient(
        rgba(255,255,255,0),
        rgba(255,255,255,.45),
        rgba(255,255,255,0)
    );

    animation:imageShine 4s infinite;

}

@keyframes imageShine{

    100%{
        left:250%;
    }

}

.image-slider:hover .slide-track{

    animation-play-state:paused;

}

@keyframes scrollImages{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}