/* Basic Reset same */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: 1.6;
  height: 100%;
  margin: 0;
}

/* Header same */
header {
  background: #000000;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-img {
  height: 60px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
}
nav ul li {
  margin-left: 30px;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav a:hover {
  color: #00ffce;
}

/* Hero same */
.hero {
  position: relative;
  min-height: 50vh; /* Screen ka 50% height */
  background: url("Landing Page Pic-01.jpg") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* <-- Yeh line important: left align karega */
  text-align: left; /* Text left align */
  color: #fff;
  padding-left: 7%; /* Left se thora space taake edge pe na chipke */
}

/* Dark overlay taake text padhne mein asani ho */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Content ko overlay ke upar rakhne ke liye */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px; /* Width limit taake zyada fail na ho */
  padding: 20px;
}

.hero h2 {
  font-size: 4rem;
  color: #00ffce;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.hero button {
  padding: 18px 50px;
  background: #00ffce;
  border: 1.9px solid #00ffce;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50px;
}

.hero button:hover {
  background: transparent;
  border: 1.9px solid #00ffce;
  color: #ffffff;
}
/* Sections General */
section {
  padding: 80px 5%;
  text-align: center;
}
h1 {
  color: #000000;
  margin-bottom: 40px;
}

/* About Grid & Cards with Animation */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.about-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  /* border: 2px solid #000000; */
  box-shadow: 0 10px 21px rgba(0, 0, 0, 0.157);
  transition: all 0.4s ease;
}

.about-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
  color: #000000;
  margin-bottom: 20px;
}
.about-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}
.about-card ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}
.about-card ul li::before {
  content: "→";
  color: #00ffce;
  position: absolute;
  left: 0;
}

/* Terms Grid & Cards (Similar to About but no animation) */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.terms-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;

  box-shadow: 0 10px 21px rgba(0, 0, 0, 0.157);
  transition: all 0.4s ease;
}

.terms-card:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.terms-card h3 {
  color: #000000;
  margin-bottom: 20px;
}
.terms-card ul {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}
.terms-card ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}
.terms-card ul li::before {
  content: "⚠";
  color: #ffcc00;
  position: absolute;
  left: 0;
}

/* Team Grid & Circular Images */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* Circular bana diya */
  object-fit: cover; /* Image fit karne ke liye */
  border: 3px solid #000000;
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

.team-member h3 {
  color: #000000;
  margin: 15px 0 10px;
}
.team-member p {
  font-size: 0.9rem;
}

/* Baqi sections same (services, reviews, contact, footer) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.service-card {
  background: #fffdfd;
  padding: 40px 20px;
  border: 1px solid #000000;
  border-radius: 10px;
  font-size: 1.3rem;
}

/* Reviews Section – Professional Styling */
.reviews-section {
  background: #f8f9fa;
  padding: 100px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0px;
}

.reviewer-avatar {
  display: none;
}

.reviewer-info h4 {
  margin: 0;
  font-size: 1.1rem;
}

.reviewer-info span {
  font-size: 0.9rem;
  color: #777;
}

.stars {
  color: #00ffce;
  font-size: 1.4rem;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.review-date {
  font-size: 0.85rem;
  color: #999;
}

/* Review Form */
.review-form-container {
  max-width: 700px;
  margin: 80px auto 0;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.review-form-container h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #000;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: #00ffce;
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: #00d4b0;
  transform: translateY(-3px);
}

.form-success {
  text-align: center;
  color: #00ffce;
  font-weight: bold;
  margin-top: 20px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 1%;
  }

  .review-form-container {
    padding: 17px 35px;
  }
}

.contact-icons a {
  color: #00ffce;
  font-size: 1.5rem;
  margin: 0 20px;
  text-decoration: none;
}
.whatsapp:hover {
  color: #25d366;
}

/* Yeh naya class page-wrapper ke liye */
.page-wrapper {
  min-height: 100%; /* Kam se kam full screen height */
  display: flex;
  flex-direction: column; /* Vertical stack */
}

/* Yeh sab content ko push karega (main content flexible ban jayega) */
main-content-area {
  /* Yeh nahi hai to skip mat karna, neeche dekho */
  flex: 1; /* Yeh line sab content ko space le leti hai */
}

/* Ab footer ko fix karne ke liye (position nahi, flex se) */
footer {
  background: #0a0a0a;
  text-align: center;
  padding: 30px 5%; /* Thora zyada padding top/bottom ke liye acha lage */
  border-top: 1px solid #333;
  width: 100%; /* Full width confirm */
  margin-top: auto;
  color: #fafafa; /* Yeh magic line – footer ko bottom pe push karta hai */
}

/* Floating Icons - Right Bottom Corner */
.floating-icons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000; /* Sab se upar rahe */
  display: flex;
  flex-direction: column; /* Oper neeche stack */
  gap: 15px; /* Icons ke beech space */
}

.float-whatsapp,
.float-call {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  background: white; /* Background white taake clear dikhe */
}

.float-whatsapp img {
  width: 40px;
  height: 40px;
}

.float-call img {
  width: 27px;
  height: 27px;
}

/* WhatsApp green hover */
.float-whatsapp {
  background: #25d366;
}

.float-whatsapp:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Call cyan hover */
.float-call {
  background: #000000;
}

.float-call:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(0, 247, 255, 0.5);
}

/* Mobile pe icons chhote na ho jayein */
@media (max-width: 768px) {
  .floating-icons {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .float-whatsapp,
  .float-call {
    width: 55px;
    height: 55px;
  }

  .float-whatsapp img {
    width: 35px;
    height: 35px;
  }
  .float-call img {
    width: 23px;
    height: 23px;
  }
}

/* Hamburger Button */
.hamburger {
  display: none; /* Desktop pe hide rahega */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #fff; /* White lines */
  border-radius: 10px;
  transition: all 0.3s;
}

/* Open state (X ban jayega click pe) */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -8px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  /* Header Changes */
  header {
    padding: 10px 5%; /* Thora chhota padding */
    justify-content: space-between;
  }

  .hamburger {
    display: flex; /* Mobile pe show karo */
  }
  .logo-img {
    height: 40px;
  }

  nav {
    position: absolute; /* Menu ko overlay banayega */
    top: 100%; /* Header ke neeche */
    left: 0;
    width: 100%;
    background: #0a0a0a; /* Same header color */
    padding: 20px 0;
    display: none; /* Default hide */
    z-index: 99;
  }

  nav ul {
    flex-direction: column; /* Vertical list */
    align-items: center;
  }

  nav ul li {
    margin: 15px 0; /* Space between items */
  }

  /* Jab open ho to show karo */
  nav.open {
    display: block;
  }

  /* Baqi sections tweaks */
  .hero {
    min-height: 17vh; /* Mobile pe chhota */
    position: relative;
    background: rgb(30, 29, 29);
    background-size: cover;
    display: flex;
    align-items: center; /* Vertically centre rahega content */
    justify-content: center; /* <-- Yeh line important: left align karega */
    text-align: center; /* Text left align */
  }

  .hero h2 {
    font-size: 2rem; /* Chhota font */
  }

  .hero p {
    font-size: 0.9rem;
  }

  .hero button {
    padding: 13px 30px;
    font-size: 0.9rem;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px; /* Width limit taake zyada fail na ho */
    padding: 15px;
  }

  .about-grid,
  .terms-grid,
  .team-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr; /* Single column mobile pe */
  }

  .team-img {
    width: 150px; /* Chhoti image */
    height: 150px;
  }

  /* Floating icons mobile pe thore chhote */
  .floating-icons {
    bottom: 20px;
    right: 20px;
  }

  .float-whatsapp,
  .float-call {
    width: 50px;
    height: 50px;
  }
}
