* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
}

a{
  text-decoration: none;
}

/* HEADER */
header {
  background:#252c34;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}


.logo img {
  width: 220px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav a.active,
nav a:hover {
  color: #ff9800;
}

.menu-toggle{
  display:none;
  font-size:32px;
  color:white;
  cursor:pointer;
}

/* MOBILE */
@media (max-width:768px){

  .menu-toggle{
    display:block;
  }

  nav{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#252c34;
    display:none;
    flex-direction:column;
    text-align:center;
  }

  nav a{
    color:white;
    padding:18px;
    margin:0;
    border-top:1px solid rgba(255,255,255,0.08);
  }

  nav.show{
    display:flex;
  }
}


/* HERO */
.about-hero {
  height: 100vh;
  background: url("image/img-7.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h2{
  font-size:48px;
  font-weight:700;
}


.hero-overlay p {
  font-size: 18px;
  margin-top: 10px;
}

/* ABOUT SECTION */
.about-section {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-text ul {
  list-style: none;
  margin-bottom: 20px;
}

.about-text li {
  margin-bottom: 8px;
}

.about-text button {
  padding: 12px 25px;
  background: #ff9800;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.about-text button:hover {
  background: #e68900;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

/* STATS */
.stats {
  background: #f5f5f5;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 30px;
}

.stat-box h4 {
  font-size: 36px;
  color: #ff9800;
}

.stat-box p {
  margin-top: 5px;
  font-weight: 500;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #0f172a;
  color: #d1d5db;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-box h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-box p,
.footer-box li {
  font-size: 14px;
  line-height: 1.7;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box ul li a {
  color: #d1d5db;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff9800;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 50%;
  background: #1e293b;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #ff9800;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: #020617;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  color: #9ca3af;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay h2 {
    font-size: 32px;
  }
}



/* =====================
   BACK TO TOP BUTTON
===================== */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #ff9800;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: 0.3s ease;
}

#backToTop:hover {
  background: #e68900;
  transform: translateY(-3px);
}


