* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*rgb(33, 73, 63)*/
}

/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;  
  line-height: 1.6;
  /* background-color: #f9f9f9; */
  background: url('./service\ bc\ img.jpeg') no-repeat center center / cover fixed;
}

span{
    color: #ffcc00;
    font-weight: bold;
}

.hamburger{
  display: none;
}

.navBar{
  display:inline-block;
  margin-top: 20px;
}

.navBar{
  /* background-color: rgb(47, 101, 87); */
  background: linear-gradient(45deg, rgb(48, 110, 98),rgb(33, 81, 69));
  display: flex;
  flex-direction: row;
  gap: 120px;
  

  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 20px;
  align-items: center;
  margin-left: 70px;
}

.logo img {
  height: 80px;
  width: 80px;
}

.logo h3{
    color:#ffcc00;
    font-size: 30px;
}

.navLinks{
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.linkLeft{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkRight{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkLeft, .linkRight {
  display: flex;
  align-items: center;

  list-style: none;
  padding: 0;
  margin: 0;
}

.linkLeft a, .linkRight a {
  text-decoration: none;
  color:white;
  font-weight:bold;
}

.linkLeft a:hover{
    color: #ffcc00;
}

/* .linkLeft a.active {
  color:#ffcc00; Highlight active link
} */

/* Search Input Styling */
.linkRight input[type="search"] {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 40px;
}

/* SignIn Button Styling */
.linkRight button {
  padding: 6px 15px;
  border: none;
  background-color: #ffcc00;
  color:black;
  /* border-radius: 5px; */
  cursor: pointer;
  font-weight: bold;
  height:40px;
  width: 130px;
  border-bottom-right-radius: 40px;
}

.linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 450px) {
  .hamburger {
    display: block;
    font-size: 40px;
  }

  .navBar{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;

    position: static;
    background-color: transparent;
  }
  .navBar.active{
    display:flex;
    flex-direction: column;
    gap: 20px;
  }
  .navBar .logo{
    margin-left: 2px;
  }
  .navLinks{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
  }
  .linkLeft{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .linkLeft a:hover{
    color: #ffcc00;
  }
  .linkRight{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .linkLeft, .linkRight {
    flex-direction: column;
    gap: 10px;
  }
  .linkRight input[type="search"] {
    width: 70%;
  }
  .linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
  }
  .linkRight button {
    width: 27%;
  }
  .logo{
    margin-left: 140px;
  }
}








/*==== Section 1 ====*/
/*== About Us Banner ==*/
.about-banner {
  /* background: #e8f6e8 url("circuit-pattern.png") no-repeat center top;  */
  /* Replace circuit-pattern.png with your image */
  /* background-color:#ffcc00; */
  background-color:rgb(47, 101, 87);
  border: 5px solid #ffcc00;
  background-size: cover;
  text-align: center;
  padding: 60px 20px;
  width: 50%;
  margin-top: 150px;
  margin-left: 380px;
  border-radius: 20px 20px 0 0; /* Rounded top corners */
}

.about-banner-content {
  max-width: 900px;
  margin: auto;
}

.about-banner .breadcrumb {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.about-banner .breadcrumb a {
  color:white; /* yellow-orange link */
  text-decoration: none;
  font-weight: 500;
}

.about-banner .breadcrumb span {
  color: #000;
  font-weight: 600;
}



.about-banner h1 {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color:#ffcc00;
  margin-top: 30px;
  cursor: pointer;
  /* font-family: cursive; */
}

/* Create underline using ::after */
.about-banner h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px; /* space below text */
  width: 0;
  height: 3px;
  background-color:#ffcc00; /* underline color */
  animation: underlineGrow 1s ease infinite;
  animation-delay: 0.3s; /* little delay for effect */
}

/* Keyframes */
@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


/* Media query for mobile screens 450px and below */
@media (max-width: 450px) {
  .about-banner {
    width: 90%;             /* Take almost full width */
    margin: 100px auto 0;   /* Center horizontally, adjust top margin */
    padding: 40px 15px;     /* Reduce padding for smaller screens */
    border-radius: 15px 15px 0 0; /* Slightly smaller rounding */
  }

  .about-banner h1 {
    font-size: 1.8rem;      /* Smaller heading */
  }

  .about-banner .breadcrumb {
    font-size: 14px;        /* Smaller breadcrumb text */
  }

  .about-banner .breadcrumb a {
    font-weight: 400;       /* Adjust weight if needed */
  }
}









/*====  section 2 ====*/
/*== About Page ==*/
.about-page-section {
  padding: 80px 20px;
  /* background: #f9f9f9; */
  font-family: Arial, sans-serif;
}

.about-page-container {
  max-width: 1200px;
  margin: auto; 
  
}

.headerStory {
  height: 115vh; /* full screen */
  padding: 30px;
  background: url('./headerStory\ bc\ img\ 1.jpg') no-repeat center center / cover fixed;
  /* background-color:rgb(200, 171, 135); */
  width: 82%;
  margin-left: 100px;
  margin-top: 150px;
  animation: changeBg 20s infinite ease-in-out;
  border-radius: 20px;
  border-bottom-left-radius: 250px;
  border-top-right-radius: 250px;
}

@keyframes changeBg {
  0% {
    background-image: url('./headerStory\ bc\ img\ 1.jpg');
  }
  33% {
    background-image: url('./headerStory\ bc\ img\ 2.jpg');
  }
  66% {
    background-image: url('./headerStory\ bc\ img3.jpg');
  }
  100% {
    background-image: url('./headerStory\ bc\ img\ 4.jpg');
  }
}

/* Headings */
.about-page-section h1,
.about-page-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 2.5rem;
  /* color:black; */
  color:#ffcc00;
  margin-top: 15px;
  /* font-family: cursive; */
}

.about-page-section p {
  line-height: 1.8;
  font-size: 1.1rem;
  color:white;
  /* color: black; */
  font-weight: bold;
  width: 50%;
  margin-left: 270px;
}

/* Intro Section */
.about-header {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeIn 1.2s ease-in-out;
}

.about-header span {
  color:black;
  font-weight: bold;
}

/* Story & Why Choose */
.about-story,
.about-why,
.about-milestones,
.about-team,
.about-testimonials,
.about-cta {
  /* margin: 100px 0; */
  animation: slideUp 1.2s ease forwards;
  opacity: 0; /* initially hidden */
}

.about-why{
  margin-top: 250px;
}

.about-why:hover h2{
  color:white;
}

.about-why:hover ul li{
  background-color:rgb(210, 110, 110);
  color: white;  
}

.about-why>h2{
  color:#ffcc00;
}

/* Lists */
.about-why ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.about-why li {
  background: #fff;
  margin: 10px auto;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  max-width: 600px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* line-height:2rem; */
  margin-top: 20px;
}

.about-why li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Media query for screens 450px and below */
@media (max-width: 450px) {

  .about-page-section {
    padding: 40px 10px; /* Reduce padding */
  }

  .about-page-container {
    width: 98%; /* Fit mobile screens */
    margin: auto;
    /* height: 600px; */
  }

  .headerStory {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    height: 130vh; /* smaller height for mobile */
    border-radius: 15px;
    border-bottom-left-radius: 100px;
    border-top-right-radius: 100px;
  }

  .about-page-section h1,
  .about-page-section h2 {
    font-size: 1.8rem; /* smaller headings */
    margin-top: 10px;
  }

  .about-page-section p {
    width: 90%; /* fit mobile */
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.5;
  }

  .about-why ul li {
    max-width: 90%; /* fit mobile screen */
    padding: 10px 15px;
  }
}











/*==== section 3 ====*/
/*== our achievements ==*/
.about-milestones {
  padding: 50px 20px;
  /* background: #f9f9f9; */
  overflow: hidden; /* hide scrollbars */
  /* border-top-right-radius: 250px;
  border-bottom-left-radius: 250px; */
  margin-top: 200px;
}

.about-milestones:hover{
  /* background-color:burlywood; */
}

.about-milestones h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* Container for sliding stats */
.stats-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* .about-milestones:hover .stats-slider{
  background-color:rgb(210, 110, 110);
  border-radius: 25px;
  height: 100px;
}

.about-milestones:hover .stats-track p {
  color: white;
  margin-top: 25px;
} */

/* Track for sliding items */
.stats-track {
  display: flex;
  gap: 50px; /* spacing between items */
  animation: slide-left 20s linear infinite;
}

/* Individual stats */
.stats-track p {
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0;
  color:white;
  margin-top: 20px;
}

/* Animation */
@keyframes slide-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%); /* adjust based on content length */
  }
}

/* Media query for screens 450px and below */
@media (max-width: 450px) {

  .about-milestones {
    padding: 30px 10px;
    margin-top: 100px;
    border-top-right-radius: 100px;
    border-bottom-left-radius: 100px;
  }

  .about-milestones h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .stats-slider {
    width: 100%;
    overflow: hidden;
  }

  .stats-track {
    gap: 20px; /* reduce spacing for small screens */
    animation: slide-left 10s linear infinite; /* slower for readability */
  }

  .stats-track p {
    font-size: 1.2rem; /* smaller text */
    margin-top: 15px;
  }
}











/*==== section 4 ====*/
/* == our journey == */
.timeline-section {
  padding: 80px 20px;
  text-align: center;
  margin-top: 50px;
}

.timeline-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color:#ffcc00;
  font-weight: 700;
}

.timeline-section p {
  margin-left: 20px;
  color:white;
  font-weight: bold;
  font-size: 1.3rem;

  position: relative; /* needed for ::after */
  display: inline-block; /* shrink to content width */
}

/* Automatic underline animation */
.timeline-section p::after {
  content: "";
  position: absolute;
  bottom: -4px; /* distance from text */
  left: 50%;
  transform: translateX(-50%);
  width: 0; /* start from 0 */
  height: 2px; /* underline thickness */
  background: white;
  animation: underlineGrow 2s ease-in-out infinite; /* auto animation */
}

/* Keyframes for underline */
@keyframes underlineGrow {
  0% {
    width: 0;
  }
  50% {
    width: 100px; /* underline length */
  }
  100% {
    width: 0;
  }
}

.timeline-intro {
  color: #555;
  margin-bottom: 50px;
  font-size: 1rem;
  
}

/* Timeline container */
.timeline {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: auto;
  padding: 20px 0;
  max-width: 100%;
}

/* Horizontal line at top */
.timeline::after {
  content: '';
  position: absolute;
  height: 6px;
  width: 100%;
  background-color:#ffcc00;
  top: 0;  /* line at top */
  left: 0;
  border-radius: 4px;
}

/* Timeline items side by side */
.timeline-item {
  position: relative;
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-top: 30px; /* space from line */
}

/* Circle indicators on the line */
.timeline-item::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: -9px; /* align with line */
  left: 50%;
  transform: translateX(-50%);
  background-color:#ffcc00;
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 2;
}

/* Timeline content below line */
.timeline-content {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: relative;
  margin-top: 30px;
  display: inline-block;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Add pseudo-element for gradient hover effect */
.timeline-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  /* background: linear-gradient(to top, #f9c74f, #f94144);  */
  background:rgb(47, 101, 87); /* gradient colors */
  z-index: 0;
  transition: height 0.5s ease;
  border-radius: 12px;
  border-top-right-radius: 190px;
}

.timeline-content:hover h3{
  color:#ffcc00;
}

.timeline-content:hover p {
  color: white;
}

.timeline-content:hover {
  border-left: 5px solid #ffcc00; /* visible only on hover */
  border-bottom: 5px solid #ffcc00; /* visible only on hover */
}


/* Move content above pseudo-element */
.timeline-content * {
  position: relative;
  z-index: 1;
}

/* On hover: animate gradient from bottom to top */
.timeline-content:hover::before {
  height: 100%;
}

.timeline-content h3{
  color:red;
  transition: color 0.5s ease; /* smooth transition */
  font-size: 25px;
  margin-bottom: 15px;
}

.timeline-content p {
  color: black;
  width: 200px;
  transform: translateX(-50px); /* moves left */
}

.timeline-content p {
  margin-left: 70px;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive: stack vertically for mobile */
/* Media query for screens 450px and below */
@media (max-width: 450px) {

  .timeline-section {
    padding: 40px 10px;
  }

  .timeline-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .timeline-section p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    text-align: center;
  }

  .timeline-intro {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .timeline {
    flex-direction: column; /* Stack items vertically on mobile */
    align-items: center;
  }

  .timeline-item {
    min-width: 80%; /* Make items fit mobile width */
    margin-top: 40px;
  }

  .timeline-item::before {
    top: -9px; /* same position, centered automatically */
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    /* padding-left: 20px; */
  }

  .timeline-content h3 {
    font-size: 1.5rem;
  }

  .timeline-content p {
    margin-left: 80px;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .timeline::after {
    top: 0;
    height: 4px;
  }
}












/*==== section 5 ====*/
/*== team section ==*/
.teamSection{
  margin-top: 150px;
  background: linear-gradient(to right, rgb(30, 78, 66) 50%, white 50%);
  /* background: linear-gradient(to right, brown 50%, white 50%); */
  padding: 40px;
}

.about-team h2{
  text-align: left;   /* aligns the text to the left */
  margin-left:90px;     /* make sure no extra margin is blocking */
}

.about-team p {
  color:white;
  font-weight: bold;
  width: 500px;
  margin-left: 90px;
  font-size: 1.1rem;
  margin-top: 50px;

}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 60px;
}

.team-member {
  /* background:rgb(210, 110, 110); */
  background:#f1c30d;
  /* background-color: white; */
  height:330px;
  border-radius: 16px;
  text-align: center;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 30px;
  margin-bottom: 15px;
  border: 4px solid rgb(20, 204, 158);
}

.team-member h3{
  color:#555;
  font-size: 1.5rem;
}

.team-member p {
  margin-left: 110px;
  margin-top: 30px;
  color:black;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/*=== Testimonials ===*/
.about-testimonials{
  margin-top: 130px;
}

.about-testimonials:hover blockquote{
  background-color:rgb(210, 110, 110);
  color: white;
  border-left: 5px solid white;
  border-right:none;
}

.about-testimonials blockquote {
  background: #fff;
  /* border-left: 5px solid #1e90ff; */
  border-right: 5px solid rgb(30, 78, 66);
  margin:35px auto;
  padding: 20px;
  max-width: 700px;
  font-style: italic;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  animation: fadeIn 1.2s ease-in-out;
}

.about-testimonials blockquote span {
  color: brown;
  font-weight: bold;
}

/* Media query for screens 450px and below */
@media (max-width: 450px) {

  .teamSection {
    padding: 20px 10px;
    margin-top: 100px;
    background: linear-gradient(to bottom, brown 50%, white 50%);
  }

  .about-team h2 {
    text-align: center;
    margin-left: 0;
    font-size: 1.5rem;
  }

  .about-team p {
    width: 90%;
    margin: 20px auto 40px auto;
    text-align: center;
    font-size: 1rem;
    margin-top: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr; /* stack team members vertically */
    gap: 20px;
    margin-top: 40px;
  }

  .team-member {
    height: auto;
    padding: 15px;
  }

  .team-member img {
    width: 100px;
    height: 100px;
    margin-top: 20px;
  }

  .team-member p {
    margin-left: 0;
    margin-top: 15px;
  }

  .about-testimonials {
    margin-top: 80px;
    padding: 0 10px;
  }

  .about-testimonials blockquote {
    max-width: 90%;
    margin: 25px auto;
    padding: 15px;
    font-size: 0.95rem;
  }

  .about-testimonials blockquote span {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
  }
}











/*==== section 6 ====*/
/* ==== Projects Section ==== */
.projects-section {
  padding: 80px 20px;
  background-color:rgb(30, 78, 66);
}

.projects-section h2 {
  font-size: 2.2rem;
  text-align: left;
  margin: 0;
  margin-left: 265px;
  margin-bottom: 20px;
  color:#ffcc00;
  font-weight: 700;
  animation: fadeIn 1.2s ease;
}

.projects-intro {
  font-size: 1rem;
  text-align: left;
  margin: 0;
  margin-bottom: 50px;
  color: #555;
  animation: fadeIn 1.5s ease;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  background: #f9f9f9;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1.2s ease forwards;
  opacity: 0;
}

.project-card img {
  width: 100%;
  height:400px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
  text-align: left;
}

.project-info {
  padding: 20px;
  background: linear-gradient(to right, #ffffff 50%, rgb(195, 104, 104) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-position 0.5s ease;
}

.project-info:hover {
  background-position: right bottom; /* slide color left → right */
  color: #fff; /* optional: change text color on hover */
}


.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color:brown;
}

.project-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
  margin-left: 50px;
}

/* Status Labels */
.status {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: bold;
}

.status.completed {
  background: #2ecc71;
  color: #fff;
}

.status.ongoing {
  background: #f39c12;
  color: #fff;
}

.status.upcoming {
  background: #9b59b6;
  color: #fff;
}

/* Hover effect */
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Animation trigger */
.project-card.visible {
  opacity: 1;
}

/* Media query for screens 450px and below */
@media (max-width: 450px) {

  .projects-section {
    padding: 40px 10px;
    text-align: center;
    margin-top: 150px;
  }

  .projects-section h2 {
    font-size: 1.6rem;
    margin-left: 0;
    text-align: center;
    margin-bottom: 15px;
  }

  .projects-intro {
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto 30px auto;
    max-width: 90%;
  }

  .projects-grid {
    grid-template-columns: 1fr; /* single column layout */
    gap: 20px;
  }

  .project-card {
    height: auto;
  }

  .project-card img {
    height: 370px; /* smaller images */
  }

  .project-info {
    padding: 15px;
    text-align: center;
  }

  .project-info h3 {
    font-size: 1.1rem;
  }

  .project-info p {
    font-size: 0.85rem;
    margin-left: 0;
  }

  .status {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}













/* CTA */
.about-cta {
  text-align: center;
  margin-top: 150px;
  padding: 40px 20px;
  background:white;
  color: brown;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.about-cta p{
  color:rgb(30, 78, 66);
  width: 100%;
  margin-left:-5px;
}

.about-cta .cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 25px;
  background:brown;
  color:white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-cta .cta-btn:hover {
  background:brown;
  color: black;
  transform: translateY(-3px);
}

/* ==== Animations ==== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll animation trigger */
.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 450px) {
  .stats {
    flex-direction: column;
  }
}












