* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f5fbff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.header {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;          /* hamburger için yardımcı olur */
    flex-wrap: nowrap;           /* öğeler alta inmesin */
}

.logo {
   font-size: 22px;
    font-weight: 700;
    color: #0a4da2;
    white-space: nowrap;         /* yazı kırılmasın */
    flex-shrink: 0;              /* logo küçülmesin */
}

.logo span {
    color: #2bbfd9;
}

.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.nav a:hover {
    color: #2bbfd9;
}

/* Mobil medya sorgusu (mevcut olanı güncelle) */
@media (max-width: 768px) {
    .header-inner {
        height: 70px;            /* mobil için biraz daha düşük yükseklik */
        padding: 0 10px;
    }

    .hamburger {
        display: flex;           /* göster */
        order: 3;                /* en sağda olsun */
    }

    .nav {
        position: fixed;
        top: 70px;               /* header yüksekliğine göre ayarla */
        right: -100%;
        background: #ffffff;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 30px;
        transition: right 0.4s ease;
        box-shadow: -8px 0 25px rgba(0,0,0,0.15);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        margin: 20px 0;
        font-size: 20px;
        font-weight: 600;
    }

    .btn-primary {
        display: none;           /* teklif al butonunu mobilde gizle */
    }

    .logo {
        font-size: 20px;         /* biraz küçült, yer kalsın */
    }
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
/* BUTTONS */
.btn {
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: #2bbfd9;
    color: #fff;
}

.btn-outline {
    border: 2px solid #2bbfd9;
    color: #2bbfd9;
}

/* HERO */
.hero {
    background: #f5fbff;
    padding: 100px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

/* TEXT */
.hero-text h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #0a4da2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* IMAGE */
.hero-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1; /* mobilde resim üste geçsin */
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

/* FULL WIDTH SLIDER */
.full-slider {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.full-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: none;
}

.full-slide.active {
    display: block;
}

/* OVERLAY */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 77, 162, 0.45);
}

/* TEXT */
.slide-text {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-text h3 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 15px;
}

.slide-text p {
    color: #eaf6ff;
    font-size: 18px;
    max-width: 500px;
}

/* MOBİL */
@media (max-width: 768px) {
    .full-slider {
        height: 320px;
    }

    .slide-text h3 {
        font-size: 26px;
    }

    .slide-text p {
        font-size: 16px;
    }
}



/* ================================
   HİZMETLERİMİZ ALANI
================================ */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #2bbfd9);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 0.6px;
  transition: filter 0.4s ease, transform 0.4s ease;
}

/* HOVER PARILTI */
.section-title:hover {
  filter: drop-shadow(0 0 18px rgba(43,191,217,0.6));
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.services-section {
  background: linear-gradient(135deg, #92bcf3, #4eda61);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 60%);
}

/* ================================
   GRID
================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* ================================
   KART
================================ */
.service-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  transition: all .4s ease;
  position: relative;
  cursor: pointer;
}

/* ================================
   SPOTLIGHT HOVER
================================ */
.services-grid:hover .service-card {
  opacity: .4;
  transform: scale(.95);
}
.service-card:hover {
  opacity: 1 !important;
  transform: scale(1.08) translateY(-10px);
  z-index: 5;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.services-grid:hover .service-card:hover {
  opacity: 1;
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  z-index: 5;
}

/* ================================
   RESİM
================================ */
.service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}
.service-card img {
  transition: transform .5s ease;
}

.service-card:hover img {
  transform: scale(1.15);
}
/* ================================
   OVERLAY (SOFT)
================================ */
.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,77,162,0.05),
    rgba(10,77,162,0.35)
  );
}

/* ================================
   İÇERİK
================================ */
.service-content {
  padding: 30px 28px 36px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0a4da2;
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ================================
   HAFİF BORDER GLOW
================================ */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.service-card:hover::before {
  opacity: 1;
}
.service-image img {
  will-change: transform;
}

.service-card:hover .service-image img {
  transform: translateY(-10px) scale(1.12);
}

/*Akış*/
.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: scrollLogos 30s linear infinite;
}

/* LOGO KUTUSU */
.logo-item {
  width: 160px;              /* HER LOGO AYNI GENİŞLİK */
  height: 90px;              /* HER LOGO AYNI YÜKSEKLİK */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.5;
  transition: .4s ease;
}

/* LOGO RESMİ */
.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;       /* ORANI BOZMAZ */
  filter: grayscale(100%);
  transition: .4s ease;
}

/* HOVER YAZISI */
.logo-item span {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,255,200,.12);
  color: #7fffe0;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 20px;
  opacity: 0;
  white-space: nowrap;
  transition: .3s ease;
}

/* HOVER EFEKT */
.logo-item:hover {
  opacity: 1;
  transform: scale(1.12);
}

.logo-item:hover img {
  filter: grayscale(0);
}

.logo-item:hover span {
  opacity: 1;
}
@media (max-width: 768px) {
  .logo-item {
    width: 120px;
    height: 70px;
  }
}

/* ================================
   MOBİL OPTİMİZASYON
================================ */
@media (max-width: 768px) {
  .services-section {
    padding: 70px 0;
  }

  .services-grid {
    gap: 24px;
  }

  .services-grid:hover .service-card {
    opacity: 1;
  }

  .service-card:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
  }

  .service-card {
    min-width: 85%;
    scroll-snap-align: center;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }
}





/* HAMBURGER */
.hamburger {
   display: none;
    flex-direction: column;
    justify-content: center;
    width: 32px;
    height: 32px;                /* tıklama alanı geniş olsun */
    cursor: pointer;
    margin-left: auto;           /* sola itmek yerine sağa yasla */
}

.hamburger span {
  width: 28px;
    height: 3px;
    background: #0a4da2;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* MOBİL MENU */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        right: -100%;
        background: #ffffff;
        width: 70%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 40px;
        transition: 0.3s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    .hamburger {
        display: flex;
    }

    .btn-primary {
        display: none;
    }
}

/* STICKY HEADER EFFECT */
.header.scrolled {
    height: 65px;
}

/* FADE IN ANIMATION */
.fade-in {
     opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.active {
    opacity: 1;
  transform: translateY(0) scale(1);

}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    padding: 15px 18px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 999;
}

/*Neden biz*/
.why-us {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  margin-top: 10px;
}

.section-subtitle.highlight {
  color: #0d6efd;
  font-weight: 600;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin: 60px 0;
  text-align: center;
}

.stat-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 34px;
  font-weight: 800;
  color: #0d6efd;
  display: block;
}

.stat-text {
  margin-top: 8px;
  font-size: 15px;
  color: #555;
}

/* KARTLAR */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::after {
  opacity: 0.12;
}

.why-card:hover {
  transform: translateY(-12px);
}

.why-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  background: #0d6efd;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 rgba(13,110,253,0.6);
  animation: pulse 2.5s infinite;
}
.why-icon.tech {
  background: linear-gradient(135deg, #0a4da2, #2bbfd9);
}

.why-icon.report {
  background: linear-gradient(135deg, #2e7d32, #66bb6a);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(13,110,253,0.6); }
  70% { box-shadow: 0 0 0 18px rgba(13,110,253,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* CTA */
.why-cta {
  margin-top: 90px;
  background: linear-gradient(135deg, #0d6efd, #00c6ff);
  padding: 60px 30px;
  border-radius: 25px;
  text-align: center;
  color: #fff;
}

.why-cta h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.why-cta p {
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-btn {
  background: #fff;
  color: #0d6efd;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #000;
  color: #fff;
}

/*kurumlar*/
.clients-zigzag {
  padding: 120px 0;
  background: #f5fbff;
}

.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.zigzag-item.reverse {
  direction: rtl;
}

.zigzag-item.reverse .zigzag-content {
  direction: ltr;
}

/* IMAGE */
.zigzag-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.zigzag-item:hover .zigzag-image img {
  transform: scale(1.05) rotate(-1deg);
}

/* CONTENT */
.zigzag-content h3 {
  font-size: 32px;
  margin-bottom: 18px;
  color: #0a4da2;
}

.zigzag-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 500px;
}

/* MOBİL */
@media (max-width: 768px) {
  .zigzag-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .zigzag-item.reverse {
    direction: ltr;
  }

  .zigzag-content p {
    margin: auto;
  }
}
/*Bize Ulaşın*/
.contact-wow {
  padding: 130px 0;
  background:
    radial-gradient(circle at top right, #2bbfd9, transparent 40%),
    linear-gradient(135deg, #0a4da2, #073b7a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-wow-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* SOL TARAF */
.contact-wow-info h2 {
  font-size: 44px;
  margin-bottom: 20px;
}

.contact-wow-info p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.contact-badges span {
  background: rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  backdrop-filter: blur(6px);
}

.contact-wow-list {
  list-style: none;
  margin-top: 25px;
}

.contact-wow-list li {
  margin-bottom: 15px;
  font-size: 18px;
}

.contact-wow-list i {
  color: #ffd966;
  margin-right: 12px;
}

/* FORM */
.contact-wow-form {
  background: rgba(255,255,255,0.95);
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.35);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-wow-form input,
.contact-wow-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  margin-bottom: 15px;
}

.contact-wow-form textarea {
  height: 140px;
  resize: none;
}

.contact-wow-form button {
  width: 100%;
  background: linear-gradient(135deg, #0a4da2, #2bbfd9);
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 18px;
  border-radius: 35px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-wow-form button i {
  margin-right: 10px;
}

.contact-wow-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(43,191,217,0.45);
}

/* MOBİL */
@media (max-width: 768px) {
  .contact-wow-grid {
    grid-template-columns: 1fr;
  }

  .contact-wow-info {
    text-align: center;
  }

  .contact-badges {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/*Hakkımızda*/
.about-wow {
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.about-wow-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* GÖRSEL */
.about-wow-image {
  position: relative;
}

.about-wow-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: linear-gradient(135deg, #0a4da2, #2bbfd9);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* METİN */
.about-wow-content h2 {
  font-size: 42px;
  color: #0a4da2;
  margin-bottom: 25px;
}

.about-lead {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-wow-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 18px;
}

/* ÖNE ÇIKANLAR */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 35px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #333;
}

.highlight-item span {
  color: #2bbfd9;
  font-size: 18px;
}

/* BUTON */
.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #0a4da2, #2bbfd9);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(43,191,217,0.45);
}

/* MOBİL */
@media (max-width: 768px) {
  .about-wow-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
.alya-footer {
  background: radial-gradient(circle at top, #0a4da2, #041b3d);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* CTA */
.footer-cta {
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(135deg, #2bbfd9, #0a4da2);
}

.footer-cta h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.footer-cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 35px;
  opacity: 0.95;
}

.footer-cta-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #fff;
  color: #0a4da2;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.footer-cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* GRID */
.footer-grid {
  padding: 100px 0 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}

/* MARKA */
.footer-brand h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.footer-brand span {
  color: #2bbfd9;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: #2bbfd9;
  transform: translateY(-4px);
}

/* LİNKLER */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 15px;
  opacity: 0.9;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2bbfd9;
}

/* İLETİŞİM */
.footer-contact p {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-contact i {
  margin-right: 10px;
  color: #2bbfd9;
}

/* ALT BAR */
.footer-bottom {
  text-align: center;
  padding: 25px;
  background: rgba(0,0,0,0.25);
  font-size: 14px;
}

.footer-bottom span {
  margin: 0 8px;
  opacity: 0.6;
}

/* MOBİL */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-cta h2 {
    font-size: 34px;
  }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255,145,0,0.6); }
  70% { box-shadow: 0 0 25px rgba(255,145,0,0.9); }
  100% { box-shadow: 0 0 0 rgba(255,145,0,0.6); }
}

.btn-primary,
.cta-btn {
  animation: pulseGlow 2.5s infinite;
}

.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
