:root {
    --navy: #0b1028;
    --gold:   #D4AF37;
    --white: #ffffff;
    --gray: #b5b8c5;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
}


/* hero section  */
.hero-section {
    min-height: 90vh;
    background: var(--white);
    padding-top: 0px;
    padding-bottom: 80px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201,162,77,0.5);
    border-radius: 50px;
}

/* Title */
.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
}

/* Gold Highlight */
/* .text-gold {
    color: var(--gold);
} */
.gold {
    /* color: var(--gold); */
    color: #ffc107 !important;
}
.text-gold {
    color: #ffc107 !important;
}
/* Subtitle */
.hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

/* Buttons */
.hero-actions .btn-dark {
    background: var(--navy);
    border: none;
}

.hero-actions .btn-outline-dark {
    border: 2px solid var(--navy);
    color: var(--navy);
}

.hero-actions .btn-outline-dark:hover {
    background: var(--navy);
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}


/* servises section  */



























.black{
    background: var(--black);
    
}
.text-green { color: var(--gold); }

.section { padding: 90px 0; }
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .hover-scale:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
  }
/* Buttons */
.btn-green {
    background: var(--wa-green);
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-green:hover {
    background-color: #1ebc55;
      color: var(--white);
    
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(37, 211, 102, 0.4);
}

/* Cards hover */
.card-hover, .testimonial-card, .reason-card, .timeline-content, .process-card {
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    border-radius: 15px;
}
.card-hover:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }

/* Testimonial cards */
.testimonial-card {
    background: #fff;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.testimonial-card img { object-fit: cover; border: 2px solid var(--gold); }
.testimonial-card p { font-size: 0.95rem; line-height: 1.6; }

/* Reason cards */
.reason-card { background: #fff; }
.reason-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* Timeline */
.timeline {
    position: relative;
    margin: 40px 0;
    padding: 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.timeline-item {
    padding: 20px 30px;
    position: relative;
    width: 50%;
    animation: fadeInUp 1s ease forwards;
}
.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; text-align: left; }
.timeline-content { background: #fff; padding: 20px; display: inline-block; min-width: 200px; }
.timeline-content:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}
.timeline-item.left::before { right: -10px; }
.timeline-item.right::before { left: -10px; }
.timeline-item::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background: var(--gold);
    top: 28px;
    z-index: 0;
}
.timeline-item.left::after { right: 10px; animation: arrowLeft 1s infinite alternate; }
.timeline-item.right::after { left: 10px; animation: arrowRight 1s infinite alternate; }

/* Horizontal scroll process cards */
.process-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
}
.process-card {
    min-width: 280px;
    cursor: pointer;
    flex: 0 0 auto;
}
.process-card.active {
    transform: scale(1.08);
    box-shadow: 0 25px 35px rgba(0,0,0,0.25);
    border: 2px solid var(--gold);
    background: #222;
    color: var(--white);
}
.process-card:hover { transform: scale(1.05); box-shadow: 0 20px 30px rgba(0,0,0,0.2); }
.process-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
    transition: 0.3s;
}
.process-nav:hover { background: #b28f3c; transform: scale(1.1); }
.process-nav.left { left: -20px; }
.process-nav.right { right: -20px; }

/* Scrollbar */
.process-scroll::-webkit-scrollbar { height: 8px; }
.process-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.process-scroll::-webkit-scrollbar-track { background: var(--white); }

/* Subheadings */
.text-dark-50 { color: var(--dark) !important; }

/* Misc */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
}
footer { background: var(--black); color: #bbb; }
footer a { color: #bbb; text-decoration: none; display: block; }

/* Animations */
@keyframes fadeInUp { 0% { opacity:0; transform:translateY(20px);} 100% { opacity:1; transform:translateY(0);} }
@keyframes arrowLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-5px);} }
@keyframes arrowRight { 0% { transform: translateX(0); } 100% { transform: translateX(5px);} }

/* Responsive */
@media screen and (max-width: 767px) {
    .timeline-item, .timeline-item.left, .timeline-item.right {
        width: 100%;
        left: 0 !important;
        text-align: left;
        margin-left: 20px;
        margin-bottom: 40px;
    }
    .timeline-item::before { left: -30px; }
    .timeline-item::after { display: none; }
    .timeline::after { left: 20px; }
    .process-nav { display: none; }
}





.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollTestimonials 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-150%);
  }
}

.testimonial-card {
  min-width: 340px;
  max-width: 340px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  color: #fff;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 1rem 2.5rem rgba(37,211,102,0.25);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author span {
  font-weight: 600;
  color: #fff;
}


/* <!-- 7. WHY GOLDFLARE DIGITAL --> */
.reason-card {

  border-radius: 18px;
  padding: 35px 25px;
  transition: all 0.35s ease;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1rem 2.5rem rgba(199, 211, 37, 0.25); /* green glow */
  
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: rgba(37, 211, 102, 0.15); */
  margin: 0 auto;
  /* color: #25D366; */
}

.lang-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: #25D366;
  color: #111;
  font-size: 12px;
  font-weight: 600;
}
.reason-card p {
  color: #ccc;
}


/* <!-- OUR SIMPLE PROCESS --> */
.process-card {
  /* background: #111;  */
  border-radius: 18px;
  padding: 35px 25px;
  position: relative;
  transition: all 0.35s ease;
  /* border: #002e91 solid !important; */
  height: 100%;
  /* color: #fff; */
}

.process-card:hover {
  box-shadow: 0 1rem 2.5rem #ffc107; /* green glow */
  transform: translateY(-6px);
}

.process-icon {
  width: 70px;
  height: 70px;
  /* background: rgb(179, 211, 37); */
  color: #b8943f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  /* background: rgba(37, 211, 102, 0.25); */
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-weight: 700;
  font-size: 16px;
  color: #002e91;
  /* opacity: 0.2; */
}


/* HERO SECTION */
.hero-section {
    min-height: 90vh;
    background: var(--white);
    padding-top: 0px;
    padding-bottom: 80px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--gold);
    border: 1px solid rgba(201,162,77,0.5);
    border-radius: 50px;
}

/* Title */
.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
}

/* Gold Highlight */
.text-gold {
    color: var(--gold);
}

/* Subtitle */
.hero-subtitle {
    max-width: 720px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray);
}

/* Buttons */
.hero-actions .btn-dark {
    background: var(--navy);
    border: none;
}

.hero-actions .btn-outline-dark {
    border: 2px solid var(--navy);
    color: var(--navy);
}

.hero-actions .btn-outline-dark:hover {
    background: var(--navy);
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}






















