@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


html {
    font-size: 22px; /* 1rem = 18px */
}


body {
	margin:0 auto;
  height:100vh;
	font-family: "Inter", sans-serif;
}

.dark {
	/*background-color: #0f0c0c ;*/
	/*background-color: #19303c ;*/
	background-color: #191b1f;
}

.light {
	/*background-color: #f5f5f3;*/
	background-color: #e6e5dd;
}

h1 {
	display:block;
	font-weight:200;
	font-size: 2.6rem;
	margin:0;
	line-height: 1.2em;
	letter-spacing:4px;
	opacity: 0;
	animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

h2 {
	font-size:2rem;
	font-family: "Playfair Display", serif;
	text-align: center;
	font-style:italic;
	font-weight:400;
}

.home {
	/*height: 100vh;*/
  min-height: 100%;
  min-width: 100%;
	background: linear-gradient(0deg, #05253e, #191b1f);
    background-size: 1000000% 100000%;
    -webkit-animation: AnimationName 60s ease infinite;
    -moz-animation: AnimationName 60s ease infinite;
    animation: AnimationName 60s ease infinite;
	backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

@-webkit-keyframes AnimationName {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}
@-moz-keyframes AnimationName {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}
@keyframes AnimationName {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}


.containerHome {
	max-width: 700px;
	/*height: 30vh;*/
    display: flex;
    align-items: top;
    justify-content: center;
	padding-top:12em;
	flex-direction: column;
}

@media (max-width: 1024px) {
	.containerHome {
		/*padding-left:1.5em;*/
		padding-right:1.5em;
		padding-top:4em;
	}
}

.containerHome h1 {
	color:#e6e5dd;
	font-size: clamp(1.4rem, 0.35rem + 4vw, 2.6rem) !important;
}

.containerHome h2 {
	color:#9c9ea5 !important;
	font-family: "Inter", sans-serif;
	font-weight:300;
	font-size: clamp(1.2rem, 0.725rem + 1.2vw, 1.5rem) !important;
	text-align: left;
	font-style: normal;
	border-top: 1px solid #333;
    padding-top: 15px;
}


a:link, a:visited {
	text-decoration: underline;
	color:#9c9ea5;
	font-weight:200;
	letter-spacing:1px;
}

a:hover, a:active {
	text-decoration: underline;
	color:#0077b6;
}










/*HEADER & NAV*/
.site-header {
  width: 100%;
  position: relative;
  z-index: 1001;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1rem + 30px) calc(2rem + 22px) 1rem calc(2rem + 22px); /* 30px top + 22px L/R */
  position: relative;
}

@media (max-width: 1024px) {
	.header-container {
	  padding: calc(1rem + 15px) calc(2rem + 0px) 1rem calc(2rem + 0px); /* 30px top + 22px L/R */
	}
}



/* Logo */
.logo-img {
  height: 35px;
  display: none;
}
body.light .dark-logo { display: block; }
body.dark .light-logo { display: block; }

/* Nav + Contact - RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 300;
  transition: color 0.5s ease;
	text-transform: uppercase;
	font-size:0.8rem;
}

/* Contact Button */
.contact-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 60px;
  font-weight: 300;
  color: #e6e5dd;
  cursor: pointer;
  transition: background-color 0.5s ease;
	font-size:0.8rem;
	text-transform: uppercase;
}

/* Theme Colors */
body.light .nav-links a { color: #191b1f; }
body.light .nav-links a:hover { color: #666; }
body.light .contact-btn { background: #191b1f; color:#e6e5dd;}
body.light .contact-btn:hover { background: #666; color:#e6e5dd;}
body.light .site-footer a { color: #191b1f; text-decoration: underline;  transition: color 0.5s ease; }
body.light .site-footer a:hover { color: #b0bfcc; }
body.light .site-footer__email, body.light .site-footer__social-link, body.light .site-footer__copyright { color: #191b1f; }
body.light .split-intro { color: #191b1f; }
body.light h2 { color: #191b1f; }
body.light p { color: #191b1f; }
body.light a, body.light a:link, body.light a:visited { color: #191b1f;}


body.dark .nav-links a { color: #b0bfcc; }
body.dark .nav-links a:hover { color: #666; }
body.dark .contact-btn { background: #333; }
body.dark .contact-btn:hover { background: #DEDDD3; color:#333; }
body.dark .site-footer a { color: #e6e5dd; text-decoration: underline;  transition: color 0.5s ease; }
body.dark .site-footer a:hover { color: #b0bfcc; }
body.dark .site-footer__email, body.dark .site-footer__social-link, body.dark .site-footer__copyright { color: #e6e5dd; }
body.dark .split-intro { color: #e6e5dd; }
body.dark h2 { color: #e6e5dd; }
body.dark p { color: #e6e5dd; }
body.dark a, body.dark a:link, body.dark a:visited { color: #e6e5dd;}


/* Hamburger Toggle - POSITIONED TOP RIGHT - ADJUSTED FOR PADDING */
.menu-toggle {
  display: none;
  position: absolute;
  top: calc(1.5rem + 25px);
  right: calc(2rem + 10px); /* Adjusted for new right padding */
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  color: inherit;
  font-weight: 300;
  z-index: 1002;
	font-size:24px;
		text-transform:uppercase;
}

body.light .menu-toggle { color: #000; }
body.dark .menu-toggle { color: #e6e5dd; }

/* HAMBURGER (3 lines) - PERFECT CENTERED X */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  position: relative;
}

.hamburger-line {
  height: 3px;
  width: 100%;
  background: currentColor;
  border-radius: 0px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Line positioning for hamburger state */
.hamburger-line:nth-child(1) { transform: translate(-50%, -200%) translateY(-50%); }
.hamburger-line:nth-child(2) { transform: translate(-50%, 0%) translateY(-50%); }
.hamburger-line:nth-child(3) { transform: translate(-50%, 200%) translateY(-50%); }

/* TRANSFORM TO PERFECT CENTERED X */
.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 16px;
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 16px;
}

/* Menu/Close TEXT */
.menu-text {
  transition: all 0.3s ease;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Off-canvas - FULL SCREEN WITH LOGO TOP LEFT */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1e4666;
  padding: 1.7rem 2rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1000;
  overflow-y: auto;
}

.offcanvas-menu.open {
  opacity: 1;
  visibility: visible;
}

/* OFFCANVAS LOGO - TOP LEFT */
.offcanvas-logo {
  align-self: flex-start;
  margin-bottom: 3rem;
  padding-top: 0;
}

.offcanvas-logo .light-logo {
  display: block !important; /* Force light logo in dark offcanvas */
  height: 35px;
}

.offcanvas-logo .dark-logo {
  display: none !important;
}

/* Off-canvas content */
.offcanvas-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  flex: 1;
  width: 80%;
text-align: center;
}

.offcanvas-menu a {
  color: #e6e5dd !important;
  font-size: 52px;
  font-weight: 300;
  padding: 0.75rem 0;
  text-decoration: none;
  width: 100%;
  transition: color 0.3s ease;
  box-sizing: border-box;
  margin-bottom: 1rem;
  background: none !important;
}

.offcanvas-menu a:hover {
  color: #deddd4 !important;
}

/*.offcanvas-menu .contact-btn {
  background: #e6e5dd !important;
  color: #003366 !important;
  font-size: 24px;
  padding: 1rem 2rem;
  border-radius: 60px;
  width: auto !important;
  align-self: center;
  margin: 2rem auto 0;
}

.offcanvas-menu .contact-btn:hover {
  background: #333 !important;
  color: #e6e5dd !important;
}*/

/* Mobile - SHOW TOGGLE */
@media (max-width: 1024px) {
  .nav-right {
    display: none !important;
  }
  
  .menu-toggle {
    display: flex !important;
	top: calc(1.5rem + 0px);
	right: calc(1rem + 0px);
  }
}














/*SPLIT INTRO*/
    .split-intro {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*width: calc(100% - 110px);*/
      /*width: calc(100% - 110px);*/
      margin: 0 auto;
      box-sizing: border-box;
    padding: 80px 50px;
    margin-bottom: 20px;
    border-radius: 10px;
    }

    .split-intro-main {
      flex: 0.8;
      /*font-size: 4rem;*/
      line-height: 1.3em;
	font-family: "Playfair Display", serif;
    font-style: italic;
	font-size: clamp(3rem, 0.35rem + 4vw, 4rem) !important;	
    }

    .split-intro-description {
      flex: 0.8;
      font-size: 1rem;
      line-height: 1.5em;
	font-weight:400;
		border-left: 1px solid #666;
    padding-left: 60px;		
    }

	@media (max-width: 960px) {
		.split-intro {
			flex-direction: column;
			width: calc(100% - 0px);
		}

		.split-intro-description {
			border-left:none;
			padding-left: 0px;		
		}

		.split-intro-main {
			text-align: center;	
		}
	}








/*SINGLE STACK INTRO*/
.single-stack {
    width:60%;
    margin: 0 auto;
 }

.single-stack-main {
  line-height: 1.3em;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(2rem, 0.35rem + 4vw, 4rem) !important;
	text-align: center;
	border-bottom: 1px solid #666;
	padding-bottom:20px;
	margin-bottom:30px;
	margin-top:30px;
	
}

.single-stack-description {
  font-size: 1rem;
  line-height: 1.5em;
  font-weight:400;
}


@media (max-width: 960px) {
	.single-stack {
		width:85%;
		margin: 0 auto;
	 }
}



















/*SERVICE INTRO*/
    .service-intro {
      display: flex;
      justify-content: space-between;
      align-items: center;
      /*border-top: 1px solid #666;*/
      /*padding: 100px 0;*/
      color: #f5f5f3;
      width: calc(100% - 110px); /* 50px margins on each side */
      margin: 0 auto;
      box-sizing: border-box;
    padding: 80px 50px;
    margin-bottom: 20px;
    border-radius: 10px;
    }

    .service-intro-main {
      flex: 0.8;
      /*font-size: 4rem;*/
      line-height: 1.3em;
	font-family: "Playfair Display", serif;
    font-style: italic;	
	font-size: clamp(2rem, 0.35rem + 4vw, 4rem) !important;	
    }

    .service-intro-description {
      flex: 0.8;
      /*font-size: 1.5rem;*/
      line-height: 1.6;
	font-weight:200;
	font-size: clamp(1rem, 0.35rem + 4vw, 1.5rem) !important;	
    }

    @media (max-width: 960px) {
      .service-intro {
        flex-direction: column;
        width: calc(100% - 0px);
      }
		
    .service-intro-main {
		text-align: center;
		margin-bottom:30px;
    	}	
    }




/*SERVICE ROWS*/
    .service-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      /*border-top: 1px solid #666;*/
      /*padding: 100px 0;*/
      color: #f5f5f3;
      width: calc(100% - 110px); /* 50px margins on each side */
      margin: 0 auto;
      box-sizing: border-box;
    background-color: #25272a;
    padding: 80px 50px;
    margin-bottom: 20px;
    border-radius: 10px;
		
  /*background-image: linear-gradient(to right, #0e2534, #0c2230, #0b1e2c, #091b29, #071825)*/;
	/*background-image: linear-gradient(to right, #0c1f2b, #0b1c28, #0a1a25, #081722, #06141f);*/
    
		/* Fade-up animation setup */
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .service-row.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .service-name {
      flex: 0 0 35%;
      font-weight: 300;
      font-size: 2rem;
    }

    .service-tag {
		display:block;
		margin-bottom:10px;
      font-weight: 300;
      font-size: 1.1rem;
		color:#b0bfcc;
    }

    .service-description {
      flex: 0.8;
      font-size: 1rem;
      line-height: 1.5em;
		font-weight:300;
    }

    @media (max-width: 960px) {
      .service-row {
        flex-direction: column;
        width: calc(100% - 40px);
      }

      .service-name {
        margin-bottom: 20px;
      }
    }













/*CLIENT LOGO GRID*/
.logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}


.logo-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
  width: 90%;
  /*max-width: 1280px;*/ /* 4 columns * 300px + 3 * 20px gaps */
  grid-template-columns: repeat(4, 1fr);
}

/* Medium screens: 3 columns */
@media (max-width: 1080px) {
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small screens: 2 columns */
@media (max-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.logo-box {
  position: relative;
  aspect-ratio: 1 / 1; 
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 200px;
border-radius: 15px;
}

.logo-box img {
  max-width: 0%;
  max-height: 80%;
  object-fit: contain;
}

/*.company-name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%); 
  color: #e6e5dd;
  font-size: 14px;
  text-align: center;
  white-space: nowrap; 
}*/









/*FOOTER*/
.site-footer {
  max-width: 90%;
  margin: 120px auto 0;
  border-top: 1px solid #25272a;
  color: #e6e5dd;
	padding-bottom:70px;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem 0;
}

.site-footer__left,
.site-footer__right {
  display: flex;
  flex-direction: column;
}

.site-footer__left {
  align-items: flex-start;
  gap: 0.75rem;
}

.site-footer__right {
  align-items: flex-end;
  gap: 0.75rem;
  text-align: right;
}

.site-footer__copyright {
  margin: 0;
font-size:0.7rem;
	font-weight:300;
	line-height:1.8em;
}

@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__left,
  .site-footer__right {
    align-items: center;
    text-align: center;
  }
}














/*
TESTIMONIAL HOME PAGE*/
.testimonial-box {
  border-radius: 10px;
	/*border:1px solid #9c9ea5;*/
  background-color: #000;
  padding: 50px;
  color: #e6e5dd;
  max-width: 35%;
  margin: 12.5em auto 0 auto;
}

.testimonial-image-wrapper {
  text-align: center;
  margin-bottom: 16px;
}

.testimonial-image {
  width:50px;
  height: auto;
}

.testimonial-body {
  text-align: left;
  margin: 0 0 30px 0;
  line-height: 1.5;
  color: #d1d1d1;
	font-family: "Playfair Display", serif;
	font-size:28px;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.8rem;
}

.testimonial-company {
  font-size: 0.8rem;
  color: #a1a1a1;
}


@media (max-width: 1200px) {
  .testimonial-box {
	  margin: 1em auto 0 auto;
  		max-width: 80%;
	}
}










.home-sections {
	display: flex;
	gap: 2rem; /* Space between divs */
	align-items: flex-start; /* Align tops by default */
	padding-left:4em;
	padding-right:1.5em;
}

.containerHome {
  flex: 1; /* Takes available space */
  min-width: 0; /* Prevents overflow */
}

.testimonial-box {
  flex: 1; /* Equal width to containerHome */
  min-width: 0;
}

/* Stack on smaller screens */
@media (max-width: 1200px) {
  .home-sections {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 1024px) {
	.home-sections {
		padding-left:1.5em;
		padding-right:1.5em;
	}
}


