/* ===== BASIC RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
}
.logo span {
  color: #2563eb;
}

.nav-links a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a.active {
  color: #f97316; /* Orange for active link */
}
.nav-links a:hover {
  color: #2563eb; /* Blue hover */
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  height: 80vh;
  background: url('../images/hero-bg.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero h1 span {
  color: #f97316;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  background: #f97316; /* Orange */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}
.btn-primary:hover, .btn-secondary:hover {
  background: #2563eb; /* Blue hover */
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 50px 15px;
}
h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #111;
}
p {
  margin-bottom: 15px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 25px;
}
.service-card {
  background: #e6d013;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.project-card:hover {
  transform: scale(1.02);
}
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-card h4 {
  padding: 10px;
  font-size: 1.1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ===== FOOTER ===== */
.footer {
  background: #f1f1f1;
  text-align: center;
  padding: 20px;
}
.footer-links a {
  color: #f97316;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #2563eb;
}

/* ===== RESPONSIVE MENU ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 15px;
    text-align: center;
  }
  .hamburger {
    display: block;
  }
}


/* ===== ABOUT PAGE ===== */
.about-hero {
  background: url('../images/about-bg.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
}
.about-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.about-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}
.about-image img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f97316;
  display: block;
  margin: auto;
}
.about-text h2 {
  color: #111;
  margin-bottom: 15px;
}
.about-text p {
  margin-bottom: 15px;
  color: #333;
}
.about-text .btn-primary {
  margin-top: 10px;
}


/* ===== SKILLS SECTION ===== */
.skills-section {
  background: #f9fafb;
  border-radius: 12px;
  padding: 60px 20px;
}
.skills-section .center-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #444;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.skill-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.skill-card:hover {
  transform: translateY(-5px);
}
.skill-card h4 {
  color: #f97316;
  margin-bottom: 10px;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
  margin-top: 50px;
}
.experience-content p {
  margin-bottom: 15px;
  color: #444;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  background: linear-gradient(to right, #f97316, #2563eb);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-top: 50px;
}
.mission-section p {
  max-width: 700px;
  margin: 10px auto;
  line-height: 1.7;
}
.mission-section .highlight {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 15px;
}


/* ===== SKILL BARS ===== */
.skill-bars {
  margin-top: 50px;
}
.skill-bars h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #111;
}
.bar {
  margin-bottom: 20px;
}
.bar-info {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: #333;
}
.bar-bg {
  width: 100%;
  height: 10px;
  background: #e5e7eb;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 5px;
}
.bar-fill {
  height: 10px;
  width: 0;
  background: linear-gradient(to right, #f97316, #2563eb);
  border-radius: 5px;
  transition: width 1.5s ease-in-out;
}

/* === Stats Section === */
.stats-section {
  background: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.stats-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #ffcb05;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
}

.stat-box {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-8px);
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #ffcb05;
}

.stat-box p {
  margin-top: 10px;
  font-size: 1.1rem;
  color: #ddd;
}

/* === Reviews Section === */
.reviews-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.reviews-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ffcb05;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.review-card {
  background: #1c1c1c;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  max-width: 350px;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 203, 5, 0.3);
}

.review-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ffcb05;
}

.review-card h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.stars {
  color: #ffcb05;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

/* === Reviews Section Carousel === */
.reviews-section {
  background: #111;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.reviews-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffcb05;
  text-transform: uppercase;
}

.review-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.review-card {
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #1c1c1c;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.4);
  max-width: 600px;
}

.review-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.review-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ffcb05;
}

.review-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.stars {
  color: #ffcb05;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.carousel-controls {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #444;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #ffcb05;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 25px 15px;
  }
}



