body {
  background-color: #050505;
  color: #e2e8f0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal; /* Ensuring no italics */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #10b981; /* Emerald Green Hover */
}

/* Grid Background Utility */
.bg-grid {
  background-size: 40px 40px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

/* Bento Grid Card */
.bento-card {
  background-color: #0a0a0a;
  border: 1px solid #1f1f1f;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: #10b981; /* Emerald Green Border */
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(16, 185, 129, 0.15); /* Greenish Shadow */
}

/* Subtle inner glow on hover */
.bento-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(16, 185, 129, 0.08), /* Emerald Glow */
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.bento-card:hover::after {
  opacity: 1;
}

/* Navigation Blur */
.nav-blur {
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f1f1f;
}

/* Button Styles */
.btn-primary {
  background: #10b981; /* Emerald Background */
  color: black;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid #10b981;
}
.btn-primary:hover {
  background: #059669; /* Darker Emerald on Hover */
  border-color: #059669;
  transform: scale(1.02);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid #333;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1); /* Slight Green Tint */
  border-color: #10b981;
}
/* Typography Utilities */
.text-balance {
  text-wrap: balance;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Dots */

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.3);
}

/* Swipe feedback */

.hero-slide {
  touch-action: pan-y;
}

.text-green-500 {
  padding: 10px;
}

footer ul li a{
  display: flex;
  justify-content: start;
  align-items: center;
  align-content: center;
  gap: 10px;
}

/* ================================
   GLOBAL RESPONSIVE NORMALIZATION
================================ */

/* Fluid Typography Base */
html {
  font-size: 16px;
}

body {
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Max Width Control */
.max-w-7xl {
  max-width: 1280px;
}

/* Section Padding Standard */
section,
header {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Prevent Horizontal Overflow */
html,
body {
  overflow-x: hidden;
}

/* Typography Rhythm */
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  max-width: 70ch;
}

/* Card Padding Normalize */
.bento-card {
  padding: clamp(1.5rem, 2vw, 2rem);
}

/* Button Scaling */
.btn-primary,
.btn-secondary {
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

/* Testimonial Cards */
#testimonials .bento-card {
  width: clamp(280px, 90vw, 420px);
}


nav > div > div.hidden.lg\:flex.space-x-8.text-sm.font-medium.text-gray-400{
  min-width: 50%;
}

body > nav > div > div.hidden.lg\:flex.gap-4{
  min-width: 20%;

}

.logo-box{
  width: 30%;
}

.header-logo{
  width: 50%;
  border-radius: 10px;
}

.footer-logo{
  width: 70%;
  border-radius: 10px;
}


/* ===================================
   1366px → 1420px (Large Desktop)
=================================== */

@media only screen and (min-width: 1366px) and (max-width: 1420px) {
  html {
    font-size: 16px;
  }

  header {
    padding-top: 10rem !important;
    padding-bottom: 6rem !important;
  }

  .hero-slide h1 {
    font-size: 4.5rem;
  }

  section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

/* ===================================
   1280px → 1365px (Desktop)
=================================== */

@media only screen and (min-width: 1280px) and (max-width: 1365px) {
  html {
    font-size: 15.5px;
  }

  header {
    padding-top: 10rem !important;
    padding-bottom: 6rem !important;
  }

  #hero-slider {
    min-height: 250px !important;
  }
  .hero-slide h1 {
    font-size: 4.2rem;
  }
  .hero-slide p {
    margin-bottom: 2rem;
  }

  div.flex.justify-center.gap-3.pt-24.-mb-8 {
    padding-top: 8rem;
  }

  .grid {
    gap: 1.25rem;
  }

  div.mb-20 {
    margin-bottom: 3rem;
  }
  div.mt-20 {
    margin-top: 3rem !important;
  }

nav > div > div.hidden.lg\:flex.space-x-8.text-sm.font-medium.text-gray-400{
  min-width: 55%;
}

body > nav > div > div.hidden.lg\:flex.gap-4{
  min-width: 15%;
  justify-content: flex-end;

}

.logo-box{
  width: 40%;
}

.header-logo{
  width: 50%;
  border-radius: 10px;
}

.footer-logo{
  width: 70%;
  border-radius: 10px;
}

}

/* ===================================
   1180px → 1279px (Small Desktop)
=================================== */

@media only screen and (min-width: 1180px) and (max-width: 1279px) {
  html {
    font-size: 15px;
  }

  header {
    padding-top: 10rem !important;
    padding-bottom: 6rem !important;
  }

  #hero-slider {
    min-height: 250px !important;
  }
  .hero-slide h1 {
    font-size: 3.8rem;
  }

  #method h2 {
    line-height: 1.2;
  }

  section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
  div.mb-20 {
    margin-bottom: 3rem;
  }
  div.mt-20 {
    margin-top: 3rem !important;
  }

nav > div > div.hidden.lg\:flex.space-x-8.text-sm.font-medium.text-gray-400{
  min-width: 55%;
}

body > nav > div > div.hidden.lg\:flex.gap-4{
  min-width: 15%;
  justify-content: flex-end;

}

.logo-box{
  width: 40%;
}

.header-logo{
  width: 50%;
  border-radius: 10px;
}

.footer-logo{
  width: 70%;
  border-radius: 10px;
}

}

/* ===================================
   1024px → 1179px (Tablet Landscape)
=================================== */

@media only screen and (min-width: 1024px) and (max-width: 1179px) {
  html {
    font-size: 14.5px;
  }

  .hero-slide h1 {
    font-size: 3.4rem;
  }

 #hero-slider {
    min-height: 250px !important;
  }

  .max-w-7xl {
    max-width: 1100px;
  }

  #services .grid {
    grid-template-columns: repeat(2, 1fr);
  }

    div.mb-20 {
    margin-bottom: 3rem;
  }
  div.mt-20 {
    margin-top: 3rem !important;
  }

  nav > div > div.hidden.lg\:flex.space-x-8.text-sm.font-medium.text-gray-400{
  min-width: 55%;
}

body > nav > div > div.hidden.lg\:flex.gap-4{
  min-width: 15%;
  justify-content: flex-end;

}

.logo-box{
  width: 40%;
}

.header-logo{
  width: 50%;
  border-radius: 10px;
}

.footer-logo{
  width: 70%;
  border-radius: 10px;
}
}

/* ===================================
   768px → 1023px (Tablet Portrait)
=================================== */

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  html {
    font-size: 14px;
  }

  header {
    padding-top: 9rem;
  }

   #hero-slider {
    min-height: 200px !important;
  }

  .hero-slide h1 {
    font-size: 3rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }

  #services{
    border-color: rgb(255 255 255 / 0.1);
  }

  section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  #method .grid,
  #why-us .grid {
    grid-template-columns: 1 1fr;
  }

    #method h2 {
    line-height: 1.2;
  }

  footer .grid {
    grid-template-columns: repeat(2, 1fr);
  }

    div.mb-20 {
    margin-bottom: 3rem;
  }
  div.mt-20 {
    margin-top: 3rem !important;
  }


.logo-box{
  width: 40%;
}

.header-logo{
  width: 50%;
  border-radius: 10px;
}


  .footer-logo{
  width: 50%;
  border-radius: 10px;
}
}

/* ===================================
   320px → 767px (Mobile)
=================================== */

@media only screen and (min-width: 320px) and (max-width: 767px) {
  html {
    font-size: 14px;
  }

  .text-sm{
    font-size: 14px;
  }

  /* Container */
  .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Hero */
  header {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

     #hero-slider {
    min-height: 10px !important;
  }

  .hero-slide h1 {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-slide p {
    font-size: 0.95rem;
    margin-bottom: 2rem !important;
  }

  /* Buttons */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Grids → Single Column */
  .grid {
    grid-template-columns: 1fr !important;
  }

      div.mb-20 {
    margin-bottom: 3rem;
  }
  div.mt-20 {
    margin-top: 3rem !important;
  }

  /* Section Spacing */
  section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }


  #services > div > div.flex.flex-col{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  /* Process Cards */
  #process .p-10 {
    padding: 2rem 1.5rem;
  }

  /* Testimonials */
  #testimonials .bento-card {
    width: 90vw;
  }

  /* Footer */
  footer .grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left;
  }
h4{
  font-size: 20px;
}

  footer ul li {
    justify-content: start;
    font-size: 15px;
  }


.logo-box{
  width: 60%;
}

.header-logo{
  width: 70%;
  border-radius: 10px;
}

.footer-logo{
  width: 45%;
}

}
