:root {
  --orange: #FF5E00;
  --orange-light: #FF8C42;
  --dark: #0e0e0e;
  --dark-light: #1a1a1a;
  --light: #ffffff;
  --gray: #f5f5f5;
  --text-dark: #333;
  --text-light: #777;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  line-height: 1.6;
}

a{
	text-decoration:none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  transition: var(--transition);
}

nav.scrolled {
  padding: 0.7rem 0;
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light);
  text-decoration: none;
  z-index: 1001;
}

.logo span {
  color: var(--orange);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-menu li a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

.nav-menu li a:hover::after {
  width: 100%;
}

.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-login {
  background: transparent;
  border: 1px solid var(--light);
  color: var(--light);
}

.btn-login:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-signup {
  background: var(--orange);
  color: var(--light);
}

.btn-signup:hover {
  background: var(--orange-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: var(--light);
  margin: 3px 0;
  transition: var(--transition);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top:-1rem;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: fade 1.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes fade {
  from {opacity: 0.4;}
  to {opacity: 1;}
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 800px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ccc;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1.4s ease forwards;
}

.btn-hero-primary, .btn-hero-secondary {
  padding: 0.9rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--light);
}

.btn-hero-primary:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn-hero-secondary:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-3px);
}

.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.slide-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slide-indicators .indicator.active {
  background: var(--orange);
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  color: var(--orange);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: #ccc;
}

/* ABOUT SECTION */
#about {
  background: var(--dark-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  color: var(--orange);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-text p {
  margin-bottom: 2rem;
  color: #ccc;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  transition: var(--transition);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--orange);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--light);
  font-size: 1.4rem;
}

.service-card p {
  color: #ccc;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
#testimonials {
  background: var(--dark-light);
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: #ccc;
  font-style: italic;
  position: relative;
  padding: 0 1rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
  content: '"';
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
}

.testimonial-content p::before {
  top: -1rem;
  left: -0.5rem;
}

.testimonial-content p::after {
  bottom: -2rem;
  right: -0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--light);
  margin-bottom: 0.2rem;
}

.author-info p {
  color: var(--orange);
  font-size: 0.9rem;
}

/* CONTACT SECTION */
.contact {
  background: #111;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 94, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--orange);
  font-size: 1.2rem;
}

.contact-details h4 {
  color: var(--light);
  margin-bottom: 0.5rem;
}

.contact-details span {
  display: block;
  color: #ccc;
  margin-bottom: 0.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  color: var(--light);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.btn-form {
  background: var(--orange);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-form:hover {
  background: var(--orange-light);
}

/* NEWSLETTER SECTION */
#newsletter {
  background: var(--orange);
  padding: 4rem 0;
}

.newsletter-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.newsletter-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--light);
  font-family: 'Inter', sans-serif;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  background: var(--dark);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--dark-light);
}

/* FOOTER */
footer {
  background: #0a0a0a;
  padding: 4rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-section p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--orange);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--orange);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9rem;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: var(--light);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: #1c1c1c;
  padding: 2.5rem;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  color: var(--light);
  position: relative;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #ccc;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--orange);
}

.modal-content h2 {
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.modal-content > p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.subscription-cost {
  background: #222;
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  font-weight: 600;
  color: var(--orange);
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .newsletter-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 1000;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .stats-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
}

/* -------- Logo image sizing -------- */
.logo img {
height: 45px;        
width: auto;
display: block;
}
/* -------- Mobile dropdown already existed; tighten it -------- */
@media (max-width: 768px) {
.nav-menu {
position: fixed;
top: 0;
left: -100%;
width: 70%;
height: 100vh;
background: var(--dark);
flex-direction: column;
justify-content: center;
align-items: center;
transition: var(--transition);
z-index: 1000;
}
.nav-menu.active { left: 0; }
.menu-toggle {
display: flex;
flex-direction: column;
cursor: pointer;
z-index: 1001;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;          /* kill horizontal scroll */
}

/* prevent images & media from breaking layout */
img, video, iframe {
  max-width: 100%;
  height: auto;
}

/* stop long words or URLs from poking out */
body {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

 .container {
    padding-left: 12px;
    padding-right: 12px;
  }

.menu-toggle .bar {
width: 25px;
height: 3px;
background: var(--light);
margin: 3px 0;
transition: var(--transition);
}
/* hamburger → X animation */
.menu-toggle.active .bar:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
.menu-toggle.active .bar:nth-child(2) {
opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
/* make sure logo still visible */
.logo img {
height: 38px;
}
}
/* -------- Extra-small tweaks -------- */
@media (max-width: 480px) {
.hero-content h1 { font-size: 1.8rem; }
.section-header h2 { font-size: 1.9rem; }
.logo img { height: 35px; }
}