* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  line-height: 27px;
}
body{
  overflow-x: hidden;
}
nav {
  width: 100%;
  padding: 15px;
  background-color: white;
  z-index: 5;
  position: fixed;
  text-transform: uppercase;
}
.mb {
  display: none;
  position: sticky;
  top: 0;
  z-index: 12;
  text-transform: uppercase;
}
.mb-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: fixed;
  background-color: white;
  gap: 30px;
  padding: 7px;
}
.mb-logo {
  display: flex;
  justify-content: space-around;
  gap: 5px;
}
.mb-logo img {
  height: 40px;
}
.mb-logo a {
  text-decoration: none;
  display: flex;
}
.dn2 {
  border: 1px solid #f27868;
  padding: 7px;
  color: #f27868;
  border-radius: 5px;
}
.login2 {
  border: 1px solid black;
  padding: 7px;
  color: black;
  border-radius: 5px;
}

.dn2:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.login2:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.menu-list li a {
  text-decoration: none;
  color: black;
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  background-color: white;
}
.menu-btn {
  position: relative;
  background-color: white;
}
.main-menu {
  width: 100%;

  display: flex;
  gap: 20px;
  /* background-color: antiquewhite; */
  align-items: center;
  gap: 15px;
  justify-content: space-evenly;
}

.main-menu img {
  width: 100%;
  height: 40px;
}
.menu-child {
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: space-evenly;
}
.menu-list2 {
  width: 70%;
  /* background-color: aqua; */
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
}
.menu-list2 li {
  list-style: none;
}
.menu-list2 a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 14px;
}
.menu-list2 a:hover {
  color: #f27868;
}
.main-menu a {
  text-decoration: none;
  /* color: black; */
  font-weight: 600;
}
.dn {
  border: 1px solid #f27868;
  padding: 7px;
  color: #f27868;
  border-radius: 5px;
}
.login {
  border: 1px solid black;
  padding: 7px;
  color: black;
  border-radius: 5px;
}

.dn:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.login:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.overlay {
  position: absolute;
  top: 50%;
  left: 15%;
}
.top-about {
  width: 100%;
  position: relative;
  padding-top: 80px;
}

.top-img {
  width: 100%;
  height: 500px;
  color: white;
  filter: brightness(50%);

  /* object-fit: contain; */
}
.overlay h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Roboto Slab;
  color: white;
}
.overlay .breadcrumb {
  font-size: 16px;
  opacity: 0.9;
  font-family: Roboto Slab;

  color: white;
}

.breadcrumb span {
  font-family: Roboto Slab;
  font-size: 20px;
}
.overlay .breadcrumb .home-icon {
  margin-right: 5px;
}

.services {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 30px;
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.service-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-height: 250px;
  background: linear-gradient(135deg, #6d03b4, #ad5d03);
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box .content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  text-align: center;
}

.service-box .content i {
  font-size: 32px;
  display: block;
  margin-bottom: 15px;
  font-style: normal;
}

.service-box .content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: lightsalmon;
}

.service-box .content p {
  font-size: 15px;
  color: #fcfafa;
}

.service-box .overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: rgb(247, 244, 247);
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-box:hover .overlay {
  opacity: 1;
}
.service-box:hover .content {
  display: none;
}
.service-box .overlay h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
 color: rgb(248, 84, 19);
}

.service-box .overlay p {
  font-size: 16px;
  max-width: 85%;
  margin: 0 auto 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  background: linear-gradient(to right, #f27868, #df3721);
  color: gainsboro;
}

.btn:hover {
  background: white;
  color: blueviolet;
}
.container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.left {
  flex: 1;
  background: url("../Images/beleve.webp")
    center/cover no-repeat;
  position: relative;
  min-height: 400px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  /* background: rgba(0, 128, 128, 0.8); */
  padding: 30px;
  text-align: center;
}

.left h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.left button {
  padding: 10px 20px;
  border: none;
  background: #fff;
  color: teal;
  font-weight: bold;
  cursor: pointer;
}

/* Right Section */
.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: white;
  overflow: hidden;
}

.card img {
  width: 115px;
  height: 115px;
  object-fit: cover;
  margin-bottom: 15px;
  border-radius: 6px;
}

.card h2 {
  margin-bottom: 10px;
  font-size: 18px;
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
}

.card p {
  font-size: 14px;
}
.btn2 {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  background: linear-gradient(to right, #f27868, #df3721);
  color: gainsboro;
}

.btn2:hover {
  background: white;
  color: blueviolet;
}

.container2 {
  display: flex;
  min-height: 100vh;
}

.left-column {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f5f5f5; */
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 90%;
  max-width: 500px;
}

.image-wrapper img {
  width: 100%;
  border-radius: 8px;
}

.image-caption {
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 100%;
  color: #fff;
  font-size: 1.1rem;
  padding: 8px 16px;
  background: rgba(60, 60, 60, 0.7);
  border-radius: 4px;
  text-align: center;
}

.arrow {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(80, 80, 80, 0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

.arrow-left {
  left: -48px;
}
.arrow-right {
  right: -48px;
}

.right-column {
  flex: 1.2;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.badge {
  color: #f27868;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.right-column h1 {
  font-size: 32px;
  margin: 16px 0 18px 0;
  line-height: 1.09;
  font-weight: 700;
}

.impact {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  font-style: italic;
  /* background: #e8eefb; */
  padding: 3px 7px;
  border-radius: 4px;
}

.right-column p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.right-column details {
  margin-bottom: 18px;
  font-size: 20px;
}

.contact-btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
  background: linear-gradient(to right, #f27868, #df3721);
  border: 1px solid #f27868;
  color: gainsboro;
  text-align: center;
}
.contact-btn:hover {
  background: white;
  color: blueviolet;
  border: 1px solid blueviolet;
}
.features-section {
  max-width: 1600px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #e8eefb;
}

.feature-card {
  flex: 1 1 20%;
  max-width: 370px;
  min-width: 220px;
  margin: 24px 12px 24px 12px;
  text-align: center;
  background: none;
  box-shadow: none;
}

.feature-icon {
  height: 70px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.feature-card h2 {
  font-size: 20px;
  margin: 18px 0 10px 0;
  font-weight: 500;
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
}

.feature-card p {
  font-size: 16px;
  color: #d9d4d4;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 300px;
}
.contact-hero {
  display: flex;
  min-height: 100vh;
  width: 95vw;
  margin-top: 100px;
  margin-left: 20px;
}
.contact-hero-left {
  flex: 1.3;
  position: relative;
  background: url("../Images/a-moment-of-candid-reflection-among-friends-2024-07-06-00-39-30-utc_30.webp")
    center center/cover no-repeat;
  min-width: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-hero-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}
.content-wrapper {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 580px;
  margin-right: 3vw;
  padding: 60px 10px 60px 30px;
}
.caption {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.85;
}
.content-wrapper h1 {
  font-size: 30px;
  line-height: 1.1;
  margin: 10px 0 22px 0;
  font-weight: 700;
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
}
.content-wrapper p {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.info-block {
  margin-bottom: 32px;
  font-size: 1.06rem;
}
.hero-person {
  width: 200px;
  position: absolute;
  left: 55px;
  bottom: 87px;
  z-index: 5;
}
.phone-box {
  background: linear-gradient(to right, #f27868, #df3721);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 0;
  text-align: center;
  border-radius: 3px;
  margin-top: 56px;
  width: 370px;
}
.contact-hero-right {
  flex: 1;
  min-width: 385px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form {
  background: #fff;
  box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.18);
  border-radius: 8px;
  padding: 50px 36px 38px 36px;
  min-width: 430px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: linear-gradient(to right, #ede9e9, #ecaba3);
}
.contact-form h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6rem;
  text-align: center;
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.form-desc {
  text-align: center;
  color: #666;
  font-size: 1.04rem;
  line-height: 1.4;
  margin-bottom: 8px;
  margin-top: 0;
}
.form-row {
  display: flex;
  gap: 12px;
}
.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding: 14px 14px;
  font-size: 1.06rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fafafa;
  outline: none;
  width: 100%;
}
.contact-form textarea {
  min-height: 90px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1.05rem;
  background: #fafafa;
  resize: vertical;
}
.btn4 {
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(to right, #f27868, #df3721);
  color: #fff;
  font-size: 1.17rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.2s;
}
.btn4:hover {
  background: white;
  color: blueviolet;
  border: 1px solid blueviolet;
}
.site-footer {
  background: #2c2c2c;
  color: #ccc;
  padding: 60px 20px;
  margin-top: 70px;
  overflow: hidden;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-size: 1.4rem;
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-family: Roboto Slab;
}

.footer-section.about2 p {
  line-height: 27px;
  font-family: Roboto Slab;
}

.footer-section.about2 .read-more {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-section.links ul {
  list-style: none;
}

.footer-section.links ul li {
  margin-bottom: 10px;
}

.footer-section.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-family: Roboto Slab;
}

.footer-section.links ul li a:hover {
  color: blueviolet;
}

.office-worldwide .map-container {
  width: 100%;
  height: auto;
}

.office-worldwide .map-container img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #888;
  font-family: Roboto Slab;
}

.social-icons a {
  margin-left: 15px;
  color: #ccc;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: blueviolet;
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mb {
    display: block;
  }

  .office-worldwide .map-container {
    width: 75%;
  }
  .menu-list {
    left: -21px;
    padding: 10px;
  }
}
@media (max-width: 1130px) {
  .menu-list2 {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .menu-list2 {
    gap: 10px;
    width: 60%;
  }
}
@media (max-width: 1000px) {
  .mb-main {
    gap: 2px;
  }
}
@media (max-width: 450px) {
  .mb-logo img {
    height: 30px;
  }
   .mb-logo a{
          align-items: center;
    font-size: 12px;
  }
  .contact-hero {
    flex-direction: column;
    gap: 10px;
  }
  .container {
    flex-direction: column;
  }
  .container2 {
    flex-direction: column;
  }
  .contact-form {
    min-width: 350px;
  }
  .contact-hero-left{
    min-width: 355px;

  }
  .contact-hero-right{
    min-width: 350px;
  }
  .contact-hero{
    margin-left: 1px;
  }
  .content-wrapper{
    max-width: 355px;
  }
  .phone-box{
    width: 300px;
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
