/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: #32cd32;
  font-weight: 700;
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #32cd32;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #32cd32;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4rem;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
  margin-top: 2rem;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #32cd32;
  color: white;
}

.btn-primary:hover {
  background: #28a428;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(50, 205, 50, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #32cd32;
  border: 2px solid #32cd32;
}

.btn-secondary:hover {
  background: #32cd32;
  color: white;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

/* About Section */
.about {
  padding: 120px 0;
  background: #fff;
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2rem;
}

.about-text {
  padding-right: 2rem;
}

.about-text h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.about-text > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.feature i {
  font-size: 2rem;
  color: #32cd32;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

/* Hero Features Styles */
.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-highlight {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-highlight:hover {
  transform: translateY(-5px);
}

.feature-highlight i {
  font-size: 2.5rem;
  color: #32cd32;
  margin-bottom: 1rem;
}

.feature-highlight h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.feature-highlight p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* About Stats Styles */
.about-stats {
  background: linear-gradient(135deg, #32cd32, #28a428);
  padding: 3rem 2rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(50, 205, 50, 0.2);
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Categories Section */
.categories {
  padding: 80px 0;
  background: #f8f9fa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.category-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-10px);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #32cd32, #28a428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.category-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.status {
  background: #32cd32;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* CEO Section */
.ceo {
  padding: 80px 0;
  background: white;
}

.ceo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ceo-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.ceo-text h3 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.ceo-title {
  font-size: 1.3rem;
  color: #32cd32;
  font-weight: 600;
  margin-bottom: 2rem;
}

.ceo-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.ceo-achievements {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.achievement i {
  font-size: 1.5rem;
  color: #32cd32;
}

.achievement span {
  font-weight: 600;
  color: #333;
}

/* CEO Card Styles */
.ceo-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.ceo-avatar {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #32cd32, #28a428);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.ceo-avatar i {
  font-size: 3rem;
  color: white;
}

.ceo-info h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.ceo-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.highlight-item i {
  font-size: 1.2rem;
  color: #32cd32;
}

.highlight-item span {
  color: #666;
  font-weight: 500;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background: linear-gradient(135deg, #32cd32, #28a428);
  color: white;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
}

.newsletter-form button {
  padding: 15px 30px;
  background: white;
  color: #32cd32;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.office-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.office-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.office-header i {
  font-size: 2rem;
  color: #32cd32;
}

.office-header h3 {
  font-size: 1.8rem;
  color: #333;
}

.office-details h4 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.company-number {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.address,
.email {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.address i,
.email i {
  color: #32cd32;
  margin-top: 0.2rem;
}

.email a {
  color: #32cd32;
  text-decoration: none;
}

.email a:hover {
  text-decoration: underline;
}

.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #32cd32;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: #32cd32;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: #32cd32;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #32cd32;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: #32cd32;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #28a428;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 2rem;
  text-align: center;
  color: #ccc;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #32cd32;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #28a428;
  transform: translateY(-2px);
}

.back-to-top.show {
  display: flex;
}

/* Ensure proper section separation */
section {
  position: relative;
  z-index: 1;
  clear: both;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-text {
    padding-right: 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .ceo-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-highlight {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .ceo-card {
    padding: 2rem;
  }

  .ceo-avatar {
    width: 100px;
    height: 100px;
  }

  .ceo-avatar i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 15px;
  }

  .office-card,
  .contact-form-section {
    padding: 1.5rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.category-card,
.office-card,
.contact-form-section {
  transition: all 0.3s ease;
}

.category-card:hover,
.office-card:hover,
.contact-form-section:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section Spacing Fix */
section {
  position: relative;
  z-index: 1;
  clear: both;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

/* Ensure proper clearfix */
.container::after {
  content: "";
  display: table;
  clear: both;
}

/* Fix any floating issues */
* {
  box-sizing: border-box;
}

/* Smooth transitions */
.hero-container,
.about-content,
.ceo-content {
  transition: all 0.3s ease;
}
