@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");

:root {
  /* font family */
  /* "Inter", sans-serif */
  /* --primary-font: "Open Sans", sans-serif ; */
  --primary-font: "Onest", sans-serif;

  /* font size */
  --font-size8: 0.5rem;
  /* 8px / 16px */
  --font-size12: 0.75rem;
  /* 12px / 16px */
  --font-size14: 0.875rem;
  /* 14px / 16px */
  --font-size16: 1rem;
  /* 16px / 16px */
  --font-size18: 1.125rem;
  /* 18px / 16px */
  --font-size20: 1.25rem;
  /* 20px / 16px */
  --font-size22: 1.375rem;
  /* 22px / 16px */
  --font-size24: 1.5rem;
  /* 24px / 16px */
  --font-size26: 1.625rem;
  /* 26px / 16px */
  --font-size28: 1.75rem;
  /* 28px / 16px */
  --font-size30: 1.875rem;
  /* 30px / 16px */
  --font-size32: 2rem;
  /* 32px / 16px */
  --font-size34: 2.125rem;
  /* 34px / 16px */
  --font-size36: 2.25rem;
  /* 36px / 16px */
  --font-size38: 2.375rem;
  /* 38px / 16px */
  --font-size40: 2.5rem;
  /* 40px / 16px */
  --font-size42: 2.625rem;
  /* 42px / 16px */
  --font-size44: 2.75rem;
  /* 44px / 16px */
  --font-size46: 2.875rem;
  /* 46px / 16px */
  --font-size48: 3rem;
  /* 48px / 16px */
  --font-size50: 3.125rem;
  /* 50px / 16px */
  --font-size52: 3.25rem;
  /* 52px / 16px */
  --font-size54: 3.375rem;
  /* 54px / 16px */
  --font-size56: 3.5rem;
  /* 56px / 16px */
  --font-size64: 4rem;
  /* 64px / 16px */

  --color-white: #ffffff;
  --color-surface-primary: #f4f7fe;
  --color-surface-secondary: #f9f9f9;
  --color-font-primary: #333333;
  --color-font-secondary: #666666;
  --color-font-tertiary: #767676;
  --color-font-quaternary: #999999;
  --color-font-disabled: #cccccc;
  /* Dark grey for disabled text */
  --color-primary: #f58711;
  /* Primary color remains the same */
  --color-secondary: #ed3620;
  /* Secondary color remains the same */
  --color-primary-500: #e5f2ff;
  --color-black: #000000;
  --color-light-success: #06840b;
  --color-light-success-700: #dcf6e8;
  --color-light-warning: #ffa500;
  --color-light-danger: #e90038;
  --bg-web: #f4f7fe;
}

.theme-light {
  --color-white: #ffffff;
  --color-surface-primary: #f4f7fe;
  --color-surface-secondary: #f9f9f9;
  --color-font-primary: #333333;
  --color-font-secondary: #666666;
  --color-font-tertiary: #767676;
  --color-font-quaternary: #999999;
  --color-font-disabled: #cccccc;
  /* --color-primary: #4ec3df;
  --color-secondary: #1b94b2; */
  /* Dark grey for disabled text */
  --color-primary: #f58711;
  /* Primary color remains the same */
  --color-secondary: #ed3620;
  /* Secondary color remains the same */
  --color-primary-500: #e5f2ff;
  --color-black: #000000;
  --color-light-success: #06840b;
  --color-light-success-700: #dcf6e8;
  --color-light-warning: #ffa500;
  --color-light-danger: #e90038;
  --bg-web: #f4f7fe;
}

/* Dark Theme Variables (Derived from Light Theme) */
.theme-dark {
  --color-white: #000000;
  /* Black replaces white */
  --color-surface-primary: #121212;
  /* Darker surface */
  --color-surface-secondary: #1e1e1e;
  /* Another dark surface */
  --color-font-primary: #e0e0e0;
  /* Light grey for primary text */
  --color-font-secondary: #b3b3b3;
  /* Slightly darker grey for secondary text */
  --color-font-tertiary: #999999;
  /* Darker grey for tertiary text */
  --color-font-quaternary: #7d7d7d;
  /* Even darker grey for quaternary text */
  --color-font-disabled: #666666;
  /* Dark grey for disabled text */
  --color-primary: #009aff;
  /* --color-primary: #4ec3df; */
  /* Primary color remains the same */
  --color-secondary: #0b74bb;
  /* --color-secondary: #1b94b2; */
  /* Secondary color remains the same */
  --color-black: #ffffff;
  /* White replaces black */
  --color-light-success: #00e676;
  /* Bright green for success */
  --color-light-warning: #ffca28;
  /* Bright yellow for warning */
  --color-light-danger: #ff5252;
  /* Bright red for danger */
  --bg-web: #121212;
  /* Background of web page */
}

/* Default Properties Start */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-content-zooming: none;
  -ms-touch-action: pan-x pan-y;
}

body {
  font-family: var(--primary-font);
  overflow-x: hidden;
  background-color: var(--color-surface-primary);
  line-height: normal;
}

input,
select,
textarea {
  vertical-align: middle;
  margin: 0;
  font-family: var(--primary-font);
  font-weight: 400;
}

ol,
ul,
li {
  list-style-type: none;
}

::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::selection {
  background-color: var(--color-primary);
  color: var(--color-white);
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: var(--gray-700);
}

.btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  text-decoration: none;
  font-family: var(--primary-font);
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.btn i {
  font-size: 1.3rem;
  font-weight: bolder;
}

.btn.btn-link,
.btn.let-connect {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-transform: uppercase;
}

.btn-primary {
  font-family: var(--primary-font);
  background-color: var(--color-primary);
  box-shadow: 4px 4px 20px rgba(105, 49, 224, 0.2);
  border-radius: 60px;
  padding: 16px 32px;
  font-size: var(--font-size16);
  font-weight: 600;
  line-height: normal;
  text-align: center;
  color: var(--color-white);
  border: 2px solid transparent;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: 0.5s;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus {
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
  transition: 0.5s;
  color: var(--color-primary);
}

.btn-contact {
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-size: 1rem;
}

@supports (-ms-ime-align: auto) {
  :focus,
  a,
  a:hover {
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
  }
}

@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1600px;
  }
}

p {
  line-height: 150%;
}

.card {
  background-color: var(--color-white);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 1rem;
  transition: 0.5s;
  border: 2px solid transparent;
}

img {
  max-width: 100%;
  height: auto;
}

/* Default Properties End */

/* Default Scroller Start */
::-webkit-scrollbar {
  width: 7px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-white);
}

::-webkit-scrollbar-thumb:active {
  background: var(--secondary-color);
}

/* Default Scroller End */

/* Header Section Start */

header .navbar {
  padding: 1rem 0.5rem;
  background-color: transparent !important;
  border-bottom: 1px solid var(--color-font-disabled);
}

header .navbar .navbar-brand {
  font-family: var(--primary-font);
  font-size: 2rem;
  font-weight: 800;
  color: #000000;
  letter-spacing: 0.1rem;
  padding: 0px;
}

header .navbar .navbar-brand img {
  max-height: 80px;
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-black);
}

header .navbar .navbar-collapse ul.navbar-nav li.nav-item a.nav-link.active,
header .navbar .navbar-collapse ul.navbar-nav li.nav-item a.nav-link:hover {
  color: var(--color-primary);
}

.dropdown-toggle::after {
  display: none;
}

.navbar .megamenu {
  border: none;
  border-radius: 0px;
  padding: 2rem 1.5rem;
}

.navbar .megamenu .dropdown-title {
  font-family: var(--primary-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.navbar .megamenu .dropdown-menu-list {
  list-style: none;
  padding-left: 0px;
}

.navbar .megamenu .dropdown-menu-list li.dropdown-item {
  padding: 0px;
  margin-bottom: 1rem;
}
.navbar .megamenu .dropdown-menu-list li.dropdown-item:last-child {
  margin-bottom: 0px;
}

.navbar .megamenu .dropdown-menu-list li.dropdown-item:hover {
  background-color: transparent;
}

.navbar .megamenu .dropdown-menu-list li.dropdown-item a.dropdown-link {
  text-decoration: none;
  color: var(--color-black);
  font-size: 1rem;
  font-family: var(--primary-font);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar .megamenu .dropdown-menu-list li.dropdown-item a.dropdown-link:hover {
  color: var(--color-primary);
  background-color: transparent;
  /* text-transform: uppercase; */
}
@media screen and (max-width: 767px) {
  header .navbar .navbar-collapse ul.navbar-nav li.nav-item a.nav-link {
    font-size: 1rem;
  }
  .navbar .megamenu .dropdown-menu-list li.dropdown-item a.dropdown-link {
    font-size: 0.8rem;
  }
  header nav .btn-primary {
    padding: 10px 18px;
  }
  header nav .btn-primary.navbar-toggler:focus {
    box-shadow: 0 0 0 -0.05rem;
  }
  .navbar .navbar-nav {
    margin-top: 20px;
  }
}
/* ============ desktop view ============ */
@media all and (min-width: 992px) {
  .navbar .has-megamenu {
    position: static !important;
  }

  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    min-width: fit-content;
  }
}

@media all and (min-width: 1500px) {
  .navbar .megamenu {
    max-width: 1600px;
  }
}

/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media (max-width: 991px) {
  .navbar.fixed-top .navbar-collapse,
  .navbar.sticky-top .navbar-collapse {
    overflow-y: auto;
    max-height: 90vh;
    margin-top: 10px;
  }
  header .navbar .navbar-brand img {
    max-width: 170px;
  }

  header .navbar .navbar-collapse ul.navbar-nav li.nav-item button {
    display: none;
  }
}

/* ============ mobile view .end// ============ */

.responsive-btn .navbar-toggler {
  padding: 0.5rem 0.8rem;
  font-size: var(--font-size14);
  border: none;
  background-color: var(--color-black);
  color: var(--color-white);
}

/* Header Section End */
/* Cover Section Style ::Start */

.cover-section .cover-detail {
  margin: auto inherit;
}

.cover-section .cover-detail h1 {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-black);
  line-height: normal;
}

@media screen and (max-width: 991px) {
  .cover-section .cover-detail h1 {
    font-size: 2rem;
  }
}

.cover-section .cover-detail h1 span {
  color: var(--color-primary);
}

.cover-section .cover-detail p {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--color-black);
  line-height: normal;
}

.cover-section .cover-detail .teritory-btn {
  outline: none;
  border: none;
  background-color: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}

.cover-section .cover-img {
  padding: 1rem;
}

.cover-section .cover-img img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .cover-section .cover-detail p {
    font-size: 1rem;
  }
}

/* Cover Section Style ::End */
/* 
.get-in-touch {
  margin-bottom: 100px;
}

.get-in-touch .contact-us-detail {
  display: flex;
  justify-content: space-between;
  background-color: var(--color-primary);
  padding: 45px 50px;
  border-radius: 20px;
}

.get-in-touch .contact-us-detail .contact-info {
  max-width: 40%;
  flex: 40%;
}

.get-in-touch .contact-us-detail .form {
  max-width: 50%;
  flex: 50%;
}

.get-in-touch .contact-us-detail .contact-info h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.get-in-touch .contact-us-detail .contact-info p {
  font-size: 22px;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 42px;
  font-family: "Poppins", sans-serif;
}

.get-in-touch .contact-us-detail .contact-info i {
  color: var(--color-primary);
  font-size: 30px;
  padding: 16px;
  background-color: var(--color-white);
  border-radius: 50%;
}

.get-in-touch .contact-us-detail .contact-info a {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  color: var(--color-white);
  line-height: normal;
  font-size: 22px;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  text-decoration: none;
}

.get-in-touch .contact-us-detail .form {
  max-width: 50%;
  flex: 50%;
}

.get-in-touch .contact-us-detail .form .form-card {
  margin-bottom: 40px;
}

.get-in-touch .contact-us-detail .form-group {
  margin-bottom: 16px;
}

.get-in-touch .form .form-card h3 {
  font-family: "Poppins", sans-serif;
  color: var(--color-white);
  font-size: 34px;
  font-weight: 400;
  margin-bottom: 35px;
}

input,
select,
textarea {
  border: 0;
  border-radius: 4px;
  width: 100%;
  padding: 10px 26px;
  box-sizing: border-box;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  font-family: "Poppins", sans-serif;
  color: var(--color-font-secondary);
  font-size: 22px;
  font-weight: 300;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
}

.get-in-touch .contact-us-detail input[type="submit"] {
  width: auto;
  color: var(--color-white);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.get-in-touch .contact-us-detail button.send-btn {
  border: 1px solid var(--color-white);
  color: var(--color-primary);
  font-weight: 500;
  font-size: 18px;
  background-color: var(--color-white);
  padding: 12px 67px;
}

.footer {
  display: flex;
  padding: 30px 0;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-font-quaternary);
}

.footer p {
  color: var(--color-font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-family: "Poppins", sans-serif;
  margin: 0;
}

.footer .policy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer i {
  padding-right: 12px;
} */
