@charset "UTF-8";



/* ============================================================
   1. GLOBAL RESET & BASE ELEMENTS
   ============================================================ */
* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  margin: 0px;
  background-position: 0px 300px;
}

#totop {
  position: absolute;
  top: 0;
}

.arrow {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.arrow.visible {
  opacity: 1;
  visibility: visible;
}

.button {
  width: 30px;
  margin-bottom: 50px;
  margin-right: 50px;
  background-color: transparent;
  filter: brightness(100%);
  filter: drop-shadow(0 1px 0px rgba(0, 0, 0, 0.9));
}


/* ============================================================
   2. BACKGROUND LAYERS
   ============================================================ */

/*.bg-w-index {
  position: absolute;
  background-color: #EEE;
  width: 100%;
  height: 2900px;
  z-index: -1;
  left: 0;
}*/

.background-contact {
  background-color: #222;
}

.background-index,
.background-2,
.background-3,
.background-4 {
  z-index: 0;
}

/* ------ MEDIA QUERIES FOR BACKGROUNDS ------ */
@media (min-width: 600px) {
  .background-index {
    background-color: rgba(78, 107, 117, 1);
    background-repeat: no-repeat;
	height: 900px;
	position: relative;
	z-index: 40;
  }
}

@media (min-width: 600px) {
  .background-2 {
    
    background-color: #EEE;
  }

  .background-3 {
   background: radial-gradient(
        circle at center,
        #f4f4f4 60%,
        #e9e9e9 100%
    );
    
  }

  .background-4 {
  
    background-position: 0px 0px;
    background-color: #EEE;
  }
}



/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

main {
  max-width: 1000px;
  margin: 100px auto 0px;
  padding: 0px 20px;
}

h1 {
  font-family: 'Stardom', serif;
  color: #FFF;
  font-size: 48px;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 2px;
}

h2, h3 {
  font-family: 'Stardom', serif;
  color: #333333;
  line-height: 1.2;
}

h2 { font-size: 32px; margin-bottom: 32px; }
h3 { font-size: 22.4px; margin-bottom: 8px; }

p {
  line-height: 2rem;
  font-size: 16px;
  margin-bottom: 10px;
  font-family: 'Satoshi', sans-serif;
  color: #111;
}

.highlight  { color: #FFF; font-weight: 800; }
.highlight2 { color: #111; font-weight: 800; }

a {
  color: #336699;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

/* Content wrappers */
.main-content-contact { margin-top: 0px; }
.main-content-about   { margin-top: 0px; padding-top: 90px; }
.main-content-faq     { margin-top: 0px; padding-top: 100px; }



/* ============================================================
   4. SCROLL DOWN ARROW (HOME HERO)
   ============================================================ */

.down-arrow {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 200;
  animation: arrowFloat 2.8s ease-in-out infinite;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  text-align: center;
}

.down-arrow span {
  display: block;
  width: 22px;
  height: 22px;
  border-bottom: 4px solid white;
  border-right: 4px solid white;
  transform: rotate(45deg);
  margin: -10px auto;
}

@keyframes arrowFloat {
  0%   { transform: translate(-50%, 0);   }
  50%  { transform: translate(-50%, 10px);}
  100% { transform: translate(-50%, 0);   }
}

.down-arrow.hide {
  opacity: 0;
  pointer-events: none;
  animation: none;
}



/* ============================================================
   5. HERO SECTIONS
   ============================================================ */

.hero-section {
  height: 100vh;
  min-height: 560px;
  background-image: 
    linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
    url("images/pen2.jpg");
  background-size: cover;
  background-position: 40% 90%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 92px;
  z-index: -5;
}

.hero-section-2 {
  height: 250px;
  background-image: 
    linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
    url("images/pen2.jpg");
  background-size: 300%;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 92px;
  z-index: -5;
}

.hero-title-container,
.hero-title-container2 {
  max-width: 100%;
  text-align: center;
  opacity: 0;
  animation: growFadeIn 0.7s ease-out forwards;
}

.hero-title-container { margin: -90px auto 0px; }
.hero-title-container2 { margin: 0px auto; }

@keyframes growFadeIn {
  0%   { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.hero-title {
  color: #FFF;
  margin: 0 auto;
  font-size: 56px;
  font-weight: 700;
  width: 100%;
  font-family:'Stardom', serif;
}

.hero-title-2 { width: 100%; }

.hero-subtitle {
  color: white;
  margin: 15px auto 0px;
  font-size: 25px;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  background-color: rgba(78, 107, 117, 1);
  width: 70%;
  padding: 7px;
  border-radius: 3px;
  letter-spacing: 1px;
}

.hero-subtitle2 {
  color: white;
  margin: 15px auto;
  font-size: 19px;
  font-weight: 500;
  width: 400px;
  padding-top: 15px;
  font-family: 'Satoshi', sans-serif;
}



/* ============================================================
   6. NAVIGATION BAR + HAMBURGER (DESKTOP BASE)
   ============================================================ */

.nav-bar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #222;
}

.nav-bar {
  background-color: #222;
  box-shadow: 0 2px 3px rgba(0,0,0,0.4);
  padding: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
}

/* Centered navigation links */
.nav-links {
  display: flex;
  gap: 50px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: white;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 7px 0 5px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.4s;
  white-space: nowrap;
}

.nav-links a:hover {
  border-bottom: 2px solid #fff;
}

.nav-contact-btn {
  background-color: rgba(78, 107, 117, 1);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Satoshi', sans-serif;
  transition: 0.4s;
  white-space: nowrap;
}

.nav-contact-btn:hover {
  background-color: white;
  color: #222;
}

.mobile-contact-btn { display: none; }


/* ============================================================
   6B. NAVIGATION MEDIA QUERIES
   (moved to end of Navigation section)
   ============================================================ */

@media (max-width: 999px) {
  .nav-bar { padding: 37px 50px; }

  .mobile-contact-btn { display: none; }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
  }

  .hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #222;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 35px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 2000;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { font-size: 18px; padding: 10px; }
}

@media (max-width: 599px) {
  .nav-bar { padding: 20px 25px; }

  .desktop-only { display: none !important; }

  .hamburger { display: flex; }

  .nav-links {
    top: 60px;
  }

  .mobile-contact-btn {
    display: block;
    background: rgba(78,107,117,1);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
  }
}


/* ============================================================
   7. INTRO SECTION (Home Page)
   ============================================================ */

.intro-section {
  max-width: 100%;
  margin: 40px auto 20px auto;
  padding: 60px 20px 0px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.intro-section.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-section h2 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #FFF;
  font-family:'Stardom', serif;
  text-align: center;
}

.underline {
  border-bottom: 5px solid #FFF;
  width: 80px;
  margin: 15px auto 30px;
}

.underline3 {
  border-bottom: 5px solid #FFF;
  width: 80px;
  margin: 8px auto;
}

/* --- Paragraph Animation (Desktop Only) --- */
@media (min-width: 599px) {
  .intro-section p {
    max-width: 900px;
    margin: 28px auto;
    color: #CCC;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    opacity: 0.4;
    transform: scale(0.94);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
  }

  .intro-section p.in-view {
    transform: scale(1.2);
    opacity: 1;
    color: #FFF;
    filter: brightness(1.15);
  }

  .intro-section p:hover {
    transform: scale(1.2);
    opacity: 1;
    color: #FFF;
    filter: brightness(1.15);
  }
}


/* ============================================================
   8. "GOT YOUR BACK" SECTION
   ============================================================ */

.got-your-back {
  margin-bottom: 60px;
}

.got-your-back h2 {
  color: #FFF;
  text-align: center;
  font-size: 50px;
}



/* ============================================================
   9. INFO SERVICES SECTION (Home Page)
   ============================================================ */

.info-services-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 20px 0px;
  color: transparent;
}
.service-detail ul {
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 0;
  list-style-position: inside;
}

.service-detail li {
  margin-bottom: 10px;
}

.info-section-container {
  margin: 0px auto 25px;
  max-width: 1000px;
  display: flex;
  background-color: #222;
  /*background-color: rgba(78, 107, 117, 1);*/
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.info-text {
  padding: 30px 20px 60px 50px;
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}

.info-text h3 {
  color: white;
  font-size: 28px;
  margin: 0 auto 10px;
  text-align: center;
  font-family: 'Stardom', sans-serif;
}

.info-text p {
  color: #EEEEEE;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.5rem;
  text-align: center;
  padding-right: 28px;
}

.info-image {
  width: 40%;
  z-index: 0;
  width: 500px;
  height: auto;
  background-image: url("images/david-04.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 0px -70px;
  display: block;
}


/* --- Responsive Info Section --- */
@media (max-width: 800px) {
  .info-section-container {
    flex-direction: column;
    width: 95%;
    text-align: center;
  }

  .info-image {
    background-image: url("images/david-04.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0px -70px;
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
  }

  .info-text {
    width: 100%;
    margin: 10px auto 0px;
    padding-bottom: 40px;
  }

  .background-index {
    background-image: url("images/bg_bar.png");
    background-repeat: no-repeat;
    background-size: 100% 1200px;
    background-position: 0px 0px;
    z-index: 0;
  }
}



/* ============================================================
   10. SERVICES ICON OVERLAP GRID (Glow-Cards)
   ============================================================ */

.mobile-actions {
  display: none;
}

.service-overlap-container {
  position: relative;
  margin: -70px auto 0px;
  max-width: 850px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: hidden;
  transform: scale(0.94);
  transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-overlap-container.in-view {
  transform: scale(1.05);
  filter: brightness(1.15);
}

/* Force single row, no wrapping */
.services-icon-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0;
}

.glow-card {
  position: relative;
  width: calc(850px / 6);
  height: 140px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.glow-card img {
  width: 65px;
  height: auto;
  transition:
    transform 0.25s ease-in-out,
    opacity 0.25s ease-in-out;
}

.glow-card:hover img {
  transform: scale(1.25);
  /* opacity: 0.35; */
}

/* .glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(100, 100, 100, 0);
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  pointer-events: none;
  z-index: -1;
} */

.glow-card:hover::before {
  opacity: 1;
}

/* .glow-card .hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: white;
  line-height: 1.2;

  white-space: normal;
  padding: 10px;

  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  pointer-events: none;
} */

.glow-card:hover .hover-text {
  opacity: 1;
}

.glow-card span:not(.hover-text) {
  display: none;
}



/* ============================================================
   INDEX TESTIMONIAL CAROUSEL — FULL CSS
=========================================================== */

/* Wrapper centers arrows + slide */
.index-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  padding: 0 50px;
}

/* The container where slides stack */
.index-carousel {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 250px;
}

/* ============================
   SLIDE BASE STYLE
============================ */
.index-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transform: translateX(40px);
  transition:
      opacity 0.6s ease,
      transform 0.6s ease;

  background: #ffffff;
  padding: 45px 50px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);

  font-family: 'Satoshi', sans-serif;
  color: #333;
  line-height: 1.7;
}

/* ACTIVE SLIDE */
.index-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  z-index: 3;
}

/* EXITING SLIDE (fade + slide left) */
.index-slide.fade-out {
  opacity: 0;
  transform: translateX(-40px);
  z-index: 1;
}

/* ============================
   PROJECT (JOB TITLE)
============================ */
.index-job {
  font-size: 25px;
  font-weight: 700;
  color: #4e6b75;
  text-align: center;
  font-family: 'Stardom', serif;
  margin-bottom: 0px;
}

/* Divider line */
.index-divider {
  width: 60px;
  height: 3px;
  background: #4e6b75;
  opacity: 0.4;
  margin: 0 auto 25px;
  border-radius: 2px;
}

/* ============================
   CLIENT NAME
============================ */
.index-client {
  display: block;
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 600;
  color: #555;
}

/* ============================
   NAVIGATION ARROWS
============================ */
.index-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 50px;
  height: 50px;
  font-size: 24px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #4e6b75;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.25s ease;
  z-index: 10;
}

.index-carousel-arrow:hover {
  background: #4e6b75;
  color: #fff;
}

/* Position arrows */
.index-carousel-arrow.left {
  left: 0;
}

.index-carousel-arrow.right {
  right: 0;
}

/* ============================
   DOTS
============================ */
.index-dots {
  margin:-20px auto 150px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.index-dots span {
  width: 10px;
  height: 10px;
  background: #bbb;
  border-radius: 50%;
  transition: 0.3s ease;
}

.index-dots span.active {
  background: #4e6b75;
  transform: scale(1.25);
}

.index-testimonial-title {
color: #222;
text-align: center;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 700px) {
  .index-carousel-wrapper {
    padding: 0 20px;
  }

  .index-slide {
    padding: 35px 25px;
  }

  .index-carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
}



/* ============================================================
   12. CLIENT LOGO MARQUEE
   ============================================================ */

.clients-section {
  padding: 70px 0;
  overflow: hidden;
  background: #222;
}

.section-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 25px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #ddd;
  font-family: 'Satoshi', sans-serif;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 100px;
  will-change: transform;
  animation: scroll-left 25s linear infinite;
}

.marquee-group {
  display: flex;
  gap: 100px;
  flex-shrink: 0;
}

.client-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

img.client-logo2 {
  height: 50px !important;
  width: auto !important;
  opacity: 0.6;
  transition: opacity 0.3s;
  object-fit: contain;
  flex-shrink: 0 !important;
}

.client-logo:hover,
.client-logo2:hover {
  opacity: 1;
}

/* Infinite Scroll Keyframes */
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}



/* ============================================================
   13. CALL TO ACTION SECTION
   ============================================================ */

.cta-section {
  position: relative;
  height: 400px;
  background: linear-gradient(rgba(51, 51, 51, 0.7), rgba(51, 51, 51, 0.7)),
              url('images/contact-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 17px;
  font-family: 'Stardom' serif;
  color: #FFF;
}

.cta-button {
  display: inline-block;
  background: rgba(78, 107, 117, 1);
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.6s;
  font-family: 'Satoshi', sans-serif;
}

.cta-button:hover {
  background: #FFF;
  color: #222;
}




/* ============================================================
   14. MAIN FOOTER
   ============================================================ */

.main-footer {
  background: rgba(78, 107, 117, 1);
  color: white;
  padding: 30px 40px;
  font-family: 'Satoshi', sans-serif;
  position: relative;
  height: 290px;
  box-sizing: border-box;
}

.footer-inner {
  margin: 0 auto;
  display: flex;
  gap: 40px 80px;
  align-items: start;
  height: 100%;
  position: relative;
}

/* ------------------------------------------------------------
   Footer Logo Placeholder
   ------------------------------------------------------------ */

.footer-logo-placeholder {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 2px;
  position: absolute;
  left: 40px;
  top: 8px;
}

/* ------------------------------------------------------------
   Social Icons (bottom-left)
   ------------------------------------------------------------ */

.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  bottom: 38px;
  left: 40px; /* matches footer padding */
}

.social-link {
  display: block;
  line-height: 0; /* remove image spacing */
  transition: opacity 0.3s;
}

.social-link:hover {
  opacity: 0.8;
}

.social-icon {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
  filter: brightness(100);
}

.social-link:hover .social-icon {
  opacity: 1;
}

/* Force only 3rd icon to appear white */
.force-white {
  filter: brightness(0) invert(1);
}

/* ------------------------------------------------------------
   Copyright (bottom-left)
   ------------------------------------------------------------ */

.footer-copyright {
  font-size: 0.9rem;
  opacity: 0.9;
  position: absolute;
  bottom: 8px;
  left: 40px;
}

/* ------------------------------------------------------------
   Footer Navigation Links (Right Side)
   ------------------------------------------------------------ */

.footer-links {
  list-style: none;
  position: absolute;
  right: 40px;
  top: 53%;
  transform: translateY(-50%);
  text-align: right;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: opacity 0.3s, border-color 0.3s;
  border-bottom: 2px solid transparent;  /* prevents movement on hover */
}

.footer-links a:hover {
  opacity: 0.4;
  border-bottom: solid 2px #FFF;
}













/* ============================================================
   15. CONTACT PAGE — WRAPPER + TYPOGRAPHY
   ============================================================ */

.contact-section {
  padding: 80px 0 150px;
}

.contact-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  font-family: 'Stardom', serif;
  font-size: 48px;
  text-align: center;
  color: #EEE;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  text-align: center;
  color: #EEE;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}



/* ============================================================
   16. CONTACT FORM CONTAINER
   ============================================================ */

.contact-form {
  background: rgba(78, 107, 117, 0.95);
  padding: 50px 60px;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  color: white;
}



/* ============================================================
   17. CONTACT FORM GRID (Two Columns)
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-grid > .full {
  grid-column: 1 / -1;
}



/* ============================================================
   18. FORM LABELS & INPUT ELEMENTS
   ============================================================ */

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 6px;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  background: rgba(255,255,255,0.95);
  transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}



/* ============================================================
   19. SUBMIT BUTTON
   ============================================================ */

.submit-btn {
  background: white;
  color: #222;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 14px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s;
  margin-top: 15px;
  font-family: 'Satoshi', sans-serif;
  text-transform: uppercase;
}

.submit-btn:hover {
  background: #222;
  color: white;
}



/* ============================================================
   20. SUCCESS & ERROR MESSAGES
   ============================================================ */

.message {
  padding: 15px 20px;
  border-radius: 6px;
  margin: 25px 0;
  font-weight: 600;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
}

.message.success {
  background: rgba(0,200,0,0.15);
  border: 1px solid rgba(0,255,0,0.4);
  color: #fff;
}

.message.error {
  background: rgba(200,0,0,0.15);
  border: 1px solid rgba(255,0,0,0.4);
  color: #fff;
}



/* ============================================================
   21. ABOUT PAGE — PHILOSOPHY SECTION
   ============================================================ */

.philosophy {
  padding: 40px 0 40px;
  margin-bottom: 0px;
  border-bottom: 2px solid rgba(0,0,0,0.15);
  border-top: 2px solid rgba(0,0,0,0.15);
  text-align: center;
}

.philosophy h2 {
  color: #222;
  margin-bottom: 8px;
}

.philosophy p {
  color: #222;
}



/* ============================================================
   22. ABOUT PAGE — MAIN ABOUT SECTION
   ============================================================ */



.about-section {
  padding: 0 0 80px;
  margin-top: 75px;
}

.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.section-divider {
    width: 800px;
    height: 2px;
    background: #ddd;
    margin: -25px auto 45px;
    opacity: 0.4;
    border-radius: 2px;
}

/* Floating Image Animation */
.about-float-image {
  float: left;
  width: 340px;
  margin: 0 50px 40px 0;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-float-image.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RIGHT FLOATING IMAGE */
.about-float-image-right {
  float: right;
  width: 340px;                 /* Ensures consistent desktop size */
  margin: 0 0 40px 40px;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-float-image-right.in-view {
  opacity: 1;
  transform: translateY(0);
}



/* Page Title + Subtitle Animations */
.about-main-title,
.about-subtitle {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.about-main-title.in-view,
.about-subtitle.in-view {
  opacity: 1;
  transform: translateY(0);
}



/* Staggered Paragraph Animations */
.about-text-flow p {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  margin-bottom: 32px;
  color: #333;
}

/* All paragraphs originally had 0.5s delay */
.about-text-flow p:nth-child(1),
.about-text-flow p:nth-child(2),
.about-text-flow p:nth-child(3),
.about-text-flow p:nth-child(4),
.about-text-flow p:nth-child(5),
.about-text-flow p:nth-child(6) {
  transition-delay: 0.5s;
}

.about-text-flow p.in-view {
  opacity: 1;
  transform: translateY(0);
}

.about-text-flow p:first-of-type::first-letter {
    font-size: 5rem;
    font-weight: 600;
    float: left;
    line-height: 0.9;
    margin: 12px 6px -7px 0;
    color: #4e6b75;
    font-family: 'Stardom', serif;
}

.about-subtitle + p::first-letter {
    font-size: 5rem;
    font-weight: 600;
    float: left;
    line-height: 0.9;
    margin: 12px 6px -7px 0;
    color: #4e6b75;
    font-family: 'Stardom', serif;
}

/* Title Styling */
.about-main-title {
  font-family: 'Stardom', serif;
  font-size: 44px;
  color: #222;
  margin: 0 0 20px 0;
  line-height: 1.1;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 20px;
}

.underline2 {
  border-bottom: 3px solid #222;
  width: 80px;
  margin: -10px 0px 20px 390px;
}

.about-subtitle {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  color: #222;
  margin: 0 0 10px 0;
}

.about-text-flow {
  color: #222;
  font-family: 'Satoshi', sans-serif;
  font-size: 17px;
  line-height: 1.85;
}

/* Responsive About Page */
@media (max-width: 1000px) {
  .about-section { padding: 0 !important; }
  .about-wrapper { padding: 0 !important; max-width: 100% !important; }

  .about-float-image {
    float: none !important;
    display: block;
    width: 90% !important;
    max-width: 700px;
    margin: 0 auto 50px auto !important;
  }

  .underline2 {
    border-bottom: 3px solid #444;
    width: 80px;
    margin: -10px auto 20px;
  }

  .about-text-flow {
    padding: 50px 25px 100px !important;
    text-align: center;
  }

  .about-main-title { font-size: 42px !important; }
  .about-subtitle { font-size: 26px !important; }
  
  
  
  .about-float-image-right {
    float: none !important;
    display: block;
    width: 90% !important;
    max-width: 700px;
    margin: 0 auto 50px auto !important;
}
}





/* ============================================================
   23. FAQ PAGE — ACCORDION + ANIMATIONS
   ============================================================ */

.faq-section {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 100px;

}



.faq-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  text-align: center;
  color: #222;
  width: 85%;
  max-width: 700px;
  margin: -40px auto 30px;
  border-bottom: solid 3px #222;
  padding-bottom: 20px;
}

/* Glass Cards */
.faq-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 4px 4px 10px rgba(0,0,0,.3);
  transition: all 0.4s ease, all 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Animation Defaults */
  opacity: 0;
  transform: translateY(70px);
  border-left: 8px solid rgba(78,107,117,1);
  padding-left: 0;
  
}

/* Hover State */
.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  background: rgba(255, 255, 255, 0.12);
}



/* Question Row */
.faq-question {
  padding: 34px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  transition: background 0.4s ease;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.01)
  );
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.16);
}

.faq-question::before {
  content: "Q.";
  font-family: 'Stardom', serif;
  font-size: 54px;
  color: #222;
  font-weight: bold;
  opacity: 0.95;
}

.q-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #222;
  margin-left: 16px;
  flex: 1;
}

/* === FAQ ARROW ICON (matches testimonial arrows) === */
.faq-arrow {
  width: 34px;
  height: 34px;
  /* Thick chevron icon in #222 — fully escaped */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%23222' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") 
    no-repeat center / 70%;

  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    scale 0.3s ease;

  opacity: 0.9;
}

/* Hover animation (desktop only) */
@media (hover: hover) {
  .faq-question:hover .faq-arrow {
    scale: 1.12;
    opacity: 1;
  }
}

/* Open state — rotate like a dropdown */
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}


/* Answer Panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), padding 0.6s ease, border-color 0.4s ease,
    max-height 0.6s ease,
    padding 0.6s ease;
  background: rgba(255, 255, 255, 0.97);
  border-left: 5px solid transparent;     /* width stays constant */
  
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding: 40px;
  border-left: 5px solid rgba(78,107,117,1);
}

.faq-answer::before {
  content: "A.";
  font-family: 'Stardom', serif;
  font-size: 52px;
  color: #1a1a2e;
  font-weight: bold;
  float: left;
  margin-right: 20px;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer::before {
  opacity: 1;
  transform: translateY(0);
}

.faq-question::before,
.faq-answer::before {
  color: rgba(34,34,34,0.85);
  letter-spacing: 1px;
}

.faq-answer p {
  margin: 0 0 20px 80px;
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer p + p {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
  margin-top: 16px;
}

/* Staggered Appearance */
.faq-item:nth-child(1) { transition-delay: 0.05s; }
.faq-item:nth-child(2) { transition-delay: 0.15s; }
.faq-item:nth-child(3) { transition-delay: 0.25s; }
.faq-item:nth-child(4) { transition-delay: 0.35s; }
.faq-item:nth-child(5) { transition-delay: 0.45s; }




.faq-item.in-view {
  opacity: 1;
  transform: translateY(0);
}



/* ============================================================
   TESTIMONIAL TIMELINE — UPGRADED VISUAL SYSTEM
============================================================ */

.testimonials-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 40px;
}





/* Page Title */
.testimonial-page-title {
  font-family: 'Stardom', sans-serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 18px;
  color: #222;
  position: relative;
}

.testimonial-page-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-page-title-wrapper::before {
  content: "❝";
  position: absolute;
  font-size: 160px;
  color: rgba(78,107,117,0.08);
  left: 50%;
  top: -35px;
  transform: translateX(-50%);
  pointer-events: none;
}





/* Vertical Center Line */
.timeline-line {
  position: absolute;
  top: 180px;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
      to bottom,
      rgba(78,107,117,0.15),
      rgba(78,107,117,0.35),
      rgba(78,107,117,0.15)
  );
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  opacity: 0.7;
}

/* Individual Items */
.timeline-item {
  width: 75%;
  padding: 40px 50px;
  position: relative;
  margin: 0px 0px;

  /* Reveal animation starting point */
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(.22,.61,.36,1);
}

/* In-view state */
.timeline-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Alternating sides */
.timeline-item.left {
  left: 0;
  text-align: right;
    transform: translateX(-32.5%);
}

.timeline-item.right {
  left: 50%;
  text-align: left;
   transform: translateX(-.5%);
}

/* Card container */
.timeline-content {
  background: #fff;
  padding: 35px 32px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  display: inline-block;
  max-width: 600px;

  /* Micro interaction */
  transition: transform .3s ease, box-shadow .3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.16);
}

/* Alternating background accents */
.timeline-item:nth-child(even) .timeline-content {
  background: #f5f7f8;
}

/* Quote icon animation */
.quote-mark {
  font-size: 75px;
  color: #4e6b75;
  margin-bottom: -10px;
  line-height: 0.8;

  opacity: 0;
  transform: translateY(-20px);
  transition: all .6s ease .2s;
}

.timeline-item.in-view .quote-mark {
  opacity: 1;
  transform: translateY(0);
}



/* Testimonial text */
.timeline-content p {
  color: #333;
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 15px;
  text-align: justify;
}

/* Project Type (big) */
.project-type {
  font-family: 'Satoshi', sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #4e6b75;
  margin-bottom: 6px;
}

/* Client Name (smaller) */
.client-name {
  font-family: 'Stardom', sans-serif;
  font-size: 20px;
  color: #666;
  opacity: 0.9;
}

/* Connector Dots */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 45px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  border: 4px solid #4e6b75;
  box-shadow: 0 0 0 4px rgba(78,107,117,0.25);
}

/* Left vs right placement */
.timeline-item.left::before {
  right: -9px;
}

.timeline-item.right::before {
  left: -9px;
}

/* Connector "arms" to the line */
.timeline-item::after {
  content: "";
  position: absolute;
  top: calc(45px + 7px); /* aligns perfectly with circle center */
  width: 30px;
  height: 2px;
  background: #4e6b75;
  opacity: 0.4;
}

.timeline-item.left::after {
  right: -30px;
}

.timeline-item.right::after {
  left: -30px;
}

/* ============================================================
   MOBILE VERSION (one column)
============================================================ */
@media (max-width: 800px) {

  .timeline-line {
    left: 25px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 10px;
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-item::after {
    left: 18px;
  }

  .timeline-content {
    max-width: 100%;
  }
}





/* ============================================================
   25. SERVICES PAGE — STACKED FULL-WIDTH CARDS
   ============================================================ */









.main-content-services {
  padding-top: 80px;
  max-width: 100vw;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}



/* Intro */
.services-intro {
  margin-bottom: 0px;
  color: #fff;
  text-align: center;
}

.services-intro h2,
.services-intro p {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.services-intro.in-view h2,
.services-intro.in-view p {
    opacity: 1;
    transform: translateY(0);
}

.services-intro h2 {
  font-family: 'Stardom', serif;
  font-size: 28px;
  text-align: center;
  color: #F52;
  margin-bottom: 2px;
}

.services-intro p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  color: #222;
}

/* Stacked Service Cards */
.detailed-services {
  position: relative;
  margin: 100px -30px 0;
  padding: 0;
  overflow: visible;
}

.service-detail {
  position: relative;
  
  padding: 60px 10vw;
  margin-bottom: -10px;
  border-radius: 0;

  opacity: 0;
  transform: translateY(80px);
  transition: all 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.5s ease;
  z-index: 1;
  border-left: 6px solid transparent;
  background: linear-gradient(
        to bottom right,
        #fff,
        #f2f4f5
    );
 
}

.service-detail.in-view {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.15s * var(--i));
   border-left-color: rgba(78,107,117,1);
}

/* Layering Indexes */
.service-detail:nth-child(1) { --i: 1; z-index: 6; }
.service-detail:nth-child(2) { --i: 2; z-index: 5; }
.service-detail:nth-child(3) { --i: 3; z-index: 4; }
.service-detail:nth-child(4) { --i: 4; z-index: 3; }
.service-detail:nth-child(5) { --i: 5; z-index: 2; }
.service-detail:nth-child(6) { --i: 6; z-index: 1; }
.glow-card2:nth-child(7) { --i: 7; z-index: 7; }

/* Card Typography */
.service-detail h2 {
  font-family: 'Stardom', serif;
  font-size: 42px;
  color: #4e6b75;
  margin: 0 0 28px 0;
  text-align: center;
  position: relative;
    padding-top: 20px;
}

.service-detail h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: rgba(78,107,117,1);
    border-radius: 2px;
}

.service-detail p {
  font-size: 19px;
  line-height: 1.9;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Responsive Service Cards */
@media (max-width: 599px) {
  .service-detail {
    padding: 40px 6vw;
  }

  .service-detail h2 {
    font-size: 36px;
  }

  .service-detail p {
    width: 80%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
  }

  .services-intro p {
    width: 90%;
    font-size: 22px;
  }
}



.service-detail p {
    width: 80%;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
}

.service-detail ul {
    font-family: 'Satoshi', sans-serif;
    font-size: 19px;
    line-height: 1.9;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0;
    list-style-position: inside;
}


.service-detail li {
    margin-bottom: 8px;
}

.services-navigation {
    text-align: center;
    padding: 30px 0;
    margin: 0 auto 40px;
    max-width: 900px;
}

.services-navigation a {
    display: inline-block;
    padding: 10px 15px;
    margin: 5px 5px;
    background-color: #4e6b75;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.services-navigation a:hover {
    background-color: #3a535c;
}
.service-detail {
    scroll-margin-top: 100px;
}
