@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Reset and Base Styles */
* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Layout */
section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 20px;
}

#hero {
  background-image: url("5-min.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

/* Header Styles */
.header-container {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 1300px;
  margin-top: 1px;
  border-radius: 60px;
  padding: 15px 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1002;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
  color: #ffffff;;
}

nav {
  display: flex;
  gap: 30px;
}

header nav a {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.4s ease;
}

header nav a:hover {
  
color: #ffffff;
  scale: 1.2;}
  

/* Main Content Box */
.main-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 1300px;
  margin-top: 30px;
  border-radius: 40px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.welcome {
  max-width: 600px;
}

.content-box {
  
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}


/* Enhanced sections */
.mission-section,
.stats-section,
.process-section,
.cta-section {
  background: linear-gradient(135deg, #000000 100%, );
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mission-section,
.stats-section,
.process-section
{

 background-image: url("autumn-leaves-composition\ \(2\).jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
 
}


.cta-section {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Typography */
h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #c7c6c6;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FCECDD;
  margin-bottom: 15px;
  line-height: 1.2;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #FCECDD;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #2a3335;
  line-height: 1.6;
  margin-top: 20px;
  opacity: 0.8;
}

/* Image Styles */
img {
  height: 400px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Button Styles */
.button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a5450, #2a6b66);
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(26, 84, 80, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
}

.button:hover {
  background: linear-gradient(135deg, #2a6b66, #1a5450);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(26, 84, 80, 0.4);
}

/* Additional styles for About Us page */
.company-details {
  margin: 30px 0;
}

.company-details h4 {
  margin-bottom: 20px;
  padding: 15px;
background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border-left: 4px solid #000000;
}

.stats-container {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 30px 20px;

  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-item h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item h4 {
  color: #ffffff;
  font-weight: 500;
  margin: 0;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mission Grid */
.mission-content {
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.mission-item {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.mission-icon {
  width: 70px;   /* control size */
  height: 70px;  /* keeps it uniform */
  object-fit: contain; /* keeps proportions */
  border-radius: 50%;  /* optional: makes it circular */
}


.mission-item h3 {
  color: #ffffff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.mission-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Stats Section */
.stats-header {
  text-align: center;
  margin-bottom: 50px;
}

.stats-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stats-header h6 {
  color: rgba(255, 255, 255, 1  );
  font-size: 1.2rem;
}
.stats-header p {
   color: rgba(255, 255, 255, 0.8);
  margin-top: 1cm;
}

.stats-header2{
  text-align: center;
  margin-bottom: 50px;
}
.stats-header2 h2{
  color: rgba(255, 255, 255, 1);
  font-size: 2rem;

}
.stats-header2 p{
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1cm;
}






/* Process Timeline */
.process-content {
  text-align: center;
}

.process-content h2 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.process-step {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: scale(1.05);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-content {
  text-align: center;
}

.cta-content h2 {
  color: #2a3335;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  color: #2a3335;
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button.primary {
  background: linear-gradient(135deg, #1a5450, #2a6b66);
}

.button.secondary {
  background: transparent;
  border: 2px solid #1a5450;
  color: #1a5450;
}

.button.secondary:hover {
  background: #1a5450;
  color: white;
}

/* Scroll Button */
.scroll-button {
  display: inline-block;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid #1a5450;
  color: #1a5450;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.scroll-button:hover {
  background: #1a5450;
  color: white;
  transform: translateY(-2px);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1003;
  position: relative;
}

.mobile-nav-toggle:hover {
  color: #1a5450;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
    z-index: 1003;
  }
  
  nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 0 0 20px 20px;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    z-index: 1002;
  }
  
  nav.active {
    max-height: 320px;
    padding: 10px 0;
    opacity: 1;
  }
  
  header nav a {
    color: #1a5450 !important;
    padding: 15px 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(26, 84, 80, 0.1);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    text-align: left;
  }
  
  header nav a:last-child {
    border-bottom: none;
  }
  
  header nav a:hover {
    background-color: rgba(26, 84, 80, 0.1);
    transform: translateX(10px);
    color: #1a5450 !important;
  }
  
  .header-container {
    position: relative;
    overflow: visible;
    z-index: 1003;
  }
  
  .content-box {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h3 {
    font-size: 1.1rem;
  }
  
  .main-box {
    padding: 40px 20px;
  }
  
  img {
    height: 300px;
  }
  
  .button {
    margin-left: 0;
  }
  
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-item {
    padding: 20px 15px;
  }
  
  .stat-item h2 {
    font-size: 2rem;
  }
  
  .company-details h4 {
    padding: 12px;
    font-size: 1rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .mission-item,
  .process-step {
    padding: 30px 20px;
  }
  
  .stats-header h2,
  .process-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  section {
    padding: 20px 10px;
}

@media (max-width: 480px) {
  .header-container,
  .main-box {
    width: 95%;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  header {
    padding: 0 20px;
  }
  
  header nav a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  /* ...existing responsive code... */
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .mission-item,
  .stat-item,
  .process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: scrollFadeIn 0.8s ease forwards;
  }
  
  .mission-item:nth-child(1) { animation-delay: 0.1s; }
  .mission-item:nth-child(2) { animation-delay: 0.2s; }
  .mission-item:nth-child(3) { animation-delay: 0.3s; }
  
  .stat-item:nth-child(1) { animation-delay: 0.1s; }
  .stat-item:nth-child(2) { animation-delay: 0.2s; }
  .stat-item:nth-child(3) { animation-delay: 0.3s; }
  .stat-item:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  }

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .mission-item,
  .stat-item,
  .process-step {
    opacity: 0;
    transform: translateY(30px);
    animation: scrollFadeIn 0.8s ease forwards;
  }
  
  .mission-item:nth-child(1) { animation-delay: 0.1s; }
  .mission-item:nth-child(2) { animation-delay: 0.2s; }
  .mission-item:nth-child(3) { animation-delay: 0.3s; }
  
  .stat-item:nth-child(1) { animation-delay: 0.1s; }
  .stat-item:nth-child(2) { animation-delay: 0.2s; }
  .stat-item:nth-child(3) { animation-delay: 0.3s; }
  .stat-item:nth-child(4) { animation-delay: 0.4s; }
}

@keyframes scrollFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
}