/* Premium Hero Gradient Background */
.hero-bg{
    background: linear-gradient(180deg, #f5f2e9 0%, #e8d889 100%);
}

/* Smooth transition */
a, button{
    transition: all 0.3s ease;
}

/* ================= LOGO SLIDER ================= */

.logo-slider {
    overflow: hidden;
    position: relative;
  }
  
  .logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
  }
  
  .logo-track img {
    width: 200px;
    height: 80px;
    object-fit: contain;
    margin: 0 40px;
    filter: grayscale(100%);
    transition: 0.3s;
  }
  
  .logo-track img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ================= CREATIVE GOLD CARDS ================= */

.creative-card{
    position: relative;
    padding: 30px;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, #1f1a00, #6b5200);
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .creative-card h3{
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
  }
  
  .creative-card p{
    font-size: 14px;
    opacity: 0.85;
    margin-top: 5px;
  }
  
  .creative-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  }
  
  .icon-circle{
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
  }

  /* ================= LIGHT SERVICE CARDS ================= */

.service-card-light{
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .service-card-light:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  }
  
  .service-icon{
    font-size: 55px;
    margin-bottom: 25px;
    color: #444;
  }
  
  .service-card-light h3{
    font-size: 20px;
    font-weight: 600;
    text-decoration: underline;
    margin-bottom: 12px;
  }
  
  .service-card-light a{
    color: #c27c00;
    font-size: 14px;
  }

  /* ================= WHY SECTION ================= */

.why-card{
    background: #cfd6dc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .why-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }
  
  .why-icon{
    font-size: 35px;
    margin-bottom: 15px;
    color: #f59e0b;
  }
  
  .why-card h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .why-card p{
    font-size: 15px;
    color: #333;
    line-height: 1.6;
  }

  /* ================= RESULT SECTION ================= */

.result-card{
    background: #000;
    color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .result-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  }
  
  .result-card h3{
    font-size: 55px;
    font-weight: 800;
    color: #facc15; /* yellow */
    margin-bottom: 15px;
  }
  
  .result-card h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .result-desc{
    background: linear-gradient(to bottom, #1a1a1a, #2b2b2b);
    padding: 20px;
    border-radius: 6px;
    font-size: 15px;
    color: #ddd;
  }

  /* ================= APPROACH DETAIL SECTION ================= */

.approach-detail{
    background: #eab308; /* gold */
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  
  .approach-detail:hover{
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }
  
  .detail-title{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .detail-list{
    list-style: disc;
    padding-left: 20px;
    line-height: 1.9;
    color: #1f2937;
    font-size: 15px;
  }

  /* ================= FOOTER ================= */

.footer-title{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
  }
  
  .footer-links li{
    margin-bottom: 10px;
  }
  
  .footer-links a{
    color: #ccc;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover{
    color: #facc15;
    padding-left: 5px;
  }
  
  .social-icon{
    width: 40px;
    height: 40px;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover{
    background: #facc15;
    color: black;
  }

  /* ===== DARK FEATURE BOX ===== */

.feature-dark{
    background: #2a2a2a;
    padding: 18px;
    border-radius: 6px;
    color: #ddd;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .feature-dark:hover{
    background: #f97316;
    color: white;
  }