/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
}

/* About Section */
.about {
  padding: 8rem 0;
  background: var(--light-bg);
}

.about h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary-color);
  font-size: 2.5rem;
  position: relative;
}

.about h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 1rem auto;
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about-text > p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  line-height: 1.8;
  text-align: center;
  color: var(--primary-color);
}

.business-arms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 3rem auto;
  max-width: 1000px;
}

.business-arms h3 {
  grid-column: 1 / -1;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.business-arms h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  margin-top: 0.5rem;
}

.arm {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.arm:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.arm h4 {
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
}

.arm h4:before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--secondary-color);
  margin-right: 12px;
  border-radius: 2px;
}

.arm p {
  color: #666;
  line-height: 1.8;
  font-size: 1.05rem;
}

.directors,
.company-values {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 3rem;
}

.directors h3,
.company-values h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.directors h3:after,
.company-values h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.directors ul,
.company-values ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.directors li,
.company-values li {
  margin-bottom: 0;
  padding: 0.8rem 1.2rem;
  background: var(--light-bg);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.directors li:hover,
.company-values li:hover {
  transform: translateX(5px);
}

.directors li:before,
.company-values li:before {
  display: none;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature:hover i {
  transform: scale(1.1);
}

.feature h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.feature p {
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }

  .about h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .business-arms {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem auto;
  }

  .arm {
    padding: 2rem;
  }

  .arm h4 {
    font-size: 1.4rem;
  }

  .directors ul,
  .company-values ul {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  font-size: 2.5rem;
  position: relative;
}

.contact h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: white;
  margin: 1rem auto;
  border-radius: 2px;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-header h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-details a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-details a:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .contact {
    padding: 4rem 0;
  }

  .contact-card {
    padding: 2rem;
  }

  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-item {
    padding: 1rem;
  }
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 2rem 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1,
.hero p,
.about h2,
.contact h2 {
  animation: fadeIn 1s ease-out;
}
