﻿html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  color: black;
  transition: background 0.3s, color 0.3s;
  font-family: "Montserrat", sans-serif;
}
body a {
  font-family: "Montserrat", sans-serif;
}
body p, body ul, body ol, body li {
  font-family: "Montserrat", sans-serif;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper {
    width: 95%;
  }
}

.wrapper2 {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .wrapper2 {
    width: 95%;
  }
}
.wrapper2 a {
  text-decoration: none;
  color: black;
}

a {
  text-decoration: none;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 1000px) {
  .two-grid {
    grid-template-columns: 1fr;
  }
}

.three-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1000px) {
  .three-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1000px) {
  .three-grid.responsive {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 800px) {
  .three-grid.responsive {
    grid-template-columns: 1fr;
  }
}

.four-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1000px) {
  .four-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .four-grid {
    grid-template-columns: 1fr;
  }
}

.overflow {
  overflow: hidden !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.nav-logo {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 5px;
  color: white;
}
.nav-logo h5 {
  line-height: 18px;
}
.nav-logo p {
  font-size: 12px;
  text-transform: capitalize;
  line-height: 14px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  z-index: 1000;
}
@media (max-width: 1000px) {
  .navbar {
    height: 70px;
  }
}

.navbar.scrolled {
  backdrop-filter: blur(15px);
}
.navbar.scrolled svg {
  fill: black;
}
.navbar.scrolled svg path {
  fill: black !important;
}
.navbar.scrolled .language-button svg path {
  fill: black;
}
.navbar.scrolled .nav-links li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.navbar.scrolled .nav-logo {
  color: black;
}
@media (max-width: 1000px) {
  .navbar.scrolled .hamburger {
    color: black;
  }
}

.navbar .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  width: 190px;
}
@media (max-width: 1000px) {
  .logo {
    width: 150px;
  }
}

.navbar-right {
  display: flex;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .nav-links {
    gap: 2rem;
  }
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .nav-links li a {
    color: black;
  }
}

.nav-links li a:hover {
  color: #B424DE;
}

.contact-button {
  background-color: #8422E7;
  color: white;
  padding: 0.4rem 1.2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}
@media (max-width: 1000px) {
  .contact-button {
    text-align: center;
    padding: 1rem 2rem !important;
  }
  .contact-button a {
    color: white !important;
  }
}

.contact-button:hover {
  background-color: #B424DE;
}
.contact-button:hover a {
  color: white !important;
}

/* Language dropdown */
.language-dropdown {
  position: relative;
}

.language-button {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
}
.language-button svg {
  width: 25px;
  height: 25px;
}
.language-button svg path {
  fill: white;
}
@media (max-width: 1000px) {
  .language-button svg path {
    fill: black;
  }
}

.dropdown-menu {
  position: absolute;
  top: 35px;
  right: 0;
  background-color: white;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0.5rem 0;
  min-width: 120px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #333;
}

.dropdown-menu li a:hover {
  background-color: #f5f5f5;
}

/* Toggle display */
.dropdown-menu.show {
  display: block;
}

/* Hamburger menu - hidden by default */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .hamburger {
    color: white;
  }
}

/* Responsive */
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }
  .navbar-right {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background-color: white;
    display: none;
    flex-direction: column;
    border-top: 1px solid #ddd;
  }
  .navbar-right.active {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links li {
    width: 100%;
    padding: 0.5rem 0;
  }
}
@media (max-width: 1000px) and (max-width: 1000px) {
  .nav-links li {
    border-bottom: solid 1px #efefef;
  }
}
@media (max-width: 1000px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }
}
.button {
  background: #8422E7;
  color: white;
  display: inline-block;
  border-radius: 1px;
  padding: 15px 35px;
  margin-top: 30px;
  text-transform: capitalize;
  transition: 0.2s ease-in-out;
}
.button:hover {
  background: none;
  border: solid 1px #8422E7;
  transition: 0.2s ease-in-out;
}
.button:hover a {
  color: #8422E7;
}
.button:hover svg {
  margin-left: 20px;
  transition: 3s ease-in-out;
}
.button a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: end;
  justify-content: center;
}
.button svg {
  margin-left: 10px;
  transition: 3s ease-in-out;
}
.button svg rect {
  fill: white;
}
.button svg path {
  fill: #8422E7;
}

p {
  font-size: 16px;
  line-height: 28px;
}
@media (max-width: 1000px) {
  p {
    font-size: 14px;
  }
}

/* Dropdown styles */
.services-dropdown {
  position: relative;
  display: inline-block;
}

.services-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 4px;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: #000;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.dropdown-menu.show {
  display: block;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  height: 100vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@keyframes scalePulse {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.hero-fade {
  background: linear-gradient(180deg, rgba(132, 34, 231, 0.3) 0%, rgba(180, 36, 222, 0.3) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.hero-img {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1);
}

.hero-shade {
  background: linear-gradient(270deg, rgba(38, 104, 166, 0) 17%, rgb(22, 62, 100) 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.hero-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .hero-content {
    top: 40%;
  }
}
.hero-content .hero-h1 {
  color: white;
  font-size: 65px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 80px;
}
@media (max-width: 768px) {
  .hero-content .hero-h1 {
    font-size: 33px;
    width: 100%;
    line-height: normal;
  }
}
.hero-content .hero-p {
  color: white;
  line-height: 25px;
  margin: 20px auto;
  width: 40%;
}
@media (max-width: 768px) {
  .hero-content .hero-p {
    width: 100%;
  }
}
.hero-content .sub-title {
  color: white;
}
.hero-content .sub-title svg path {
  stroke: white;
  fill: none;
}
.hero-content .button {
  border: solid white;
  background: none;
  border-radius: 10px;
}
.hero-content .button svg rect {
  fill: none !important;
}
.hero-content .button svg path {
  fill: white !important;
}
.hero-content .button a {
  color: white;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #8422E7 !important;
}

.swiper-slide.swiper-slide-active .hero-img {
  animation: scalePulse 4s ease-in-out;
}

.section-title {
  color: #8422E7;
  margin: 25px 0;
  font-size: 32px;
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .section-title {
    font-size: 25px;
    margin: 15px 0;
  }
}

.about-section {
  position: relative;
}
@media (max-width: 1000px) {
  .about-section .two-grid div:nth-child(1) {
    height: 350px;
  }
  .about-section .abt-content {
    color: white;
    padding-top: 30px !important;
  }
  .about-section .abt-content p {
    width: 100% !important;
    z-index: 9 !important;
  }
  .about-section .purple-fade {
    background: linear-gradient(180deg, rgb(132, 34, 231) 52%, rgba(180, 36, 222, 0) 94%) !important;
  }
}
.about-section .about-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-section .logo-border {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 5;
}
.about-section .purple-fade {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, rgb(132, 34, 231) 52%, rgba(180, 36, 222, 0) 94%);
  width: 100%;
  height: 100%;
}
.about-section .abt-content {
  color: white;
  padding-top: 100px;
}
.about-section .abt-content p {
  width: 45%;
  z-index: 9;
  position: relative;
}
.about-section a {
  color: white;
  font-weight: bold;
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.about-section a svg {
  margin-left: 20px;
}
.about-section a rect {
  fill: none;
}
.about-section .section-title {
  color: white;
}

.experience-section {
  padding: 80px 0;
}
@media (max-width: 800px) {
  .experience-section {
    padding: 40px 0;
  }
}
.experience-section .two-grid, .experience-section .three-grid {
  grid-gap: 20px;
  margin-top: 20px;
}

.each-ex {
  background: #FBF4FD;
  padding: 30px;
  border-radius: 10px;
}
.each-ex:hover {
  color: #8422E7;
}
.each-ex:hover svg path {
  fill: #8422E7;
}
.each-ex h2 {
  font-weight: 500;
  font-size: 18px;
  margin-top: 20px;
}

footer {
  background: #FAF4FE;
  padding-top: 80px;
  position: relative;
}
footer .lightlogo {
  position: absolute;
  left: -17px;
  top: 112px;
  transform: translate(-50%, -50%);
  width: 200px;
  opacity: 0.2;
}
footer .f-top {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 800px) {
  footer .f-top {
    grid-template-columns: 1fr;
  }
  footer .f-top .p-logo {
    display: none;
  }
}
footer .f-top p {
  width: 80%;
}

.f-btm {
  display: grid;
  grid-template-columns: 2fr 4fr;
  padding: 50px 10px;
}
@media (max-width: 1000px) {
  .f-btm {
    grid-template-columns: 1fr;
  }
}
.f-btm h3 {
  color: black;
  margin-bottom: 10px;
}
.f-btm hr {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.flogo {
  border-right: solid rgba(0, 0, 0, 0.3) 1px;
  margin-right: 20px;
  padding-right: 20px;
  color: black;
}
.flogo p {
  line-height: 40px;
  text-transform: capitalize;
  font-size: 15px;
}
@media (max-width: 1000px) {
  .flogo {
    margin-bottom: 20px;
    border: none;
  }
}

.sociali {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 20px;
}
.links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.links img {
  width: 14px;
  height: 14px;
}
.links a {
  color: black;
  text-transform: capitalize;
  display: block;
  line-height: 40px;
}
@media (max-width: 1000px) {
  .links {
    grid-template-columns: 1fr;
  }
}

.web-right {
  color: black;
}

.page-banner {
  height: 400px;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
}
.page-banner .banner-fade {
  background: linear-gradient(180deg, rgba(132, 34, 231, 0.3) 0%, rgba(180, 36, 222, 0.3) 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.abt-part {
  padding-top: 80px;
  position: relative;
}
@media (max-width: 1000px) {
  .abt-part {
    padding: 30px 0;
  }
}
.abt-part.two-grid {
  grid-gap: 20px;
}
.abt-part .abt-img-part {
  border-radius: 10px;
  width: 100%;
}
.abt-part .world {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (max-width: 1000px) {
  .abt-part .world {
    top: 30%;
  }
}

.vision img {
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision .vi-content {
  padding-left: 30px;
  padding-top: 30px;
}
@media (max-width: 1000px) {
  .vision .vi-content {
    grid-row: 1;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
.vision p {
  width: 90%;
}

.value {
  padding-bottom: 80px;
  padding-top: 40px;
}
.value .three-grid {
  margin-top: 50px;
  grid-gap: 15px;
}

.each-value {
  background: #FBF4FD;
  border-radius: 10px;
  padding: 30px;
}
.each-value h4 {
  color: #B424DE;
  margin-block: 15px;
}

.each-ser {
  background: #F9F4FE;
  padding-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.each-ser img {
  width: 100%;
}
.each-ser h3 {
  padding: 20px 20px;
}
.each-ser a {
  color: #8422E7;
}
.each-ser:hover a {
  color: #B424DE;
}

.services.three-grid {
  grid-gap: 25px;
  padding-bottom: 80px;
}

.mt {
  margin-top: 50px;
}

.detail-big {
  padding: 1px 15px;
}

.s-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 20px;
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .s-detail-grid {
    grid-template-columns: 1fr;
  }
}
.s-detail-grid img {
  width: 100%;
  border-radius: 10px;
}
.s-detail-grid ul, .s-detail-grid ol {
  padding-left: 20px;
  line-height: 30px;
}
@media (max-width: 1000px) {
  .s-detail-grid ul, .s-detail-grid ol {
    padding-right: 25px;
  }
}

.s-detail-side {
  background: #F9F4FE;
  padding: 30px;
  border-radius: 10px;
}
.s-detail-side h3 {
  color: #8422E7;
}
.s-detail-side hr {
  margin: 20px 0;
  color: #e8d1ff;
}
.s-detail-side .each-sidebar {
  display: grid;
  grid-template-columns: 70px 1fr;
  grid-gap: 20px;
  font-weight: bold;
  margin: 20px 0;
  font-size: 15px;
  line-height: 30px;
}
.s-detail-side .each-sidebar:hover {
  color: #B424DE;
}
.s-detail-side .each-sidebar img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.pink-box {
  margin: 30px auto;
  padding: 50px;
  background: #F9F4FE;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .pink-box {
    margin: 30px auto;
    padding: 20px;
  }
}
.pink-box h2 {
  color: #8422E7;
  margin-bottom: 10px;
}
.pink-box ul, .pink-box ol {
  padding-left: 30px;
  line-height: 30px;
  margin-top: 30px;
}

.contactinfo {
  margin-top: 30px;
}
.contactinfo h3 {
  color: #8422E7;
  margin-bottom: 20px;
}
.contactinfo hr {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.3);
}
.contactinfo p {
  line-height: 35px;
}

.contact-form {
  padding: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
@media (max-width: 1000px) {
  .contact-form {
    padding: 20px;
  }
}

.contact-form h2 {
  color: #8422E7;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 5px;
  border: none;
  border-bottom: 1px solid #ccc;
}

.contact-form button {
  background-color: red;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #8422E7;
}

.contact-left {
  padding: 100px;
}
@media (max-width: 1000px) {
  .contact-left {
    padding: 20px;
  }
}

.contact-form-box {
  margin: 70px auto;
}

.faq {
  margin: 40px auto;
}
.faq ul {
  padding-left: 15px;
  line-height: 25px;
}

.center-h {
  text-align: center;
  margin-top: 30px;
  text-transform: capitalize;
}

.faq-item {
  margin-bottom: 8px;
  border-radius: 10px;
  padding: 10px 20px;
  background: #F9F4FE;
}

.faq-question {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 10px 0;
  outline: none;
  color: #8422E7;
  font-weight: normal;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 325px;
  padding: 10px 0;
}

.privacy {
  position: relative;
  margin-top: 120px;
  margin-bottom: 80px;
}
.privacy h1 {
  padding-left: 10px;
  margin-bottom: 20px;
}
.privacy p {
  width: 65%;
}
@media (max-width: 900px) {
  .privacy p {
    width: 100%;
  }
}
.privacy .policy-g {
  position: absolute;
  left: 85%;
  top: 50%;
  transform: translate(-50%, -50%);
}
