/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #121212; /* Dark background for page */
  color: #fff;
}

/* Header */
header {
  width: 100%;
  background-color: #0d1018; /* Darker header */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.logo img {
  width: 130px; /* Logo size */
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  color: #f9a825;
  transform: scale(1.05);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate Hamburger to X */
.menu-toggle.active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  nav.show {
    max-height: 400px; /* Enough to show all links */
  }

  nav a {
    padding: 15px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: flex;
  }
}

/* About Us Section */
.about-us {
  width: 100%;
  padding: 80px 20px;
  background-color: #000; 
  color: #fff;
}

.about-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px; /* default gap */
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #f9a825, #00e5ff, #ff00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.about-text .btn {
  padding: 12px 25px;
  border-radius: 5px;
  background: linear-gradient(45deg, #f9a825, #00e5ff, #ff00ff);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-text .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(249, 168, 37, 0.4);
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(249, 168, 37, 0.3);
}

/* Mobile Responsive Fix */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column;
    text-align: center;
    gap: 20px; /* reduced gap */
  }
  .about-text h3 {
    font-size: 24px;
    margin-bottom: 15px; /* smaller margin */
  }
  .about-text p {
    font-size: 1rem;
    margin-bottom: 15px; /* smaller margin */
  }
  .about-image img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about-row {
    gap: 15px; /* even smaller gap */
  }
  .about-text h3 {
    font-size: 20px;
  }
  .about-text p {
    font-size: 0.95rem;
  }
  .about-image img {
    max-width: 250px;
  }
  .about-text .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
 /* About Row Mobile Fix */
@media (max-width: 992px) {
  .about-row {
    flex-direction: column; /* stack vertically */
    gap: 15px; /* reduce gap between button and image */
    text-align: center;
  }
  
  .about-text {
    margin-bottom: 0; /* remove extra bottom margin */
  }

  .about-text p {
    margin-bottom: 10px; /* smaller margin after paragraph */
  }

  .about-text .btn {
    margin-bottom: 0; /* remove extra spacing under button */
  }

  .about-image img {
    max-width: 90%; /* scale image properly */
    margin: 0 auto; /* center image */
  }
}
 
/* FAQ Section */
.faq {
  width: 100%;
  padding: 80px 20px;
  background-color: #111111; /* Dark background */
  color: #fff;
  text-align: center;
}

.faq h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f9a825; /* Accent color */
}

.faq .subheading {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 50px;
}

/* FAQ Items */
.faq-item {
  max-width: 800px;
  margin: 0 auto 20px;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  background-color: #1a1a1a;
  box-shadow: 0 0 20px rgba(249, 168, 37, 0.2);
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #f9a825;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(249, 168, 37, 0.1);
}

.faq-answer {
  padding: 0 20px 20px;
  max-height: 0;
  overflow: hidden;
  color: #ccc;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* Show answer */
.faq-item.active .faq-answer {
  max-height: 200px; /* Enough to show content */
  padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 2rem;
  }
  .faq .subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}
 
 
/* Services Section */
.services {
  width: 100%;
  padding: 80px 20px;
  background-color: #111111; /* Dark background */
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #f9a825; /* Accent color */
}

.services .subheading {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 50px;
}

/* Services Cards */
.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 300px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(249, 168, 37, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(249, 168, 37, 0.4);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #f9a825;
}

.service-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services h2 {
    font-size: 2rem;
  }
  .services .subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .service-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
}
 

 
/* Hero Section */
.hero {
  width: 100%;
  height: 100vh; /* Full viewport height */
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('web_assets/image/dolor.png') no-repeat center center;
  background-size: cover; /* Ensure image fully covers */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Media Query for Mobile Devices */
@media (max-width: 480px) {
  .hero {
    height: 40vh; /* Reduce height on mobile */
    padding: 0 15px; /* Optional: adjust padding */
    background-size: cover; /* Keep image covering */
    background-position: center top; /* Adjust focus point */
  }

  .hero-content h1 {
    font-size: 2rem; /* Smaller heading */
  }

  .hero-content p {
    font-size: 1rem; /* Smaller paragraph */
  }

  .hero-content .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Hero Content */
.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
  animation: fadeInUp 1s ease forwards;
}

.hero-content .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #f9a825;
  color: #1a1a1a;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: fadeIn 1.5s ease forwards;
}

.hero-content .btn:hover {
  background-color: #fff;
  color: #1a1a1a;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-20px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-content .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* Mobile Menu Centering */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center all links */
    justify-content: center;
    text-align: center;
  }

  nav a {
    padding: 15px 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}
 

/* Services Section */
.services-section {
  background-color: #1a1a1a; /* Dark background for section */
  padding: 50px 0;
  color: #fff;
}

.services-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #4fc3f7; /* New Accent Color */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #333;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: #444;
}

.service-icon img {
  width: 60px; /* Icon size */
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff; /* Text color for the title */
}

.service-card p {
  font-size: 1rem;
  color: #bbb; /* Light grey for text */
}

.service-card:hover h3 {
  color: #4fc3f7; /* Change title color to accent color on hover */
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
  }
}


/* FAQ Section */
.faq-section {
  background-color: #1a1a1a; /* Dark background for section */
  padding: 50px 0;
  color: #fff;
}

.faq-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #f57c00; /* New vibrant orange accent color */
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #333;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-10px);
  background-color: #444;
}

.faq-question h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff; /* White for the question title */
}

.faq-answer p {
  font-size: 1rem;
  color: #bbb; /* Light grey for the answer text */
}

.faq-item:hover .faq-question h3 {
  color: #f57c00; /* Change question color on hover to vibrant orange */
}

@media (max-width: 768px) {
  .faq-list {
    gap: 15px;
  }
}


/* Styling for Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  font-size: 1.5rem;  /* Size of the icons */
  color: #fff;        /* Icon color (white) */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #00bcd4;  /* Teal color on hover */
  transform: scale(1.2);  /* Slightly increase the size of the icons on hover */
}

.social-icons a i {
  transition: transform 0.3s ease;
}