  
@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-down: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-about-header: normal normal normal 50px/1.2em 'Suez One', serif;
  --font-founder-header: normal normal normal 50px/1.4em '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-about-card-header: normal normal normal 34px / 1.4em roboto-bold, roboto, sans-serif;

  --font-service-card-title: normal normal normal 21px / 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-standout: normal normal normal 50px/1.4em 'Suez One', 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-screenshots-header: normal normal normal 34px / 1.4em roboto-bold, roboto, sans-serif;
  --font-screenshots-header-1: normal normal bold 21px / 1.4em roboto-bold, roboto, sans-serif;
  
  --font-rating-score: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
  --font-review-header: normal normal normal 50px/1.4em 'Suez One', serif;
  
  --font-end-section-header: normal normal normal 50px/1.4em 'Suez One', serif;
  --font-end-section-description: 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 */

  --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 {
  margin: 0;
  background: var(--bg);
  color: #0b1220;
  line-height: 1.5
}

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

.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);
  transition: var(--trans2, color 0.4s ease 0s);

}

.nav a.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;
}





.margin{
  margin:0;
}

.service-section{
  position: relative;
  width: 100%; 
  min-height: 687px;
  height: auto;
  background-image: url(/assets/pexels-fauxels-3184638.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 2px;
  overflow: visible;
  margin-top:210px;
}

.service-section-inner{
  Position: absolute;
  top: -158px;
  left: 100px;
}

.service-card {
  position: static;
  display: grid;
  width: 672px;
  height: auto;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
  border-radius: 20px;
  background-color: white;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

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

.service-card-image {
  position: relative;
  margin: 51px 0px -20px 0;
  left: 55px;
  width: 90px;
  height: 90px;
  grid-area: 1/1/2/2;
  justify-self: start;
  align-self: start;
}

.service-card-image 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));
}

.service-card-header_title {
  position: relative;
  margin: 51px 0px 6px 0;
  left: 165px;
  width:458px;
  grid-area: 1/1/2/2;
  justify-self: start;
  align-self: start;
}

.service-card-header_title h1 {
  font: var(--font-service-card-title);
  color: var(--clr-font-primary);
}


.service-card-header_subtitle {
  position: relative;
  margin: 0px 0px 45px 0;
  top: 0px;
  left: 165px;
  width:458px;
  height: auto;
  grid-area: 2/1/3/2;
  justify-self: start;
  align-self: start;
  font: var(--font-service-gallary-card-secondary);
  color: var(--clr-font-primary);
}

.service-card-description-standout{
  position: relative;
  margin: 0px 0px 20px 0;
  left: 55px;
  width: 568px;
  height: auto;
  grid-area: 3/1/4/2;
  justify-self: start;
  align-self: start;
  font: var(--font-service-card-description-standout);
  color: var(--clr-font-primary);
}

.service-card-description {
  position: relative;
  margin: 0px 0px 51px 0;
  left: 55px;
  width: 568px;
  height: auto;
  grid-area: 4/1/5/2;
  justify-self: start;
  align-self: start;
  font: var(--font-services-description);
  color: var(--clr-font-primary);
  text-align: left;
}



/* ---Overview-Section--- */
.overview-section{
  display: grid;
  width: 100%;
  height: auto;
  min-height: auto; 
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

.overview-header{
  position: relative;
  margin: 93px 0px 50px calc((100% - 980px) * 0);
  left: 100px;
  grid-area: 1/1/2/2;
  justify-self: start;
  align-items: start;
}
.overview-header h2{
  font: var(--font-screenshots-header);
}

.overview-container{
  position: relative;
  margin: 0px 80px 0px 80px;
  grid-area: 2/1/3/2;
  justify-self: start;
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.overview-item {
  max-width: 551px;
  min-width: 300px;
  min-height: 309.375px;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--blue-490);
  border-top-style: solid;
  border-top-width: 5px;
  overflow: hidden;
}

.overview-item-header h2{
  font: var(--font-screenshots-header-1);
}
.overview-item-content{
  position: relative;
  margin: 50px;
}

.overview-item-description{
  font: var(--font-services-description);
}




/* Rating Section */
.our-partners-section{
  display: flex;
  margin: 0 auto;
  position: relative;
  width: 100%;
  min-height: 300px;
  gap: 50px;
}

.rating-container{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin: 75px 0px 10px calc((100% - 980px) * 0);
}

.rating-container-inner{
  height: auto;
  width: 250px;
  margin-left: 80px;
  border-radius: 20px;
  background-color: white;
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.rating{
  display: flex;
  align-items: center;
  width: 178px;
  height: auto;
  position: relative;
  margin: 29px 0px 30px 0;
  left: 36px;
  border-radius: 20px;
  background-color: var(--blue-490);
  box-shadow: var(--shd, 0 1px 4px rgba(0, 0, 0, .6));
}

.rating-icon{
  height: 15px;
  width: 15px;
  margin: 0px 11px 4px 15px;
  fill: white;
}

.rating-score{
  height: auto;
  width: 135px;
  margin: 3px 3px 3px 0px;
  border-radius: 20px;
  background-color: white;
}

.rating-score p{
  margin: 8px 0px 8px 0px;
  font: var(--font-rating-score);
  text-align: center;
}

.review-header h2{
  font: var(--font-review-header);
}

.clients-reviews{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

.clients-reviews-inner {
  width: 1200px;
}

.reviews-list {
  display: flex;
  flex-direction: row;
  /* min-height: 400px; */
}

.review {
  display: flex;
  flex-direction: column;
  border-style: solid;
  border-width: 1px;
}

.review-quote {
  font: var(--font-rating-score);
  margin: 77px 20px 0px 20px;
}

.reviewer{
  min-height: 100px;
  margin: 0px 60px 20px 60px;
}

.reviewer p{
  margin: 0px;
  font: normal normal normal 21px / 1.4em roboto-bold, roboto, sans-serif;;
}




.action-statement-section{
  width: 100%;
  min-height: 500px;
  background-image: url(/assets/pexels-yankrukov-7793927.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;

}

.action-statement-section-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
}

.action-statement-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  background-color: var(--blue-490);
}

.action-statement-inner {
    position: relative;
}

.action-statement-header {
  width: 625px;
  height: auto;
  margin: 236px 0px 0px 0px;
  font: var(--font-end-section-header);
}

.action-statement-header h2{
  text-align: center;
  font: var(--font-end-section-header);
}

.action-statement-description{
  width: 625px;
  height: auto;
  margin: 0px 0px 200px 0px;
  text-align: justify;
  font: var(--font-end-section-description);
}



/* ------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;
}



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

/* 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(-100px); }
.fade-in[data-direction="right"]  { transform: translateX(40px); }

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