html {
  margin:0px !important;
  padding:0px !important;
  }
body {
  font-family: 'Outfit', sans-serif;
  background: #f5f7fa; 
  color: #111; 
  line-height: 1.6;
  overflow-x: hidden; 
  scroll-behavior: smooth;
  }
:root {
    --primary: black;
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --text-light: #121212;
    --text-dark: #ffffff;
    --section-bg: #f1f5f9;
    --accent: #00ffc3;
    --dark: #101010;
    --light: #ffffff;
}
  
  .pic {
    width: 80%;
  }
  .we {
    padding: 70px !important;
    font-size: 20px;
    word-spacing: 5px;
    letter-spacing: 5px;
  }
  .wep {
    font-size: 18px ;
  }
  p{
    font-size: 20px;
    text-align:center !important;
    align-items: center;
    justify-content:center;
  }
  
  .dd{
    text-align:center !important;
  }
  
  body {
    text-align: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: background 0.3s, color 0.3s;
  }
  
  body.dark-mode {
    background-color: var(--bg-dark);
    color: var(--text-dark);
  }
  
  header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: white;
  }
  
  header h1 {
    margin: 0;
    font-size: 1.5rem;
  }
  
  .toggle-mode {
    background: white;
    color: var(--primary);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
  }
  
  
 
  .hero {
    position: relative;
    height: 100vh;
    background: url('images/easeways-background.png') center center / cover no-repeat;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 0;
  }
  
  .hero > * {
    position: relative;
    z-index: 1;
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 1rem;
      background-position: top center;
    }
  
    .hero h2 {
      font-size: 1.8rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  }
  
  
  /* .hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  } */

  
  /* .hero p {
    margin-bottom: 1rem;
  } */
  /* ===== ABOUT SECTION ===== */ 

.about-flex img { flex: 1 1 40%; width: 50%; border-radius: var(--radius); box-shadow: 0 10px 20px rgba(0,0,0,0.1); animation: zoomIn 1s ease-out; }

.about-flex div { flex: 1 1 50%; animation: fadeInUp 1.2s ease-out; }

.about ul { 
  margin-top: 1rem; 
  line-height: 1.8; 
  font-weight: 700;
  font-size: 18px;
}
.about li {
  padding: 10px;
}

  
  .cta-buttons a {
    text-decoration: none;
    margin: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .btn-primary {
    background: var(--primary);
    color: white;
  }
  
  .btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
  }
  
  .sect{
    padding: 2rem;
  }
  
  section.dark-mode {
    background: #1e293b;
  }
  /* test */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
  }
  
  section.dark-mode {
    background-color: #1e293b;
  }
  .small{
    font-size: 15px;
    margin-top:0px;
    padding-top:0px;
  }
  
  
  .services h3,
  .newsletter h3,
  .contact h3 {
    margin-top: 0;
    font-size: 1.5rem;
  }
  
  .service {
    margin: 1rem 0;
  }
  
  .newsletter form,
  .contact form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
  }
  
  .newsletter input,
  .contact input,
  .contact textarea {
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .newsletter button,
  .contact button {
    padding: 0.8rem;
    font-weight: bold;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  /* styles.css additions */
body.dark-mode {
    background-color: #121212;
    color: #ffffff;
  }
  
  section.dark-mode {
    background-color: #1e293b;
  }
  
  body.dark-mode .btn-primary {
    background-color: #2563eb;
    color: white;
  }
  
  body.dark-mode .btn-secondary {
    border-color: white;
    color: white;
  }
  
  body.dark-mode header {
    background-color: #1f2937;
  }
  ul{
    text-align: center;
    margin: 20px;
    padding: 20px;
  }

/* ===== SERVICES CARDS ===== */ 
.card {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease-out;
}

.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 2rem;
  }

  .card.glass {
    background: rgba(255, 255, 255, 0.12); 
    backdrop-filter: blur(12px);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    opacity: 1;
    animation: fadeInUp 1s ease forwards;
    color: #111;
  }
  
  body.dark-mode .card.glass {
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  }
  

.card.glass:hover { 
  transform: translateY(-8px); 
}

.icon-circle { 
  height: 60px; 
  background: #fff; 
  color: #000; 
  display: flex !important; 
  justify-content: center; 
  align-items: center;
  font-size: 1.8rem; 
  border-radius: 50%;
  margin-bottom: 1rem;
  /* border: 2px black solid; */
}

.card h3 { 
  font-weight: 600; 
  margin-bottom: 0.6rem; 
  
}

.socials{
  display: flex;
  align-items: center;
  justify-content: center;
}

.wtsup{
  width:40px;
  height:40px;
  margin: 20px;
}

.ig {
  width:55px;
  height:55px;
  margin: 20px;
}

.ddp{
  font-size: 13px;
}

  /* ===== VIDEO SECTION ===== */ .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }

.video-card { border-radius: 30px; overflow: hidden; background: #fff; box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05); transition: transform 0.3s ease; animation: fadeInUp 1s ease forwards; }

.video-card:hover { transform: scale(1.03); }

.video-card img { width: 100%; height: auto; display: block; }

.video-info { padding: 1rem; font-weight: 500; }

li{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slide-Up Animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.slide-up.reveal {
  animation: slideUpFade 0.8s ease forwards;
}
  
  footer {
    text-align:center;
    height:100%;
    margin: 0;
    padding: 2rem;
    background: #0f172a;
    color: white;
    bottom:0;
  }
  
/* ===== MEDIA @media (max-width: 768px) { nav { position: absolute; top: 70px; left: 0; right: 0; background: #0f0f0f; flex-direction: column; display: none; gap: 1rem; padding: 0; } nav.open { display: flex; } #burger { display: flex; } .about-flex { flex-direction: column; } }
 ===== */
 
 /* ===== DESKTOP MEDIA QUERY (min-width: 1024px) ===== */
@media (min-width: 1024px) {
  .container {
    /* max-width: 1200px; */
    margin: 0 auto;
    /* padding: 2rem 3rem; */
  }

  header {
    padding: 2rem 4rem;
  }

  .hero {
    height: 90vh;
    background-position: center;
    padding: 4rem;
  }

  .we {
    font-size: 28px;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-flex {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .about-flex div {
    flex: 1;
    text-align: left;
  }

  .about ul {
    font-size: 20px;
    line-height: 2;
    padding-left: 1rem;
  }

  .card-grid, .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .card.glass {
    padding: 2rem;
  }

  .video-info h4 {
    font-size: 1.1rem;
  }

  form {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact form input,
  .contact form textarea {
    font-size: 1.1rem;
  }

  footer {
    font-size: 16px;
    padding: 2rem 0;
  }
  
  .we, .wep, p, ul li {
  font-weight: 500;
  }
  
  .wep {
    font-size: 25px;
    margin-right: 20%;
    margin-left: 20%;
  }
  
  li{
    font-size: 20px;
    list-style: none;
  }
  
  .ddh3 {
    font-size: 30px;
  }
  
  .ddp {
    font-size: 20px;
  }
  
  .card.glass{
    margin-right: 15%;
    margin-left: 15%;
  }

  html {
     scroll-padding-top: 100px;
  }
}
  