/* ========================================================================== 
   #Browser Reset - start
========================================================================== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, del, dfn, em, 
font, img, ins, kbd, q, s, samp, small, strike, strong, sub, s up, tt, var, h1, h2, h3, h4, h5, h6, p, blockquote, 
pre, a, abbr, acronym, address, big, cite, code, dl, dt, dd, ol, ul, li, fieldset, form, label, legend{
    margin: 0;
    border: 0;
    outline: 0;
    padding: 0;
    font-size: 100%;
    font-family: inherit;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
}

/* ===================================
   SAPTEC - Clean CSS (No --tw Prefix)
   =================================== */

/* ==========================================================================
   Creative Heading - Start
========================================================================== */
body{
    font-family: "Montserrat", sans-serif;
}
.azard-text-creative_holder {
  position: relative;
  z-index: 2;
}

.azard-text-creative_inner {
  overflow: hidden;
  opacity: 1;
}

.azard-text-creative_content {
  position: relative;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  font-size: 170px;
  text-transform: uppercase;
  font-weight: 900;
  color: hsl(var(--foreground));
  text-align: center;
  width: 100%;
  line-height: 150px;
}
.subhead{
    font-size: 20px;
    text-align: right;
    color: #adadad;
    opacity: 0;
    animation: fadeInSubhead 1s ease forwards;
    animation-delay: 1500ms;
    position: absolute;
    top: -13px;
    right: 24px;
    text-transform: uppercase;
    font-weight: 500;
}

@keyframes fadeInSubhead {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.azard-text-creative_content.active {
  opacity: 1;
  visibility: visible;
}

.azard-text-creative_content span {
  display: inline-block;
  position: relative;
  transform: translate(0%, 110%) rotate(20deg);
  opacity: 0;
  visibility: visible;
}

.azard-text-creative_content.active span {
  animation: 1s creative_text cubic-bezier(0.81, 0.065, 0.21, 1) forwards;
  animation-delay: calc(0.01s * var(--i));
}

@keyframes creative_text {
  0% {
    transform: translate(0%, 110%) rotate(20deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes creative_text {
  0% {
    transform: translate(0%, 110%) rotate(20deg);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
    visibility: visible;
  }
}

.azard-creative-space-warp {
  display: inline-block;
}
.line{
    width: 0;
    height: 1px;
    background: white;
    margin: 20px auto;
    animation: lineExpand 1s ease forwards;
    animation-delay: 2s;
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 1105px;
  }
}

/* ==========================================================================
   Creative Heading - End
========================================================================== */



.spcing-3{
    position: relative;
    width: 100%;
    height: 50px;
}
:before, :after {
  content: "";
}



body {
  margin: 0;
  line-height: inherit;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Tajawal, Outfit, sans-serif;
}

.hero-section {
  width: 100%;
  min-height: 100vh;
  background-image: url('background-01.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-bottom: 4rem;
  align-items: center;
  justify-content: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.logo-center img {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(200px);
  animation: logoFadeSlide 1s ease forwards;
}

@keyframes logoFadeSlide {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
  }

  83.33% {
    opacity: 1;
    visibility: visible;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.cards-section {
  position: relative;
  z-index: 2;
  width: 1400px;
  margin-top: 32px;
  opacity: 0;
  visibility: hidden;
  animation: showCards 0.5s ease forwards;
  animation-delay: 2500ms;
}

@keyframes showCards {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: Outfit, Tajawal, sans-serif;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

p {
  margin: 0;
}

/* === CSS Variables === */
:root {
  --background: 220 30% 5%;
  --foreground: 0 0% 98%;
  --card: 220 25% 10%;
  --card-foreground: 0 0% 98%;
  --primary: 0 0% 100%;
  --primary-foreground: 220 30% 5%;
  --secondary: 220 20% 15%;
  --secondary-foreground: 0 0% 98%;
  --muted: 220 20% 18%;
  --muted-foreground: 220 10% 60%;
  --accent: 185 100% 60%;
  --accent-foreground: 220 30% 5%;
  --border: 220 20% 20%;
  --radius: 1.5rem;
  --glass-bg: 220 30% 12% / .6;
  --glass-border: 0 0% 100% / .1;
  --gradient-glass: linear-gradient(135deg, hsl(0 0% 100% / .08) 0%, hsl(0 0% 100% / .02) 100%);
  --gradient-cyan: linear-gradient(135deg, hsl(0 0% 100%) 0%, hsl(0 0% 100%) 100%);
  --shadow-glass: 0 8px 32px hsl(0 0% 0% / .3), inset 0 1px 0 hsl(0 0% 100% / .1);
}

* {
  border-color: hsl(var(--border));
}

/* === Layout Classes === */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.pt-16 {
  padding-top: 4rem;
}

.gap-8 {
  gap: 22px;
}

.flex.flex-wrap {
  justify-content: space-between;
}

/* === Positioning === */
.group {
  position: relative;
width: 25%;
transform: translateY(210px);
opacity: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.-top-16 {
  top: -4rem;
}

.top-0 {
  top: 0;
}

.left-1\/2 {
  left: 50%;
}

/* === Transform === */
.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.left-1\/2.-translate-x-1\/2 {
  left: 50%;
  transform: translateX(-50%);
}

.top-0.left-1\/2.-translate-x-1\/2.-translate-y-1\/2 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* === Display === */
.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

/* === Sizing === */
.w-px {
  width: 1px;
}

.w-3 {
  width: 0.75rem;
}

.w-12 {
  width: 5rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-full {
  width: 100%;
}

.h-1 {
  height: 0.05rem;
}

.h-3 {
  height: 0.75rem;
}

.h-12 {
  height: 3rem;
}

.h-20 {
  height: 5rem;
}

.h-full {
  height: 100%;
}

/* === Spacing === */
.p-8 {
  padding: 2rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

/* === Borders & Radius === */
.rounded-full {
  border-radius: 9999px;
}

.rounded-3xl {
  border-radius: 2rem;
}

.border-2 {
  border-width: 2px;
}

/* === Colors & Backgrounds === */
.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-primary\/20 {
  background-color: hsl(var(--primary) / 0.2);
}

.border-primary\/30 {
  border-color: hsl(var(--primary) / 0.3);
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

/* === Gradients === */
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--gradient-stops));
}

.from-transparent {
  --gradient-from: transparent;
  --gradient-stops: var(--gradient-from), var(--gradient-to, transparent);
}

.via-primary {
  --gradient-stops: var(--gradient-from, transparent), hsl(var(--primary)), var(--gradient-to, hsl(var(--primary) / 0));
}

.to-primary {
  --gradient-to: hsl(var(--primary));
}

.from-transparent.via-primary.to-primary {
  background-image: linear-gradient(to bottom, transparent, hsl(var(--primary)), hsl(var(--primary)));
}

/* === Effects === */
.overflow-hidden {
  overflow: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-60 {
  opacity: 0.6;
}

.blur-xl {
  filter: blur(24px);
}

/* === Typography === */
.text-center {
  text-align: center;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-display {
  font-family: Outfit, Tajawal, sans-serif;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

/* === Transitions === */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.15s;
}

.duration-300 {
  transition-duration: 0.3s;
}

.duration-500 {
  transition-duration: 0.5s;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* === Glass Morphism Effect === */
.glass {
  background: var(--gradient-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid hsl(var(--glass-border));
  box-shadow: var(--shadow-glass);
}

/* === Border Glow Effect === */
.border-glow {
  position: relative;
}

.border-glow:before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  border-radius: inherit;
  padding: 2px;
  background: var(--gradient-cyan);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.border-glow:hover:before {
  opacity: 1;
}

/* === Animations === */
@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.animate-reveal {
  animation: reveal-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 2.7s;
}
.logo-class{
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 15px;
    height: 60px;
    display: flex;
    align-items: center;
}
.link-footer a{
  color: #864aff;
}
/* === Special Positioning Combinations === */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* === Card Container === */
.flex.flex-wrap > .group {
  flex: 0 0 100%;
  max-width: 100%;
}

/* === Responsive Design === */
@media (min-width: 640px) {
  .flex.flex-wrap > .group {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .flex.flex-wrap > .group {
    flex: 0 0 22%;
    max-width: 22%;
  }
  
  .lg\:gap-6 {
    gap: 1.5rem;
  }
}


.footer-area .col-lg-6,.col-lg-3{
	padding:20px 0;
	color:#fff;

}
.footer-area .icon{
	font-size:26px;
}
.footer-area .single-contact-address{
	line-height:2
}
.footer-area h5{
		line-height: 2 !important;
    padding: 10px;
    color: #c1c1c1;
}
.parallax{
	background:url(../img/bg.png) no-repeat;
	background-size:cover;
}

.flags {
  border-radius: 50%;
  border: solid 2px #fff;
  height: 50px;
  margin-bottom: 12px;
  box-shadow: 0px 10px 10px #ccc;
}

.gap-3 {
  gap: 1rem;
}
.footer-area{
        border-top: 1px solid #fff;
        padding-top: 100px;
        padding-bottom: 20px;
}
    .container {

        width: 1140px;
        margin: 0 auto;
        background-color: #0a0c18;
    }
    .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.footer-area .single-contact-address {
    line-height: 2;
}
.flex-row {
    flex-direction: row !important;
}
.d-flex {
    display: flex !important;
}
.flex-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
    .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
        .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }


 @media only screen and (max-width: 1200px) {
    .cards-section {
         width: 950px;
        padding: 0 15px;
    }
  }

  @media only screen and (max-width: 1024px) {
  
  }

  @media only screen and (max-width: 992px) {
  .cards-section{

    width: 728px;
  }
  }
  @media only screen and (max-width: 767px) {
  .cards-section{
    width: 560px;
  }
}
@media only screen and (max-width: 600px) {
    .cards-section{
        width: 420px;
    }
    .azard-text-creative_content{
      font-size: 90px;
      line-height: 90px;
    }
    .subhead{
      font-size: 15px;
    }

    .flex-wrap-mob{
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;  
    }
    .group{
      width: 100%;
      margin-top: 40px;
    }
@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
  }
@media only screen and (max-width: 480px) {
  .cards-section{
    width: 90%;
    margin: 0 auto;
  }
}
