@font-face {
  font-family: roboto-bold;
  src: url(/fonts/roboto-bold_Qdw1y/Roboto\ Bold/Roboto\ Bold.ttf);
}

:root {
  /* Color Palette */
  --clr-font-primary: var(--blue-700);
  --clr-border-primary: var(--blue-700);
  --color_primary: var(--blue-700);
  --accent: var(--blue-490);
  --muted: #6b7b8a;
  --bg: var(--orange-50);
  --clr-service-gallary-card-bg: var(--yellow-140);
  --clr-service-gallary-card-text: var(--blue-700);
  --clr-contact-form-submit: var(--blue-700);
  --clr-btn: var(--yellow-140);

  --blue-490: rgb(43 121 218); /*hsl(213, 70%, 51%)*/
  --orange-50: rgb(246, 244, 240); /*hsl(40, 25%, 95%)*/
  --blue-700: rgb(39,36,67); /*hsl(246, 30%, 20%)*/
  --yellow-140: rgb(252 255 114); /*hsl(61, 100%, 72%)*/

  --shd-red:7.07px 7.07px 10px 0px rgba(237, 75, 64, 0.1);
  --shd-red:0.00px 0.00px 20px 0px rgba(237, 75, 64, 0.2);
  --shd: 7.07px 7.07px 10px 0px rgba(237, 75, 64, 0.1);
  --shd-1: 0.00px 0.00px 20px 0px rgba(237, 75, 64, 0.2);
  --maxw: 1100px;
  --container-corvid-background-color: rgba(var(--bg, var(--color_11, color_11)), var(--alpha-bg, 1));

  /* footer colors */
  --footer-bg: rgb(39,36,67);
  --footer-font-color: rgb(117, 117, 117);

  /* Font colors*/
  --font-nav-logo: normal normal normal 26px/1.4em "Reklame Script W00 Medium", cursive;
  --font-nav-text: normal normal bold 16px/1.4em roboto-thin, roboto, sans-serif;
  --font-nav-text-2: normal normal normal 16px / 1.4em din-next-w01-light, sans-serif;
  --font-hero-text: normal normal normal 80px/1.2em 'Suez One', serif;
  
  --font-main-primary: normal normal normal 50px/1.6em 'Suez One', serif;
  --font-main-secondary: normal normal normal 21px/1.6em 'Suez One', serif;
  --font-main-content: normal normal normal 18px/1.6em 'Suez One', serif;

  --font-service-gallary-card-primary: normal normal bold 21px/1.4em roboto,sans-serif;
  --font-service-gallary-card-secondary: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
  --font-service-gallary-card-tertiary: normal normal normal 25px / 1.4em roboto-bold, roboto, sans-serif;

  --font-services-description: normal normal normal 18px / 1.4em roboto-thin, roboto, sans-serif;
  --font-service-card-description: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
  --font-description-primary: normal normal normal 18px / 1.4em roboto-thin, roboto, sans-serif;

  --font-btn-text: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
  --font-footer-tagline-primary: normal normal normal 24px/1.4em roboto,sans-serif;
  --font-form-label: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
  /* "Helvetica Neue W01-45 Ligh","HelveticaNeueW02-45Ligh","HelveticaNeueW10-45Ligh",sans-serif */

  /* ---fonts--- */
  --font-0: normal normal normal 26px/1.4em "Reklame Script W00 Medium", cursive;
  --font-1: normal normal bold 16px/1.4em roboto-thin, roboto, sans-serif;
  --font-2: normal normal normal 16px/1.4em din-next-w01-light, sans-serif;
  --font-3: normal normal normal 80px/1.2em 'Suez One', serif;
  --font-4: normal normal normal 50px/1.6em 'Suez One', serif;
  --font-5: normal normal normal 21px/1.6em 'Suez One', serif;
  --font-6: normal normal normal 18px/1.6em 'Suez One', serif;
  --font-7: normal normal normal 50px/1.2em 'Suez One', serif;
  --font-8: normal normal normal 50px/1.4em 'Suez One', serif;
  --font-9: normal normal bold 21px/1.4em roboto,sans-serif;
  --font-10: normal normal normal 24px/1.4em roboto,sans-serif;
  --font-11: normal normal normal 16px/1.4em roboto-thin, roboto, sans-serif;
  --font-12: normal normal normal 18px/1.4em roboto-thin, roboto, sans-serif;
  --font-13: normal normal normal 25px/1.4em roboto-bold, roboto, sans-serif;
  --font-14: normal normal normal 34px/1.4em roboto-bold, roboto, sans-serif;
  --font-15: normal normal normal 21px/1.4em roboto-bold, roboto, sans-serif;
  --font-16: normal normal bold 21px/1.4em roboto-bold, roboto, sans-serif;


  --inputHeight: 59px;
  --input-textarea: 100px;
  --input-radius: 10px 10px 10px 10px;
  --inputLabelMarginBottom: 15px;

  --textPadding: 3px;
  --textPadding_start: 15px;
  --textPadding_end: 3px;
}

* {
  box-sizing: border-box
}

body {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  color: #222;
  background: var(--bg);
  line-height: 1.5;
  /* width: 100vw; */
  /* width: 150vh; */
}

#site-root {
  /* display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;

  position: relative; */
  /* min-height: 100vh; */

  --site-width: 980px;
  min-width: var(--site-width);
  width: 100%;
}

.site-header {
  background: transparent;
  position: sticky;
  top: 0px;
  z-index: 999;
  border-top: 1px solid var(--accent);
}

.container {
  display: flex;
  align-items: top;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}


.logo-container {
  background-color: var(--accent);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
  padding: 13px 22px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: auto;
  width: 166px;
  margin-bottom: 20px;
}

.logo-container a {
  font: var(--font-nav-logo);
  color: white;
  letter-spacing: 0.4px;
  text-decoration: none;
  margin-bottom: 39px;
}

.nav {
  display: flex;
  align-items: center;
  font: var(--font-nav-text, var(--font-nav-text-2));
  background-color: rgb(255, 255, 255);
  height: 60px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.nav a {
  color: #0b1b2b;
  text-decoration: none;
  padding: 20px 22px;
  --trans2: color 0.4s ease 0s;
  transition: var(--trans2, color 0.4s ease 0s)
}

.nav a:hover {
  color: white;
  background-color: var(--accent);
}

.nav .active {
  color: white;
  background-color: var(--accent);
  height: inherit;
  border-bottom-left-radius: 10px;
}

nav a:last-child {
  border-bottom-right-radius: 10px;
}

.dropdown {
  position: relative;
}

.dropdown a {
  color: #0b1b2b;
  text-decoration: none;
  padding: 21px 22px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  background: #ffffffb0;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08);
  border-radius: 6px;
  min-width: 280px;
  padding: 8px 0;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #0b1b2b
}

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

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 50px; /* Invisible hover zone */
  background: transparent;
}


/* ---Hero section--- */
/* ------------------ */
.hero{
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  /* width: 100%;  */
  width: 100%; 
  height: 800px;
  overflow: hidden;
  position: relative;
  top: -45px;
}

.hero-bg{
	/* position: absolute;
  top: 0px;
  left: -110px; */
  /* object-fit: cover; 
  object-position: 50% 50%; */
  position: absolute;
  width: 120%;
  left: -10%;
}

.hero-bg img{
  width: 3072px;
  height: 800px;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-content{
	position: relative;
  top: 0px;
  left: 99px;
  color: var(--clr-font-primary);
}

.hero-content div{
  align-items: left;
  justify-content: left;    
}

.hero-content-title{
  margin-top:173px;
  font: var(--font-hero-text);
}

.hero-content p {
	font-size: 24px;
  margin: 0px 0px 41px 0px;
}

.hero-buttons{
  display: flex;
  gap: 1rem;
}

.hero-buttons img {
  height: 45px;
  transition: transform 0.2s ease;
}

.hero-buttons img:hover {
  transform: scale(1.05);
}


/* ---serices gallery sections--- */
/*--------------------------------*/
.services-gallery{
  margin: 20px;
  height: 382.667px;
  overflow: hidden;
  position: relative;
  top:-220px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.gallery-items{
  width: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-item{
  position: relative;
  margin: 0px;
  width: 258px;
  height: 342.667px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(43, 121, 218, 0.1) 7px 7px 10px;
  transition: opacity 0.2s;
  opacity: 1;
  display: block;
}

.gallery-link{
  cursor: pointer;
}

.gallery-item-inner{
  width: 100%;
  height: 100%;
  transition: transform 2.2s cubic-bezier(0.14, 0.4, 0.09, 0.99) !important;        
}

.gallery-item-inner:hover{
  transform: scale(1.1);
}

.gallery-item-bg{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-service-gallary-card-bg);
}

.gallery-item-bg-text{
  text-align: center;
  font: var(--font-service-gallary-card-tertiary);
  color: black;
}

.item-hover-container{
  width: 258px;
  height: 342.667px;
  margin-top: 0px;
  margin-left: 0px;
  display: flex;
  position: absolute;
  top: 0px;
  left: 0px;
  align-items: flex-end;
}

.item-hover{
  width: 258px;
  height: 342.667px;
  margin: 0px;
  position: relative;
  transition: opacity .4s ease;
  background: linear-gradient(180deg, rgba(43, 121, 218, 0), rgba(43, 121, 218, 0.8)) !important
}

.item-hover:hover{
  opacity: 0;
}

.info-element{
  height: 100%;
  width: 100%;    
}

.hover-info-element{
  height: 100%;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.info-element-title{
  overflow: hidden;
  margin-bottom: 0px;
  visibility: inherit;
  color: rgb(246, 244, 240);
  font: normal normal normal 21px / 1.4em roboto-bold, roboto, sans-serif;
}

.info-element-text{
  text-align: left;
  display: flex;
  justify-content: flex-end;
  align-content: flex-end;
  align-items: flex-start;
  direction: ltr;

  padding: 30px;
  flex-direction: column;
  margin: 0;
  box-sizing: border-box;
  height: 100%;
}



/* ---Introduction Section--- */
/*----------------------------*/
.intro-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Core fade-in base */
.fade-in {
  opacity: 0;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  transform: translate(0, 0);
}

.slide-up  { 
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 2s ease-in, transform 0.9s ease-out;

}

/* Directional offsets using data attributes */
.fade-in[data-direction="bottom"] { transform: translateY(40px); }
.fade-in[data-direction="top"]    { transform: translateY(-40px); }
.fade-in[data-direction="left"]   { transform: translateX(-40px); }
.fade-in[data-direction="right"]  { transform: translateX(40px); }

/* Final visible state */
.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}
/* Final visible state */
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-header-1{
  width: 50%;
  text-align: center;
}

.intro-header-2{
  width: 80%;
  text-align: center;
}

.intro-content{
  width: 55%;
  text-align: justify;
  font: var(--font-description-primary);
}

.intro-content span{
  font-weight: bold;
}

.intro-link{
  margin: 0px 0px 60px 0px;
}

.intro-link a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 60px;
  text-decoration: none;
  color: white;
  font: var(--font-nav-text);
  font-weight: normal;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: var(--accent);
  transition: border-color 0.4s ease 0s, background-color 0.4s ease 0s;
}

.intro-link a:hover{
  color: var(--blue-700);
  border: 1px solid var(--blue-700);
  background-color: transparent;
}

.intro-image{
  margin-bottom: 110px;
}

.intro-image img{
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shd-1);
}

.secondary-header {
  margin: 0 20px 10px 20px;
  font: var(--font-main-secondary);
  color: var(--clr-font-primary);
}

.primary-header {
  font: var(--font-main-primary);
  margin: 0 20px 20px 20px;
  color: var(--clr-font-primary);
}

.content-section {
  margin: 0 20px 40px 20px;
  color: var(--clr-font-primary);
}

/* ---Services section--- */
/* ---------------------- */
.services-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-introduction{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-introduction-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.services-header{
  max-width: 940px;
  text-align: center;
  margin-top: 77px;
}

.services-description{
  max-width: 720px;
  height: auto;
  margin: 0 20px 100px 20px;
  text-align: center;
  font:var(--font-services-description);
}

.services-description-content {
  text-align: center;
  font: var(--font-services-description);
  color: var(--clr-font-primary);
}

.services-list {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(250px, 1fr));
  gap: 80px;
  margin: 0 20px 40px 20px;
}

.services-list-grid {
  display: flex;
  flex-direction: row;
  gap: 150px;
  margin: 0 20px 40px 20px;
}

.service-card {
  display: flex;
  width: 400px;
  border-style: solid;
  border-width: 5px;
  border-radius: 20px;
  border-color: var(--accent);
  background-color: white;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.service-card-inner {
  margin: 50px;
}

.service-card-header {
  display: flex;
  align-items: center;
}

.service-card-header_title {
  font: var(--font-service-gallary-card-primary);
  margin: 0 20px 10px 20px;
  color: var(--clr-font-primary);
}

.service-card-header_subtitle {
  font: var(--font-service-gallary-card-secondary);
  margin: 0 20px 10px 20px;
  color: var(--clr-font-primary);
}

.service-card-description {
  font: var(--font-service-card-description);
  color: var(--clr-font-primary);
  text-align: justify;
}

.service-card-header img {
  width: 90px;
  height: 90px;
  border-style: solid;
  border-color: white;
  border-width: 5px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.read-more-btn{
  width: 150px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: none;
  border-radius: 10px;
  text-decoration: none;
  color: var(--blue-700);
  font: var(--font-btn-text);
  background-color: var(--clr-btn);
  transition: background-color 0.4s ease 0s;
  animation-name: fadeIn;
  animation-duration: 3s;
}
.read-more-btn:hover{
  color: white;
  background-color: var(--accent);
}

/* --Our team section-- */
/*----------------------*/
.our-team-section {
  position: static;
  width: 100%; 
  min-height: 750px;
  overflow: hidden;
  background-color: rgb(219, 57, 44);
  z-index: 0;
  display: grid;
  grid-template-columns: 100%;
}

.our-team-section-container{
  display: flex;
}

.our-team-section-inner{
  width: 770px;
  margin-left: 80px;
  margin-top: 80px;
  overflow:visible;
}

.our-team-image-container{
  display: flex;
  align-items: end;

}

.our-team-img img{
  display: flex;
  align-items: end;
}

.our-team-header{
  color: white;
  margin: 0 0 20px 0;
  font: var(--font-main-secondary);
}

.our-team-description {
  color: white;
  margin: 0 0 30px 0;
  font: var(--font-main-primary);
}

.our-team-btn {
  width: 150px;
  height: 60px;
  border-style: none;
  border-radius: 10px;
  margin-bottom: 27px;
  font: var(--font-btn-text);
  background-color: var(--clr-btn);
  transition: background-color 0.5s ease-out;
}

.our-team-btn:hover {
  width: 150px;
  height: 60px;
  border-style: none;
  border-radius: 10px;
  margin-bottom: 27px;
  font: var(--font-btn-text);
  background-color: white;
}


/* ---Contact Section--- */
/*-----------------------*/
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  background-image: url(/assets/pexels-kampus-8353820.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 10;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: center;

}

.contact-form-container {
  position: relative;
  top: -250px;
  width: 438px;
  border-radius: 20px;
  background-color: white;
  box-shadow: var(--shd);
}

.contact-form-container-inner{
  margin: 40px;
}

.form-header .form-header-text{
  margin: 0 0 19px 0;
}

.form-description .form-description-text{
  margin: 0 0 31px 0;
}

.contact-form-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.contact-form-inner > div {
  margin: 0px 0px 28px 0;
}

.full-name{
  display: flex;
  width: 100%;
  gap: 20px;
}

.full-name div{
  width: inherit;
}

.form-input{
  width: 100%;
  height: var(--inputHeight);
  border-radius: var(--input-radius);
  border-style: solid;
  border-color: var(--accent);

  padding: var(--textPadding);
  padding-inline-start: var(--textPadding_start);
  padding-inline-end: var(--textPadding_end);
}

.form-textarea{
  width: 100%;
  height: var(--input-textarea);
  border-style: solid;
  border-radius: var(--input-radius);
  border-color: var(--clr-border-primary);

  padding: var(--textPadding);
  padding-inline-start: var(--textPadding_start);
  padding-inline-end: var(--textPadding_end);
}

.form-label{
  display: inline-block;
  font: var(--font-form-label);
  margin-bottom: var(--inputLabelMarginBottom);
}

.form-submit{
  width: 100%;
  height: var(--inputHeight);
  border-radius: 10px;
  border-style: none;
  background-color: var(--color_primary);
  color: white;
  font: var(--clr-contact-form-submit);
}

/* ---Newsletter Signup--- */
/*-------------------------*/
.newsletter-signup {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.signup-container{
  background-color: var(--accent);
  border-radius: 20px;
  box-shadow: var(--shd);
}

.signup-container-inner{
  margin: 20px;
}

.signup-email-container{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}

.signup-header{
  color: white;
  width: 300px;
  height: auto;
}

.signup-email{
  width: 238px;;
}

.signup-email label{
  color: white;
}


.join-btn{
  width: 79px;
  height: 60px;
  border-style: none;
  border-radius: 10px;
  font: var(--font-btn-text);
  background-color: var(--clr-btn);
}





/* --footer section-- */
/*--------------------*/
.site-footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;  
  background-color: var(--bg);
  text-align: center;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-tagline {
  font: var(--font-footer-tagline-primary);
  margin: 0px 0px 42px 0px;
  color: var(--clr-font-primary);
  width: 940px;
}

.footer-separator {
  border-top-style: solid;
  border-top-color: var(--clr-font-primary);
  border-top-width: 1px;
  width: calc(100% - 400px);
}

.footer-container
{
  display: flex;
  flex-direction: column;
  align-items: center;  
  text-align: center;
}

.footer-container-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 10px;
  margin: 0 auto;
  text-align: left;
}

.footer-container-inner > div {
  width: 220px;
  height: 575px;
}

.footer-header {
  font: var(--font-service-gallary-card-primary);
  margin: 40px 0px 20px 0px;
  margin-bottom: 20px;
  color: var(--clr-font-primary);
}

.footer-links p{
  display: block;
  text-decoration: none;
  text-align: left;
  font: var(--font-service-gallary-card-secondary);
  color: var(--footer-font-color);
  margin-top: 0px;
  margin-bottom: 5px;
}

.footer-links a{
  display: block;
  text-decoration: none;
  text-align: left;
  color: var(--footer-font-color);
  margin-top: 0px;
  margin-bottom: 10px;
}

.footer-spacer {
  margin-left: 30px;
}

.copyright-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;

}
.copyright-text {
    font: var(--font-service-gallary-card-secondary);
  color: var(--footer-font-color);
  text-align: center;
  font-size: 20px;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes slide-vertical-up {
  from {
    transform: translateY(100px);
  }

  to {
    transform: translateY(0px);
  }
}