/*!
 * style.scss
 * 
 * Main entry point for compiling all SCSS files.
 * Imports partials and defines global project styles.
 */
/*!
 * _elements.scss
 * 
 * Base styles for standard HTML elements.
 * Includes root, body, a.
 */
:root {
  --transition: all 0.4s ease;
  --transition-link: all 0.2s ease;
  --transition-after-image: all 0.3s ease-in-out;
  --transition-fast: all 0.1s ease;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-round: 50%;
  --header-hight: 4.5rem;
}

/* Safe: only hides outline when using mouse, not keyboard */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px dashed var(--bs-primary);
  outline-offset: 2px;
  border-radius: 0.1rem;
}

body {
  background-color: var(--bs-body-bg);
  font-family: "Source Sans 3";
  font-weight: 400;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Libre Franklin";
  font-weight: 900;
  color: var(--bs-body-color);
  line-height: 0.9;
}

@media (max-width: 767.98px) {
  h1, h2, h3, h4, h5, h6 {
    line-height: 1;
  }
}
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

@media (min-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.3rem;
  }
  h6 {
    font-size: 0.9rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.7rem;
  }
  h3 {
    font-size: 2.6rem;
  }
  h4 {
    font-size: 2.3rem;
  }
  h5 {
    font-size: 2rem;
  }
  h6 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}
/*!
 * _classes.scss
 * 
 * Utility-based SCSS file containing global helper classes.
 * Includes reusable styling for spacing, text alignment, display, and other common patterns.
 */
.rtl {
  text-align: right;
}

.rtl-md {
  text-align: right;
}
@media (max-width: 767.98px) {
  .rtl-md {
    text-align: left;
  }
}

.small-h3 {
  font-family: "Source Sans 3";
  font-size: 1.9rem;
  font-weight: 500;
}

/*!
 * _mixins.scss
 * 
 * Centralized SCSS mixins for layout utilities, responsiveness, and reusability across the project.
 * Include reusable styles like section layouts, media queries, and fallback handling for consistent styling.
 */
/*---------- Header ----------*/
#website-header {
  background-color: #000;
  height: 4.5rem;
  padding: 1rem 0;
  top: 0;
  z-index: 1000;
}
#website-header #top-nav .nav-link {
  color: var(--bs-body-color);
}
@media (max-width: 767.98px) {
  #website-header {
    border-bottom: 0.2rem solid var(--bs-border-color);
    position: sticky;
  }
}
#website-header .header-container {
  position: relative;
}
#website-header .header-container .header-logo .logo-img {
  max-width: 250px;
  height: auto;
  transition: var(--transition);
}
@media (max-width: 991.98px) {
  #website-header .header-container .header-logo .logo-img {
    max-width: 210px;
  }
}
@media (max-width: 767.98px) {
  #website-header .header-container .header-logo .logo-img {
    max-width: 180px;
  }
}
#website-header .header-container .mobile-menu-toggle {
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1002;
}
#website-header .header-container .mobile-menu-toggle .toggle-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--bs-body-color);
  margin: 5px 0;
  transition: var(--transition);
}
#website-header .header-container .mobile-menu-toggle[aria-expanded=true] .toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#website-header .header-container .mobile-menu-toggle[aria-expanded=true] .toggle-bar:nth-child(2) {
  opacity: 0;
}
#website-header .header-container .mobile-menu-toggle[aria-expanded=true] .toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
#website-header .header-container .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 767.98px) {
  #website-header .header-container .nav-wrapper {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bs-card-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    transition: var(--transition);
    z-index: 1001;
  }
  #website-header .header-container .nav-wrapper.active {
    right: 0;
  }
}
#website-header .header-container .main-nav .nav-list {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  #website-header .header-container .main-nav .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }
}
#website-header .header-container .main-nav .nav-link {
  color: var(--bs-body-color);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}
#website-header .header-container .main-nav .nav-link:hover {
  color: var(--bs-link-hover-color);
}
#website-header .header-container .main-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--bs-link-hover-color);
  transition: var(--transition);
}
#website-header .header-container .main-nav .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 767.98px) {
  #website-header .header-container .main-nav .nav-link {
    display: block;
    padding: 0.75rem 0;
  }
}
#website-header .header-container .language-selector {
  position: relative;
}
#website-header .header-container .language-selector .lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bs-body-color);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
#website-header .header-container .language-selector .lang-btn:hover, #website-header .header-container .language-selector .lang-btn:focus {
  background-color: var(--bs-card-bg);
  border-color: var(--bs-link-hover-color);
  color: var(--bs-link-hover-color);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  outline: none;
}
#website-header .header-container .language-selector .lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  background-color: var(--bs-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0.5rem;
  min-width: 150px;
  list-style: none;
  z-index: 1000;
}
@media (max-width: 767.98px) {
  #website-header .header-container .language-selector .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
  }
  #website-header .header-container .language-selector .lang-dropdown.active {
    display: block;
  }
}
#website-header .header-container .language-selector[aria-expanded=true] .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#website-header .header-container .language-selector .lang-flag {
  width: 20px;
  height: auto;
}
@media (max-width: 575.98px) {
  #website-header .header-container .language-selector .lang-text {
    display: none;
  }
}
#website-header .header-container .language-selector .lang-arrow {
  display: inline-block;
  margin-left: 6px;
  margin-bottom: 0.2rem;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
[aria-expanded=true] #website-header .header-container .language-selector .lang-arrow {
  transform: rotate(-135deg);
}
#website-header .header-container .language-selector[aria-expanded=true] .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#website-header .header-container .language-selector .lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: var(--bs-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 1000;
  list-style: none;
}
@media (max-width: 767.98px) {
  #website-header .header-container .language-selector .lang-dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0;
  }
  #website-header .header-container .language-selector .lang-dropdown.active {
    display: block;
  }
}
#website-header .header-container .language-selector .lang-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  color: var(--bs-body-color);
  text-decoration: none;
  transition: var(--transition);
}
#website-header .header-container .language-selector .lang-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.98px) {
  #website-header .header-container .language-selector {
    width: 100%;
    margin-top: 1.5rem;
  }
  #website-header .header-container .language-selector .lang-btn {
    width: 100%;
    justify-content: center;
  }
  #website-header .header-container .language-selector .lang-dropdown {
    width: 100%;
  }
}

.mobile-menu-overlay {
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

body.menu-open {
  overflow: hidden;
}

/*---------- Contact us ----------*/
#contact-us-section {
  width: 100%;
  background-image: url(../img/backgrounds/contact-us-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 2.4;
  position: relative;
  min-height: 50rem;
  background-position: center left;
  aspect-ratio: 3/2;
  position: relative;
  background-size: cover;
}
@supports not (aspect-ratio: 1/1) {
  #contact-us-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (2.4));
  }
}
@media (min-width: 992px) {
  #contact-us-section {
    min-height: auto;
    background-position: center left;
    aspect-ratio: 6016/2473 !important;
    position: relative;
    background-size: contain;
  }
}
#contact-us-section .section-details {
  color: var(--bs-card-color-dark);
  background-color: #fff;
}
#contact-us-section .section-details h1 {
  font-weight: 200;
  color: var(--bs-card-color-dark);
  border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.4);
}
#contact-us-section .section-details #contact-form .captcha label {
  display: inline;
}
#contact-us-section .section-details #contact-form .captcha #captcha {
  display: inline;
  width: 70px;
}
@media (max-width: 767.98px) {
  #contact-us-section .section-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
}

/*---------- About us ----------*/
#about-us-section {
  width: 100%;
  background-image: url(../img/backgrounds/about-us-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 1.5;
  position: relative;
  min-height: 50rem;
  background-position: center left;
  position: relative;
  background-size: cover;
  background-color: var(--inner-section-bg);
}
@supports not (aspect-ratio: 1/1) {
  #about-us-section::before {
    content: "";
    display: block;
    padding-top: calc(100% / (1.5));
  }
}
@media (min-width: 992px) {
  #about-us-section {
    min-height: auto;
    background-size: contain;
  }
}
#about-us-section .section-details {
  color: var(--bs-body-color);
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
}
#about-us-section .section-details h1 {
  font-weight: 400;
  color: #fff;
}
#about-us-section .section-details .small-h3 {
  font-size: 1.6rem;
  color: var(--bs-primary);
}
@media (min-width: 992px) {
  #about-us-section .section-details p {
    font-size: 1.15rem;
  }
}
@media (max-width: 767.98px) {
  #about-us-section .section-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
  }
}

/*---------- Text base section ----------*/
#text-base-section {
  background-image: url("../img/backgrounds/background-text-base.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
#text-base-section .section-title {
  position: relative;
}
#text-base-section .section-title h1 {
  color: var(--bs-primary);
  text-transform: uppercase;
}
#text-base-section .section-title h1::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 28%;
  top: -1rem;
  left: 0;
  background-color: var(--bs-primary);
}
@media (min-width: 992px) {
  #text-base-section .section-title h1::before {
    width: 15%;
  }
}
@media (min-width: 1200px) {
  #text-base-section .section-title h1::before {
    width: 12%;
  }
}
#text-base-section .section-title p {
  color: var(--bs-card-color-dark);
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  #text-base-section .section-title p {
    width: 60%;
  }
}
@media (min-width: 992px) {
  #text-base-section .section-title p {
    width: 50%;
  }
}
#text-base-section .section-content {
  color: var(--bs-card-color-dark);
}
#text-base-section .section-content h2, #text-base-section .section-content h3 {
  color: var(--bs-card-color-dark);
  font-size: 1rem;
  font-weight: 700;
}
#text-base-section .section-content .hosting-services {
  color: var(--bs-primary-darker);
}

/*---------- FAQ ----------*/
.faq-page .section-title h1 {
  font-size: 1.2rem;
  line-height: 1.5;
  text-transform: capitalize !important;
}
.faq-page .section-title h1::before {
  display: none !important;
}
.faq-page .section-title #faq-form {
  position: relative;
}
.faq-page .section-title #faq-form .submit-btn {
  position: absolute;
  top: 0;
  left: 0.9rem;
  height: 100%;
  width: 2rem;
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
}
.faq-page .section-title #faq-form .submit-btn::after {
  content: "";
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  width: 1.2rem;
  background-image: url("../img/svg-icons/search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media (min-width: 768px) {
  .faq-page .section-title {
    width: 60%;
  }
  .faq-page .section-title h1 {
    font-size: 1.7rem;
  }
}
@media (min-width: 992px) {
  .faq-page .section-title {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .faq-page .section-title {
    width: 40%;
  }
}
.faq-page .section-footer .wrapper .items .item {
  background-color: #fff;
  min-height: 6rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: var(--transition-fast);
}
.faq-page .section-footer .wrapper .items .item .title {
  color: var(--bs-card-color-dark);
  font-weight: 800;
  font-size: 1.2rem;
}
.faq-page .section-footer .wrapper .items .item .description {
  color: var(--bs-card-color-dark);
  font-size: 0.8rem;
}
.faq-page .section-footer .wrapper .items .item:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .faq-page .section-footer .wrapper {
    width: 75%;
  }
}
@media (min-width: 992px) {
  .faq-page .section-footer .wrapper {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .faq-page .section-footer .wrapper {
    width: 50%;
  }
}

.faqs .faq .faq-question {
  position: relative;
}
.faqs .faq .faq-question h3 {
  color: var(--bs-card-color-3) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  line-height: 1.5;
  transition: var(--transition-fast);
}
@media (min-width: 768px) {
  .faqs .faq .faq-question h3 {
    font-size: 0.93rem !important;
    font-weight: 600 !important;
  }
}
.faqs .faq .faq-question::before {
  content: "+";
  top: 0;
  position: absolute;
  left: -1rem;
  vertical-align: middle;
  width: 1rem;
  height: 1rem;
  font-weight: 500;
}
.faqs .faq .faq-answer {
  background-color: rgba(var(--inner-section-bg-rgb), 0.5);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.faqs .faq .faq-answer p, .faqs .faq .faq-answer li {
  color: var(--bs-card-color-2) !important;
  font-size: 0.94rem !important;
}
.faqs .faq:hover {
  color: var(--bs-primary);
}
.faqs .faq:hover .faq-question h3 {
  transform: translate(0.3rem);
  color: var(--bs-primary) !important;
}

/*---------- Footer ----------*/
#website-footer .column-wrapper .footer-col-title {
  font-size: 1.1rem;
}
#website-footer .column-wrapper ul {
  color: var(--bs-link-color);
}
#website-footer .column-wrapper ul li a {
  color: var(--bs-link-color);
  transition: var(--transition-fast);
  position: relative;
  display: inline-block;
  font-size: 0.9rem;
}
#website-footer .column-wrapper ul li a:hover {
  color: var(--bs-link-hover-color);
  transform: translateX(0.2rem);
}
@media (min-width: 992px) {
  #website-footer .column-wrapper {
    display: table;
    margin: auto;
  }
}
#website-footer .footer-bottom p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--bs-secondary-color);
}
@media (max-width: 1199.98px) {
  #website-footer .footer-col-title {
    font-size: 1.1rem !important;
  }
  #website-footer ul li a {
    font-size: 0.9rem !important;
  }
}
@media (max-width: 767.98px) {
  #website-footer .footer-col-title {
    font-size: 1rem;
  }
  #website-footer ul li a {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=styles.css.map */
