html {
  scroll-behavior: smooth;
  color-scheme: light;
}

/* ========== GLOBAL TEXT ========== */
body {
  color: #000;
  background: #fff;
}

/* ========== TOP BAR ========== */
.topbar {
  background: #ffd500;
  padding: 6px 0;
  font-size: 14px;
}

.topbar a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.social-icons a {
  margin-left: 12px;
  color: #000;
}

/* ========== NAVBAR ========== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand span {
  font-weight: 700;
  margin-left: 8px;
  color: #000;
}

.nav-link {
  font-weight: 500;
  margin-left: 15px;
  color: #000 !important;
}

.nav-link:hover {
  color: #444 !important;
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 20px;
  text-align: center;
  background: #ffd500;
}

.section h1,
.section h2,
.section p {
  color: #000;
}

/* Hero special (still yellow, but premium look) */
.hero {
  background: linear-gradient(135deg, #ffd500, #ffea70);
}

/* White sections for contrast */
.bg-light {
  background: #fff !important;
  color: #000;
}

/* Optional: card-style divs later */
.card-custom {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: #ffd500;
  padding: 60px 0 20px;
  color: #000;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 16px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: #000;
  color: #fff;
}

.footer hr {
  margin: 30px 0 15px;
  border-color: rgba(0,0,0,0.2);
}

.footer .copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.newsletter-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 6px;
  outline: none;
}

.newsletter-form button {
  background: #000;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: #333;
}

/* Mobile fix */
@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

#backToTop:hover {
  background: #333;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
}


/* ========== HERO HEADER ========== */
.hero-header {
  height: 100vh;
  width: 100%;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
              center center / cover no-repeat;
  position: relative;
}

/* Optional overlay for readability */
.hero-overlay {
  height: 100%;
  width: 100%;
  background: rgba(255, 213, 0, 0.85); /* yellow overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  background: #fff;
  padding: 50px;
  border-radius: 16px;
  max-width: 650px;
  margin: 0 15px;
}

.hero-content h1 {
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #000;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.btn-store.play {
  background: #000;
}

.btn-store.app {
  background: #333;
}

.btn-store:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    padding: 30px;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .hero-content p {
    font-size: 15px;
  }
}


.dev-credit {
  font-weight: 600;
}

/* Mobile friendliness */
@media (max-width: 576px) {
  .copyright {
    line-height: 1.6;
  }
}

/* ========== ABOUT SECTION ========== */
.about-section {
  background: #fff;
  padding: 90px 0;
}

.about-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  max-width: 520px;
}

/* Image stack */
.image-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.image-stack img {
  width: 100%;
  border-radius: 20px;
  position: absolute;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

/* Individual positioning */
.image-stack img:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}

.image-stack img:nth-child(2) {
  top: 30px;
  left: 30px;
  z-index: 2;
}

.image-stack img:nth-child(3) {
  top: 60px;
  left: 60px;
  z-index: 1;
}

/* Hover effect (optional but 🔥) */
.image-stack img:hover {
  transform: translateY(-6px);
}

/* Height control */
.image-stack {
  height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .image-stack {
    margin: 0 auto;
    height: auto;
  }

  .image-stack img {
    position: relative;
    margin-bottom: 15px;
  }

  .image-stack img:nth-child(2),
  .image-stack img:nth-child(3) {
    top: 0;
    left: 0;
  }

  .about-text {
    max-width: 100%;
  }
}


/* ========== ABOUT IMAGES (VERTICAL) ========== */
.about-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
  margin-left: auto;
}

.about-images img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

/* Subtle hover lift */
.about-images img:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-images {
    margin: 0 auto;
    max-width: 100%;
  }
}

.about-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.about-text {
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  max-width: 520px;
}

/* Circular Image */
.about-image-circle {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .about-text {
    max-width: 100%;
    text-align: center;
  }
}


/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  background: #fff;
  padding: 90px 0;
}

.testimonial-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.testimonial-item {
  text-align: center;
  transition: 0.4s ease;
  transform: scale(0.7);
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;

}

/* Text card */
.testimonial-text {
  background: #ffd500;
  padding: 25px;
  border-radius: 14px;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  min-height: 120px;
  
}

/* Image */
.testimonial-img {
  margin-top: -25px;
  width: 60px;
  height: 60px;
}

.testimonial-img img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
}

/* CENTER (ACTIVE) */
.owl-item.active.center .testimonial-item {
  transform: scale(1);
  opacity: 1;
}

/* One step away */
.owl-item.active:not(.center) .testimonial-item {
  transform: scale(0.85);
  opacity: 0.8;
}

/* Far items */
.owl-item .testimonial-item {
  transform: scale(0.7);
}

/* Arrows */
.testimonial-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.testimonial-carousel .owl-nav button {
  background: #000 !important;
  color: #fff !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
}

/* ========== MODERN ABOUT SECTION ========== */
.about-modern {
  background: #fff;
  padding: 90px 0;
  /*border-top: 6px solid #ffd500;
  border-bottom: 6px solid #ffd500;*/
}

/* Header */
.about-header h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 15px;
  color: #000;
}

.about-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 17px;
  color: #333;
  line-height: 1.7;
}

/* Feature boxes */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  background: #fff;
  padding: 20px 25px;
  border-left: 5px solid #ffd500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  border-radius: 10px;
  transition: 0.3s ease;
}

.feature-box:hover {
  transform: translateX(5px);
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #444;
  margin: 0;
}

/* Image */
.about-image-modern {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.about-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .about-header h2 {
    font-size: 28px;
  }

  .about-header p {
    font-size: 15px;
  }
}

/* ========== SERVICES SECTION ========== */
.services-section {
  background: #fff;
  padding: 100px 0;
}

.services-title {
  font-weight: 800;
  font-size: 34px;
  color: #000;
}

.services-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #444;
  font-size: 16px;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  height: 100%;
  border-top: 4px solid #ffd500;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  font-size: 36px;
  color: #000;
  margin-bottom: 20px;
}

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* Future service styling */
.future-service {
  background: #ffd500;
}

.future-service h5,
.future-service p,
.future-service .service-icon {
  color: #000;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .services-title {
    font-size: 26px;
  }

  .services-subtitle {
    font-size: 14px;
  }
}

/* ========== COUNTER SECTION ========== */
.counter-section {
  background: #ffd500;
  padding: 90px 0;
}

.counter-box {
  background: #fff;
  padding: 35px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-6px);
}

.counter-box h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.counter-box p {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

/* ========== CONTACT SECTION (GLASS STYLE) ========== */
.contact-section {
  background: linear-gradient(135deg, #ffd500, #ffe45c);
  padding: 100px 0;
  border-top: 6px solid #ffd500;
  border-bottom: 6px solid #ffd500;
}

/* Glass container */
.contact-info,
.contact-form-box {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Left content alignment */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 350px;
}

/* Info Items */
.info-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.info-item i {
  font-size: 20px;
  color: #000;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
}

.info-item h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  color: #000;
}

/* Form */
.form-control {
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  border: none;
  padding: 12px;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 2px #ffd500;
}

/* Button */
.contact-btn {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ========== PAGE HEADER ========== */
.page-header {
  background: #ffd500;
  padding: 80px 0;
}

.page-header-box {
  background: #fff;
  padding: 40px 20px;
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.page-header-box h1 {
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.breadcrumb {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* ========== PRIVACY POLICY PAGE ========== */
.policy-section {
  background: #fff;
  padding: 100px 0;
  border-top: 6px solid #ffd500;
  border-bottom: 6px solid #ffd500;
}

.policy-header h2 {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 10px;
  color: #000;
}

.policy-header p {
  color: #555;
  font-size: 14px;
}

.policy-content {
  max-width: 850px;
  margin: 50px auto 0;
}

.policy-content h4 {
  margin-top: 30px;
  font-weight: 700;
  color: #000;
}

.policy-content p {
  margin-top: 10px;
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}

.policy-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 6px;
  color: #444;
  font-size: 15px;
}
