  
@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-aboutus-description: normal normal normal 18px / 1.4em roboto-thin, roboto, sans-serif;
  --font-about-statement-description: normal normal normal 16px / 1.4em roboto-thin, 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 */

  --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 {
  --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);
  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;
}


/* ---Introduction Section--- */
/* --------------------------- */

.intro-section{

}

.intro-section-inner{
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 517px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;

  text-align: left;
}

.margin{
  margin: 0px;
}

.intro-header{
  position: relative;
  margin: 99px 0px 20px calc((100% - 980px) * 0);
  left: 100px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 770px;
  height: auto;
}

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

.intro-header-subtitle{
  margin: 0 20px 10px 20px;
  font: normal normal normal 21px/1.6em 'Suez One', serif;;
  color: var(--clr-font-primary);
}

.intro-quote{
  position: relative;
  margin: 0px 0px 10px calc((100% - 980px) * 0);
  left: 100px;
  grid-area: 2 / 1 / 3 / 2;;
  justify-self: start;
  align-self: start;
  width: 770px;
  height: auto;
}

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

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

.about-us-inner{
  position: relative;
  display:flex;
  column-gap: 1tr;
  width: calc(100% - var(--padding) * 2);
}

.about-us-img-container{
  overflow: hidden;
}
.about-us-img-container-inner{
  position: relative;
  width: 120%; /* Makes the image wider than its container */
  left: -10%;
  overflow: hidden;
}

.about-us-img-container{
  height: auto;
}

.about-us-img-container-inner{
  height: 100%;
}

.about-us-img-container-inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about-us-description{
  --bg-overlay-color: var(--blue-490);

  display: grid;
  width: 100%;
  height: auto;
  min-height: 590px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
  width: 100%;
  color: white;
  background: var(--bg-overlay-color);
  font: var(--font-aboutus-description);
}

.about-us-description-inner{
  position: relative;
  left: 60px;
  margin: 85px 0px 100px calc((100% - 588px) * 0.5);
  width: 467px;
  height: auto;
  grid-area:1/1/2/2;
  justify-self: start;
  align-self: start;
}

.about-us-description-paragraph{
  line-height:1.6em; 
  font-size:18px;
  letter-spacing:normal;
}




.about-section-inner{
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 860px;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}

.about-header{
  width: 940px;
  height: auto;
  position: relative;
  margin: 137px 0px 56px calc((100% - 980px) * 0.5);
  left: 20px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}

.about-header h2{
  text-align: center;
  font: var(--font-about-header);
  font-size: 50px;
  color: var(--blue-700);
}

.about-section-inner > div{

}

.about-section-inner h3{
  margin: 0;
}
.about-section-inner p{
  margin: 0;
}

.accomplishment{
  position: relative;
  margin: 0px 0px 40px calc((100% - 980px) * 0.5);
  left:80px;
  grid-area: 2/1/3/2;
  justify-self: start;
  align-self: start;
  width: 390px;

  display: grid;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;

  border-style: solid;
  border-color: var(--blue-490);
  border-radius: 20px;
  box-shadow: var(--shd-red-down);
  background-color: white;
}
.accomplishment .header{
  width: 310px;
  height: auto;
  position: relative;
  margin: 37px 0px 20px 0;
  left: 40px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  font: var(--font-about-card-header);
  font-size: 25px;
  color: var(--blue-490);
  text-size-adjust: 100%;
}

.accomplishment .description{
  width: 310px;
  height: auto;
  position: relative;
  margin: 0px 0px 37px 0;
  left: 40px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  text-size-adjust: 100%;
  font: var(--font-about-statement-description);
}


.creativity{
  position: relative;
  margin: 0px 0px 40px calc((100% - 980px) * 0.5);
  left: 510px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 390px;

  border-style: solid;
  border-color: var(--blue-490);
  border-radius: 20px;
  box-shadow: var(--shd-red-down);
  background-color: white;
}

.creativity .header{
  width: 310px;
  height: auto;
  position: relative;
  margin: 37px 0px 20px 0;
  left: 40px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  font: var(--font-about-card-header);
  font-size: 25px;
  color: var(--blue-490);
  text-size-adjust: 100%;
}

.creativity .description{
  width: 310px;
  height: auto;
  position: relative;
  margin: 0px 0px 37px 0;
  left: 40px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  text-size-adjust: 100%;
  font: var(--font-about-statement-description);
}

.community{
  position: relative;
  margin: 0px 0px 10px calc((100% - 980px) * 0.5);
  left: 80px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
  width: 820px;

  border-style: solid;
  border-color: var(--blue-490);
  border-radius: 20px;
  box-shadow: var(--shd-red-down);
  background-color: white;
}

.community .header{
  width: 638px;
  height: auto;
  position: relative;
  margin: 37px 0px 20px 0;
  left: 40px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  font: var(--font-about-card-header);
  font-size: 25px;
  color: var(--blue-490);
  text-size-adjust: 100%;
}

.community .description{
  width: 740px;
  height: auto;
  position: relative;
  margin: 0px 0px 37px 0;
  left: 40px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  text-size-adjust: 100%;
  font: var(--font-about-statement-description);
}




.founder-section{
  min-width: 980px;

}

.founder-section-inner{
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-details{

  display: grid;
  height: auto;
  min-height: auto;
  width: 100%;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;

  width: calc(100% - 100px - 100px);
  color: white;
  background-color: var(--blue-700);
}

.founder-details-header{
  width: 940px;
  height: auto;
  position: relative;
  margin: 112px 0px 69px calc((100% - 980px) * 0.5);
  left: 20px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;

  text-align: center;
}

.founder-details-header h2{
  margin: 0;
 font: var(--font-founder-header);
}

.founder-profile{
  width: calc(100% - 100px - 100px);
  left: 0;
  margin-left: 100px;
  min-width: initial;
  
  position: relative;
  margin: 0px 100px 0px 100px;
  left: 0;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: stretch;
  align-self: start;

  width: calc(100% - 100px - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img{
  height: 266.667px;
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
}

.founder-img img{
  width: 100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.founder-profile-details{
  width: 100%;
  height: 157.6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 5px;
}

.founder-name{
  font: normal normal normal 21px / 1.4em roboto-bold, roboto, sans-serif !important;
}

.founder-position{
  font: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif !important;
}





/* ---Office Section--- */
.office-section{
  background-image: url(/assets/pexels-kampus-8353820.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

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

.office-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  /* z-index: 10; */
}

.executive-office-details{
  display: grid;
  grid-template-rows: repeat(2, min-content) 1fr ;
  grid-template-columns: 100%;
  color: white;
}

.executive-office-details .header{
  position: relative;
  left: 47px;
  width: 390px;
  height: auto;
  margin: 225px 0px 10px calc((100% - 490px) * 0.5);
  grid-area: 1/1/2/2;
  align-self: start;
  justify-self: start;
}

.executive-office-details .header h2{
  margin: 0;
  font: normal normal normal 21px / 1.4em roboto-bold, roboto, sans-serif;
}

.executive-office-details .subheader {
  position: relative;
  left: 47px;
  width: 390px;
  height: auto;
  margin: 0px 0px 20px calc((100% - 490px) * 0.5);
  grid-area: 2/1/3/2;
  align-self: start;
  justify-self: start;
  font: normal normal normal 50px / 1.4em 'suez one', serif;
}

.executive-office-details .subheader p{
  margin: 0;
}


.executive-office-details .description{
  position: relative;
  left: 47px;
  width: 395px;
  height: auto;
  margin: 0px 0px 10px calc((100% - 490px) * 0.5);
  grid-area: 3/1/4/2;
  align-self: start;
  justify-self: start;
  font: normal normal normal 18px / 1.4em roboto-thin, roboto, sans-serif;
}

.executive-office-details .description p{
  margin: 0;
}

.page-divider{
  min-height: 100px;
}


.other-offices {
  position: static;
  display: grid;
  width: 100%;
  height: auto;
  min-height: 802px;
  grid-template-rows: 1fr;
  grid-template-columns: 100%;
}

.other-offices-container {
  position: relative;
  margin: 205px 0px 10px calc((100% - 490px) * 0.5);
  left: 50px;
  width: 390px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;

  border-radius: 20px;
  background-color: white;
  box-shadow: var(--shd);
}

.other-offices-container-inner{
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}

.offices-header-container{
  margin: 0 0 31px 0;
}

.offices-header h2{
  margin: 40px 0 0 0;
  font: normal normal normal 21px / 1.4em roboto-bold, roboto, sans-serif;
}

.offices-subheader p{
  margin: 0;
}

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

.offices-header-container{
  position: relative;
  left: 46px;
}

.office-location{
  position: relative;
  margin: 0px 0px 20px 0;
  left: 46px;
  font: normal normal bold 16px / 1.4em roboto-thin, roboto, sans-serif;
}

.office-location p{
  margin: 0;
}


.location-btn-container{
  width: 203px;
  height: 60px;
  border-style: none;
  border-radius: 10px;
  font: var(--clr-contact-form-submit);
  color: white;
  background-color: var(--color_primary);

  position: relative;
  margin: 0px 0px 42px 0;
  left: 46px;
  grid-area: 6 / 1 / 6/ 2;
  justify-self: start;
  align-self: start;

  display: flex;
  align-items: center;
  justify-content: center;

  font: normal normal normal 16px / 1.4em roboto-thin, roboto, sans-serif;
}

.location-btn{
  color: white;
  text-decoration: none;
}





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




