/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header & Hero Section */
.site-header {
  background: url('background.jpeg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
}

/* Logo Styling */
.logo img {
  height: 60px;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ff5a5f;
}

/* Hero Section Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  background: #ff5a5f;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn:hover {
  background: #e14b4f;
  transform: scale(1.05);
}

/* Section Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Fade-In Animation for Section Content */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Insights Section */
.insights-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.insights-section h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #333;
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
}

.insights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.insight-item {
  background: #fff;
  padding: 30px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

.insight-item:hover {
  transform: translateY(-10px);
}

.insight-item .icon {
  font-size: 3rem;
  color: #ff5a5f;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 60px 0;
  text-align: center;
}

.services-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
}

.services-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

/* About Section */
.about-section {
  padding: 60px 0;
  text-align: center;
}

.about-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
  animation: fadeIn 1s forwards;
  animation-delay: 0.3s;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 15px;
  border: none;
  background: #ff5a5f;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
  background: #e14b4f;
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.site-footer .social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.site-footer .social-links li a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer .social-links li a:hover {
  color: #ff5a5f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar {
    padding: 20px;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .insights-grid {
    flex-direction: column;
    align-items: center;
  }
}
