/*
Theme Name: WaaoIndia
Author: Piyush Sharma
Description: Custom WordPress Theme
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
}
a {
  text-decoration: none;
  
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.navbar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 8%;
}

.logo img {
  height: 55px;
}

/* Menu */

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

/* Button */

.nav-btn a {
  background: #0a5c36;
  color: white;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

/* Mobile icon */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Mobile */

@media (max-width: 900px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/* hero 1  */
.hero-1 {
  width: 100%;
  background: #23344f;
  color: white;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}

.hero-text {
  padding: 80px 10%;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 700;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #d8d8d8;
  max-width: 520px;
  margin-bottom: 35px;
}

.hero-btn {
  display: inline-block;
  background: #f4b942;
  color: #000;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #f0a800;
}

/* Right Image */

.hero-image {
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  margin-top: 90px;
  margin-left: -20px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-text {
    padding: 60px 8%;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-image {
    border-radius: 0;
    height: 400px;
    margin-top: -90px;
    margin-left: 28px;
  }
}
/* hero section 2 */
.hero-2 {
  padding: 100px 8%;
  background: #f5f6f8;
}

.hero2-header {
  text-align: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 60px;
}

.hero2-header h2 {
  font-size: 38px;
  color: #2f3a4f;
  margin-bottom: 20px;
}

.hero2-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.hero2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Image */

.hero2-image img {
  width: 100%;
  border-radius: 10px;
}

/* Text Card */

.hero2-text {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero2-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2f3a4f;
}

.hero2-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero2-btn {
  background: #f4b942;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  font-weight: 600;
  display: inline-block;
}

/* Responsive */

@media (max-width: 900px) {
  .hero2-content {
    grid-template-columns: 1fr;
  }

  .hero2-header h2 {
    font-size: 30px;
  }
}
/* hero-3 */
.hero-3 {
  padding: 100px 8%;
  background: #ffffff;
}

.hero3-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.hero3-header h2 {
  font-size: 38px;
  color: #2f3a4f;
  margin-bottom: 15px;
}

.hero3-header p {
  color: #666;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #f7f8fa;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2f3a4f;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* hero-4 */
.hero-4 {
  padding: 100px 8%;
  background: #f2f7f4;
}

.hero4-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.hero4-header h2 {
  font-size: 38px;
  color: #2f3a4f;
  margin-bottom: 15px;
}

.hero4-header p {
  color: #666;
  line-height: 1.7;
}

.hero4-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.hero4-box {
  background: white;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero4-box:hover {
  transform: translateY(-8px);
}

.hero4-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero4-box h3 {
  margin-bottom: 10px;
  color: #2f3a4f;
}

.hero4-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 900px) {
  .hero4-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero4-container {
    grid-template-columns: 1fr;
  }
}

/* footer start */
.footer {
  background: #0a5c36;
  color: white;
  padding: 70px 8% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  line-height: 1.7;
  color: #e6e6e6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #e6e6e6;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* About section  */
/* overview of waao-india */
.about-overview {
  padding: 100px 8%;
  background: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #2f3a4f;
}

.about-text p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 400px;
  display: block;
}

/* WAAO India Helps */
.about-help {
  padding: 100px 8%;
  background: #f2f7f4;
}

.about-help-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 60px;
}

.about-help-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2f3a4f;
}

.about-help-header p {
  color: #666;
  line-height: 1.7;
}

.help-grid {
  display: grid;
  gap: 30px;
}

.help-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.help-box:hover {
  transform: translateY(-6px);
}

.help-box h3 {
  margin-bottom: 10px;
  color: #2f3a4f;
}

.help-box p {
  color: #666;
  line-height: 1.6;
}
/* Mission & Vision Section */
.mission-vision {
  padding: 20px 8%;
  background: #f2f7f4;
}

.mission-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mission-box,
.vision-box {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mission-box h2,
.vision-box h2 {
  margin-bottom: 15px;
  color: #2f3a4f;
  font-size: 30px;
}

.mission-box p,
.vision-box p {
  color: #666;
  line-height: 1.7;
}
.mission-box a {
  color: #666;
}
@media (max-width: 768px) {
  .mission-container {
    grid-template-columns: 1fr;
  }
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }

}

/* services grid  */
.services-grid {
  padding: 100px 8%;
  background: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #2f3a4f;
}

.services-header p {
  color: #666;
  line-height: 1.7;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #f7f8fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #2f3a4f;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}
.services-grid-1 {
  padding: 100px 8%;
  background: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #2f3a4f;
}

.services-header p {
  color: #666;
  line-height: 1.7;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: #f7f8fa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #2f3a4f;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .services-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-header h2 {
    font-size: 30px;
  }
}
/* why choose us  */
.why-choose-services {
  padding: 100px 8%;
  background: #f2f7f4;
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #2f3a4f;
}
.why-header p {
  color: #666;
  line-height: 1.7;
}

.why-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.why-box h3 {
  margin-bottom: 10px;
  color: #2f3a4f;
}

.why-box p {
  color: #666;
}
/* C-T-A  */
.services-cta {
  padding: 38px 8%;

  text-align: center;
}

.cta-container h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2f3a4f;
}

.cta-container p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.7;
}
.Footer-btn{
  color: white;
}
.cta-btn {
  background: #f4b942;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  font-weight: 600;
}
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}
/* contact form  */
.contact-section {
  padding: 100px 8%;
  background: #f2f7f4;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-image img {
  width: 100%;
  border-radius: 8px;
}

.contact-form-area h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #0a5c36;
}

.contact-form-area input,
.contact-form-area textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 15px;
}

.contact-form-area textarea {
  height: 100px;
  resize: none;
}

.contact-form-area button {
  background: #0a5c36;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form-area button:hover {
  background: #08492b;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-form-area h2 {
    font-size: 32px;
  }
}
