/* General Reset */

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth; /* Smooth scrolling */
  background: url('background-image.jpg') no-repeat center center fixed; /* Sets the background */
  background-size: cover; /* Ensures the image covers the entire background */
}

/* Set all links globally to white and bold */
a {
  color: #fff; /* White color */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: #333;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo img {
  vertical-align: middle;
  margin-right: 10px;
}

.navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  display: flex;
  /*gap: 20px;*/
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background: #007bff;
  color: #fff;
}

.cta-btn {
  background: #007bff;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.cta-btn:hover {
  background: #0056b3;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
              url('hero-background.jpg') no-repeat center center/cover;
  
  color: #fff;
  padding: 150px 20px 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
}

.hero-content {
  max-width: 50%;
}

.hero-image img {
  max-width: 100%;
  animation: fadeIn 2s ease-in-out;
}

/* Card Section */
.card-section {
  padding: 120px 20px;
  background: none;/*#f4f4f4;*/
  text-align: center;
}

.card-section h2 {
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-social a {
  margin: 0 10px;
}

.footer-social img {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Scroll Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-image {
    margin-top: 20px;
  }
}

/* Contact Section */
.contact {
  padding: 80px 0;
  text-align: center;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact-form button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
}

/* Align a block element to the right */
.right-align {
  margin-left: auto; /* Push the div to the right */
  text-align: right; /* Align inner text to the right */
}

.vcenter {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  border: 1px solid white;
}

.circle-photo {
      width: 150px; /* Set the width of the image */
      height: 150px; /* Set the height of the image */
      border-radius: 50%; /* This creates the circular shape */
      object-fit: cover; /* Ensures the image covers the circle without distortion */
      border: 1px solid #888; /* Optional: Add a border */
    }
.social-icon {
      width: 30px; /* Set the width of the image */
      height: 30px; /* Set the height of the image */
}
