@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
}

body {
  line-height: 1.2;
  background-color: #000;
  color: #fff;
}

.container {
  max-width: 90%;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: #fff;
}

h1 {
  font-size: 3.5em;
  color: #fff;
}

h2 {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #f6c90e;
  border-radius: 2px;
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: #3498db;
}

.btn {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.btn:hover {
  background-color: #2980b9;
}

.secondary-btn {
  background-color: #000;
}

.secondary-btn:hover {
  background-color: #000;
}

/* Header/Hero Section */
header {
  padding: 20px 0;
  border-bottom: 1px solid #f6c90e;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a h3 {
  color: #fff;
  font-weight: 600;
  font-size: 26px;
}

.call-btn {
  display: flex;
  align-items: center;
}

.call-btn span {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
}

.call-btn a {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

.call-btn img {
  width: 40px;
  margin-right: 10px;
  display: block;
}

.hero-banner {
  display: flex;
  align-items: center;
}

.hero-text,
.hero-image {
  width: 50%;
}

.hero-text {
  padding-left: 5%;
}

.hero-text h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.hero-text p,
.hero-text ul li {
  margin-bottom: 15px;
  font-size: 18px;
}

.hero-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.hero-text a {
  display: inline-block;
  background: #f6c90e;
  padding: 15px 25px;
  border-radius: 30px;
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
}

/* package section */
.package-section {
  padding: 80px 0;
}

.idhar-udhar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.idhar-img,
.idhar-txt {
  width: 50%;
}

.idhar-img img {
  width: 100%;
  border-radius: 20px;
}

.idhar-txt {
  padding: 0 45px;
}

.idhar-txt h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #f6c90e;
  font-weight: 600;
}

.pack-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.package-detail {
  background: #f6c90e;
  border-radius: 5px;
  box-shadow: 0 0 4px #a7a7a7;
  padding: 5px;
  width: 24%;
}

.package-image {
  height: 200px;
}

.package-image img {
  border-radius: 5px;
  display: block;
  height: 100%;
  width: 100%;
}

.package-text-top {
  padding: 10px;
}

.package-text-top h3 {
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
}

.package-text-top p {
  margin-bottom: 10px;
  color: #000;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  text-align: center;
  /* background: url(images/background.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services-section h2 {
  font-size: 2.2em;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}

.services-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f6c90e;
  margin: 12px auto 0;
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item {
  background: #f6c90e;
  padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 152, 219, 0.05);
  transition: top 0.4s ease;
  z-index: 0;
}

.service-item:hover::before {
  top: 0;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-item .icon {
  font-size: 2.5em;
  color: #000;
  margin-bottom: 20px;
  background: #eaf4fb;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1;
  position: relative;
}

.service-item:hover .icon {
  background: #000;
  color: #fff;
}

.service-item h3 {
  color: #000;
  margin-bottom: 15px;
  font-size: 1.4em;
  font-weight: 600;
}

.service-item p {
  color: #000;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
  padding: 80px 0;
  text-align: center;
}

.why-us-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fff;
}

.why-us-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.why-us-content li {
  background-color: #f6c90e;
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
}

.why-us-content li .icon-check {
  margin-right: 10px;
  color: #2ecc71;
  font-size: 1.2em;
}

/* How It Works Section */
.testimonials-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #fff; /* your brand dark color */
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-item {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.testimonial-item p {
  font-size: 1rem;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #27232c;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  color: #000;
  text-align: center;
  background: #f6c90e;
}

.contact-section h2 {
  color: #000;
  margin-bottom: 20px;
}

.contact-section h2::after {
  background-color: #000;
}

.contact-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #000;
}

/* Footer */
footer {
  background: #27232c;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #f9a826;
}

.footer-col p,
.footer-col ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #f9a826;
}

.footer-col ul li i {
  margin-right: 8px;
  color: #f9a826;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 10px 0;
  }
  .call-btn a {
    font-size: 15px;
  }
  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 1.2em;
  }

  .hero {
    padding: 100px 0;
  }

  .service-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .why-us-content ul {
    flex-direction: column;
    align-items: center;
  }
  .testimonials-section h2 {
    font-size: 1.6rem;
  }
  .testimonial-item {
    padding: 20px 15px;
  }
  .footer-grid {
    text-align: center;
  }
  .footer-col h4 {
    margin-top: 20px;
  }
  .footer-col ul li {
    margin-bottom: 8px;
  }
}

/* about us */
.about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/about-banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.about-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 18px;
}

/* About Section */
.about-section {
  padding: 60px 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
  padding: 60px 20px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}
.value-item {
  background: #f6c90e;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.value-item i {
  font-size: 30px;
  color: #000;
  margin-bottom: 10px;
}

.value-item h3,
.value-item p {
  margin-bottom: 10px;
  color: #000;
}

/* Team Section */
.team-section {
  padding: 60px 20px;
  text-align: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 15px;
}
.team-member h4 {
  margin-bottom: 5px;
}

/* About Page Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-image img {
    margin: 0 auto;
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-banner.about-hero h1 {
    font-size: 32px;
  }
  .hero-banner.about-hero p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .values-section .values-grid,
  .team-section .team-grid {
    grid-template-columns: 1fr;
  }
  .value-item,
  .team-member {
    margin: 0 auto;
  }
  .about-section,
  .values-section,
  .team-section {
    padding: 40px 15px;
  }
}

/* contact us */
/* Hero Section for Contact */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/about-banner.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 18px;
}

/* Contact Section */
.contact-section {
  padding: 60px 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}
.contact-info p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info ul li {
  margin-bottom: 12px;
  font-size: 16px;
}
.contact-info ul li i {
  color: #000;
  margin-right: 10px;
}

/* Contact Form */
.contact-form h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.contact-form form .form-group {
  margin-bottom: 15px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.contact-form button {
  background: #000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-form,
  .contact-info {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
  .contact-hero p {
    font-size: 16px;
  }
}

/* terms and condtion */
.terms-section {
  padding: 50px 0;
  background: #fff;
}

.terms-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #27232c;
}
.terms-section h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #f39c12;
}
.terms-section p {
  margin-bottom: 15px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-section h2 {
    font-size: 1.6rem;
  }
}

/* privacy policy */
.privacy-section {
  padding: 50px 0;
  background: #fff;
}

.privacy-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #27232c;
}
.privacy-section h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #f39c12;
}
.privacy-section p {
  margin-bottom: 15px;
  color: #555;
}
.privacy-section a {
  color: #f39c12;
  text-decoration: none;
}
.privacy-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy-section h2 {
    font-size: 1.6rem;
  }
}

/* popup design */
.design-mobile {
  display: none;
}

@media (max-width: 767px) {
  .design-mobile {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("images/about-banner.jpg") center/cover no-repeat;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    text-align: center;
    display: block;
    padding: 70px 0;
  }
  .avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: 22px;
    border: 5px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  }
  .headline {
    margin: 15px 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
  }
  .phone-btn {
    display: block;
    background: #f6c90e;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto;
    padding: 17px 0;
    border-radius: 6px;
    width: 90%;
    border: none;
    text-decoration: none;
    margin-bottom: 13px;
  }
  .phone-btn i {
    margin-right: 8px;
  }
  .badge {
    color: #fff;
    margin: 0 0 15px 0;
    font-size: 14px;
  }
  .badge i {
    color: #fff;
    margin-right: 3px;
  }
  .buttons-row {
    margin: 8px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .action-btn {
    flex: 1 1 130px;
    background: #f6c90e;
    color: #000;
    border: none;
    padding: 10px;
    font-size: 1.01rem;
    margin: 7px 5px 0 5px;
    border-radius: 4px;
    cursor: pointer;
  }
  .action-btn:last-child {
    margin-right: 0;
  }
  .footer-add {
    margin-top: 20px;
    background: #f6c90e;
    border-top: 1.5px solid #f6c90e;
    padding: 6px 8px 4px 8px;
    border-radius: 0 0 12px 12px;
  }
  .footer-add P {
    font-size: 12px;
    color: #000;
    font-weight: bold;
    margin-bottom: 0px;
  }
  .footer-add img {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    margin-right: 5px;
  }
  .footer-add span {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    margin-left: 4px;
    font-size: 22px;
  }
  .footer-add span i {
    margin-right: 10px;
  }
  .hero-banner {
    display: none;
  }
  .services-section {
    padding: 30px 0;
  }
  .services-section h2 {
    font-size: 1.2em;
  }
  .logo a h3 {
    font-size: 20px;
  }
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .idhar-img,
  .idhar-txt {
    width: 100%;
  }
  .idhar-txt {
    padding: 0 0px;
  }
  .package-detail {
    width: 100%;
    margin-bottom: 10px;
  }
}

.timeline {
  position: relative;
  margin: 48px auto;
  padding: 0 12px;
  max-width: 1200px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 300px;
  width: 4px;
  height: 70%;
  background: linear-gradient(#ffe674, #f5f1ec);
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-event {
  display: flex;
  align-items: center;
  margin: 52px 0;
  position: relative;
  z-index: 1;
}
.timeline-event:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-img-wrapper {
  width: 104px;
  height: 104px;
  flex-shrink: 0;
  border-radius: 50%;
  box-shadow: 0 6px 32px #0002;
  overflow: hidden;
  background: #fffebc;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 36px;
  position: relative;
  z-index: 2;
  border: 6px solid #ffedbe;
}
.timeline-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-content {
  background: #fffbea;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px #0001;
  min-width: 260px;
  max-width: 370px;
  margin: 0 16px;
}
.timeline-content h3 {
  margin: 0 0 12px 0;
  font-size: 1.19rem;
  color: #232323;
}
.timeline-content p {
  margin: 0;
  color: #6b4b34;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 760px) {
  .timeline::before {
    left: 80px;
    height: 80%;
  }
  .timeline-event {
    flex-direction: column !important;
    align-items: flex-start;
    margin: 48px 0;
  }
  .timeline-img-wrapper {
    margin: 0 0 20px 0;
  }
  .timeline-content {
    margin: 0;
    min-width: 180px;
    max-width: 100%;
    padding: 24px 15px;
  }
}
