body {
  margin: 0;
  padding: 0;
  background-color: #1E1E1E;
  font-family: "Inter", sans-serif;
}
a{
  text-decoration: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
.main-body {
  position: relative;
  height: auto;
  background-color: #1E1E1E;
}

.main-body::before,
.main-body::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgb(255, 255, 255);
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
  z-index: 1;
}

.main-body::before {
  left: 0;
}

.main-body::after {
  right: 0;
}


/* Navbar */
.navbar {
  display: flex;
  align-items: stretch;
  border: 2px solid #ffffff;
  /* solid white border */
  position: relative;
  background-color: #1E1E1E;
  z-index: 1;
}

/* Glowing bottom line */
.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  /* place it just outside or over the real border */
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.nav-side::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
}
.menu-icon{
  width: 25px;
  height: auto;
  display: none;
}
/* Left section */
.nav-side {
  width: 15%;
  padding: 22px 40px;
  position: relative;
}

.nav-side::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
}

/* Middle section */
.nav-mid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 70%;
  padding: 30px 40px;
  position: relative;
}

.nav-mid::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
}

/* Right section */
.nav-side.r {
  width: 15%;
  text-align: right;
  padding: 30px 40px;
  position: relative;
}

.logo {
  width: 110px;
  height: auto;
}

.nav-menu {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.3s ease;
}
.nav-menu a{
  color: #fff;
}

/* Moves up and fades out */
.nav-menu.animate-up {
  transform: translateY(-15px);
  opacity: 0;
}

/* Reset off-screen below (no animation here) */
.nav-menu.reset-down {
  transition: none;
  transform: translateY(15px);
  opacity: 0;
}

/* Then animate from below to original spot */
.nav-menu.animate-in {
  transition: transform 0.2s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  border: 2px solid white;
  border-bottom: 10px solid white;
  display: none;
  flex-direction: row;
  gap: 40px;
  padding: 20px 30px;
  z-index: 10;

}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-item {
  color: white;
  font-size: 14px;
  text-transform: capitalize;
  cursor: pointer;
  transition: color 0.3s;
  margin: 0;
  padding: 5px 0px;
}

.dropdown-item:hover {
  color: #bbb;
}


.arrow-d {
  width: 24px;
  height: auto;
  padding-left: 10px;
}
/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: #111;
  border-bottom: 2px solid white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  z-index: 999;
  transition: top 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  border-bottom: 10px solid white;
}

.mobile-menu.show {
  top: 0;
}

.close-btn {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.mobile-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 40px;
}

.mobile-menu-item {
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 10px;
  transition: color 0.3s ease;
}

.mobile-menu-item:hover {
  color: #bbb;
}
.mobile-menu-item a{
  color: white;
}

/* top-section */
.top-section {
  display: flex;
  align-items: stretch;
  position: relative;
}

.top-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
}

.top-section-grid {
  width: 50%;
  padding: 80px 50px;
}

.main-head {
  font-family: "Onest", sans-serif;
  margin: 0;
  font-size: 55px;
  font-weight: 800;
  color: white;
  text-shadow:
    0 0 9px rgba(255, 255, 255, 0.5),
    0 0 9px rgba(255, 255, 255, 0.2);
  
  /* Animation setup */
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.4s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-word {
  position: relative;
  display: inline-block;
  z-index: 1;
}

/* Underline animation */
.highlight-word::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 12px;
  width: 100%;
  background-image: url('./images/nise.gif');
  background-size: contain;
  background-repeat: repeat;
 opacity: 0.4; /* adjust for subtlety */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease-out 0.5s;
}

/* Trigger the animation once page loads */
.main-head.loaded .highlight-word::after {
  transform: scaleX(1);
}
.glow-vertical-line {
  width: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  /* Add this for visibility */
  display: block;
}

.top-section-grid.b {
  background-image: url('./images/top-img.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* fill and crop to fit */
  width: 50%;
  height: auto;
}

.main-head-para {
  margin: 0;
  font-size: 15px;
  color: #bbb;
  line-height: 1.5rem;
  padding-top: 20px;

  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.4s ease-out forwards;
  animation-delay: 0.3s; /* Slight delay after heading */
}

.top-grid-section {
  display: flex;
  justify-content: space-between;
  padding: 50px 0px;
}

.top-grid {
  width: 25%;
  text-align: center;
}

.count {
  font-weight: 700;
  margin: 0;
  color: white;
  font-size: 35px;
  display: inline-flex;
  gap: 2px;
  overflow: hidden;
}

.count span {
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  animation: scrollChar 0.4s ease-out forwards;
}

.count span:nth-child(1) {
  animation-delay: 0.2s;
}
.count span:nth-child(2) {
  animation-delay: 0.3s;
}
.count span:nth-child(3) {
  animation-delay: 0.4s;
}
.count span:nth-child(4) {
  animation-delay: 0.5s;
}

@keyframes scrollChar {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}



@keyframes fadeUpSoft {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Count paragraph with same soft transition */
.count-head {
   font-size: 10px;
  margin: 0;
  color: white;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: fadeUpSoft 0.4s ease forwards;
  animation-delay: 0.3s; /* You can adjust this to control the sequence */
}


.button-section {
  display: flex;
  gap: 25px;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.8s ease-out;
}

.button-section.visible {
  opacity: 1;
  transform: translateY(0);
}


.btn-contact {
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #000000;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.4),
    0 0 9px rgba(255, 255, 255, 0.5);
}

.btn-contact:hover {
  background-color: #1E1E1E;
  color: #ffffff;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.7),
    0 0 20px rgba(255, 255, 255, 0.9);
}

.btn-contact.b {
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #000000;
  border: 2px solid #ffffff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.4),
    0 0 9px rgba(255, 255, 255, 0.5);
}


/* welcome-section */
.welcome-section {
  padding: 80px 50px;
  display: flex;
  position: relative;
  overflow: hidden; /* ensures background doesn't spill */
  z-index: 1; /* layer above the pseudo background */
}

/* Background effect */
.welcome-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-image: url('./images/nise.gif');
  opacity: 0.2; /* adjust for subtlety */
  z-index: 0;
  pointer-events: none; /* keeps it non-interactive */
}

/* Keep content above background */
.welcome-section > * {
  position: relative;
  z-index: 2;
}


.welcome-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.9),
    0 0 9px rgba(255, 255, 255, 0.7);
}

.welcome {
  font-size: 14px;
  margin: 0;
  color: white;
  text-transform: uppercase;
}

.welcome-grid {
  width: 50%;
}

.welcome-para {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 2rem;
  color: #939393;
}

.welcome-para span {
  display: block;
  position: relative;
  overflow: hidden;
  color: #939393;
}

.welcome-para span .reveal {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: white;
  width: 0%;
  overflow: hidden;
  transition: width 0.6s ease-out;
}




/* process-section */

.process-section-head {
  font-size: 55px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  font-weight: 900;
  text-align: center;
  margin: 0;
  padding: 30px 0px;
  letter-spacing: 3px;
  font-family: "Onest", sans-serif;

  /* Animation state */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.4s ease-out;
}

.process-section-head.visible {
  opacity: 1;
  transform: translateY(0);
}


.process-section-grid {
  display: flex;
}

.process-grid {
  width: 25%;
  padding: 40px 50px;
  position: relative;
  border: 1px solid #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.9);
  overflow: hidden; /* important for masking animation inside */
}

/* Glowing left border effect */
.process-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0; /* start at 0 height */
  background: white;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.8),
    0 0 10px rgba(255, 255, 255, 0.9);
  transition: height 1s ease-out;
  z-index: 2;
}

/* When visible via JS, animate the glowing border */
.process-grid.visible::before {
  height: 100%; /* animates from 0 to full height */
}
/* Add inner vertical border between grid items */
.process-grid:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.9);
}

.process-grid-head {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: white;

  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.process-grid-head.visible {
  opacity: 1;
  transform: translateY(0);
}


.process-grid-para {
  margin: 0;
  font-size: 14px;
  color: #bbb;
  line-height: 1.8rem;
  padding-top: 15px;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.process-grid-para.visible {
  opacity: 1;
  transform: translateY(0);
}



/* work-section */
.work-option-section {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* 🔳 Animated grainy background */
.work-option-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/nise.gif');
   opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* 🔳 Top glowing 2px white border */
.work-option-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.8);
  z-index: 1;
}


.work-menu {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

/* Underline effect */
.work-menu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* distance below text */
  width: 100%;
  height: 1px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

/* On hover, expand the underline from left to right */
.work-menu:hover::after {
  transform: scaleX(1);
}

.work-img-grid {
  display: flex;
  position: relative;
  overflow: hidden; /* ensures the animation stays bounded */
}

/* Border animation base state */
.work-img-grid::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0; /* start from 0 width */
  height: 5px;
  background: white;
  box-shadow:
    0 0 5px rgba(255, 255, 255, 0.7),
    0 0 10px rgba(255, 255, 255, 0.9);
  transition: width 1s ease-out;
}

/* Animate in when visible */
.work-img-grid.visible::after {
  width: 100%;
}


.work-img-section {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.work-img-section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
}
.hover-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin: -30px 0 0 -30px;
  border: 3px solid white;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.6),
    0 0 12px rgba(255, 255, 255, 0.9);
  pointer-events: none;
  opacity: 0;
  transition: 
    opacity 0.2s ease,
    transform 0.25s ease-out; /* 👈 This adds smooth motion */
  z-index: 2;
}

/* Show the circle on hover */
.work-img-section:hover .hover-circle {
  opacity: 1;
}
.hover-text {
  color: white;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 1;
  transform: translateY(0);
  transition: none; /* disable default transition */
  position: relative;
}

/* Trigger animation on hover */
.work-img-section:hover .hover-text {
  animation: textFloat 0.5s ease forwards;
}

/* Keyframes for the float effect */
@keyframes textFloat {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-10px);
  }
  60% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.img-grid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  /* Makes image black and white */
}

.work-img-section:hover .img-grid {
  filter: grayscale(100%) brightness(1.2);
}
/* service-section */
.service-grid-section {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Right vertical glowing border (already present) */
.service-grid-section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
}

/* Bottom glowing border */
.service-grid-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  box-shadow:
    0 0 6px rgba(255, 255, 255, 0.5),
    0 0 8px rgba(255, 255, 255, 0.7);
}
.work-img-grid-section {
  position: relative;
}
.work-img-grid-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
  z-index: 1;
}

.service-grid-section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
}
/* Service Grid Heading */
.service-grid-head {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: white;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.service-grid-head.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-grid-section-top {
  width: 100%;
  position: relative;
  padding: 20px 0; /* optional spacing */
  text-align: center;
}
.service-grid-section-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
}
.service-card-section{
  display: flex;
  flex-direction: column;
  gap: 20px;
    padding: 40px;
    border-bottom: none;
}
/* Dot Section */
.dot-section {
  display: flex;
  gap: 8px;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.dot-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.1),
    0 0 24px rgba(255, 255, 255, 0.5);
}
.learn {
  font-size: 14px;
  margin: 0;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  text-align: right;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 2s ease-out;
}

.learn.visible {
  opacity: 1;
  transform: translateY(0);
}
.arrow-r{
  height: 14px;
  width: auto;
  padding-left: 10px;
  padding-top: 5px;
}
/* case-study-section */
.case-study-section .service-grid-section.l{
  width: 70%;
  padding: 44px 0px;
}
.case-study-section .service-grid-section.r{
  width: 30%;
}
.case {
  font-size: 16px;
  color: white;
  margin: 0;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.case.visible {
  opacity: 1;
  transform: translateY(0);
}


/* logo-scroll-section */
.logo-scroll-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 60px 0;
  z-index: 1;
}

/* 🔳 Background: nise.gif grain */
.logo-scroll-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('./images/nise.gif');
   opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* 🔳 Bottom glowing border */
.logo-scroll-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.9);
  z-index: 1;
}


.logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  will-change: transform;
}

.logo-ipsum {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}



/* testimonial-section */
.testimonial-grid-head{
  display: flex;
  justify-content: space-between;
}
.star-section{
  display: flex;
  gap: 3px;
}
.star {
  height: 18px;
  width: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

/* Visible state */
.star.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-grid-bottom{
    display: flex;
  justify-content: space-between;

  align-items: center;
}
.testimonial-grid-bottom-left{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.testimonial-profile {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;

  /* Animation state */
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.testimonial-profile.visible {
  opacity: 1;
  transform: translateY(0);
}


.testimonial-profile-img {
  width: 100%;    /* fill the container’s width */
  height: 100%;   /* fill the container’s height */
  object-fit: cover; /* maintain aspect ratio and cover the container */
}


.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 🔳 Animated grain background */
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('./images/nise.gif');
   opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* 🔳 Bottom glowing white border */
.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.9);
  z-index: 1;
}

.contact-grid-head {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: white;

  /* Scroll reveal setup */
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.7s ease-out, opacity 0.4s ease-out;
}

.contact-grid-head.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact-section .btn-contact{
  height: 15px;
}

/* blog-section */
.blog-img-section {
  width: 100%;
  height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.blog-img-section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 9px rgba(255, 255, 255, 0.8);
}
.blog-img-grid{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  /* Makes image black and white */
}
.min-read {
  font-size: 14px;
  margin: 0;
  color: white;
  position: absolute;
  bottom: 0px;     /* position from bottom */
  right: 0px;      /* position from right */
  background-color: rgba(0, 0, 0, 0.361); /* optional: background for readability */
  padding: 10px 20px;
  font-weight: 500;

}



/* footer */
.footer {
  background-color: #1e1e1e;
  padding: 60px 50px;
  color: white;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-left {
  flex: 1 1 50%;
  min-width: 280px;
  display: flex;
  flex-direction: column; /* makes children stack vertically */
}
.footer-socials {
  margin-top: auto; /* pushes it to the bottom */
  padding-bottom: 20px;
}

.footer-title {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  line-height: 1.5;
}

.footer-description {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

.footer-socials a {
  text-transform: uppercase;
  font-size: 12px;
  margin-right: 30px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #c6ac73;
}

.footer-right {
  display: flex;
  gap: 80px;
  margin-left: auto; /* Pushes the whole group to the right */
  align-items: flex-start; /* optional, aligns top */
}

.footer-column h4.footer-heading {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 30px;
}

.footer-column ul li a {
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* site-bottom-section */
.site-bottom-section {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* 🔳 Background grain layer */
.site-bottom-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('./images/nise.gif');
   opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

/* 🔳 Top glowing border */
.site-bottom-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.9);
  z-index: 1;
}

/* 🔳 Bottom glowing border */
.site-bottom-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  box-shadow:
    0 0 9px rgba(255, 255, 255, 0.7),
    0 0 12px rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.bottom-img{
  width: 20px;
  height: auto;
  padding-right: 10px;
}
.bottom-site{
  font-size: 14px;
  color: white;
  font-weight: 600;
  margin: 0;
}
.made{
  font-size: 14px;
  color: #BBB;
  font-weight: 300;
  margin: 0;
}