/* Base Styles */
:root {
  --primary-color: #2a3f8f; /* Main brand color */
  --secondary-color: #4ecdc4; /* Accent color */
  --dark-color: #1a1a2e; /* Dark background color */
  --light-color: #f8f9fa; /* Light background color */
  --text-color: #333333; /* Main text color */
  --text-light: #ffffff; /* Light text color */
  --transition: all 0.3s ease-in-out; /* Default transition */
}

/* Body and Typography */
body {
  font-family: "Poppins", sans-serif; /* Modern, sleek font */
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Hero Section Styles */
.hero-section {
  height: 100vh; /* Full viewport height */
  min-height: 600px; /* Minimum height */
  background: linear-gradient(
    135deg,
    var(--dark-color),
    var(--primary-color)
  ); /* Gradient background */
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1579389083078-4e7018379f7e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  /* background: url("https://images.unsplash.com/photo-1658604663578-04634f4cb897?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D")
    no-repeat center center/cover; */
  opacity: 0.15;
  z-index: 0;
}

.company-name {
  font-size: 3.5rem; /* Large font size for company name */
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Apply Button Styles */
.apply-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--secondary-color);
  color: var(--text-color);
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: var(--text-color);
  background-color: #3bbdb4;
}

.apply-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%
  );
  background-size: 300% 300%;
  transition: var(--transition);
  z-index: -1;
}

.apply-btn:hover::after {
  background-position: 100% 100%;
}

/* Section Common Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

/* About Section Styles */
.about-section {
  background-color: var(--light-color);
  padding: 100px 0;
}

.about-image {
  height: 400px;
  background: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80")
    no-repeat center center/cover;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section Styles */
.services-section {
  padding: 100px 0;
  background-color: white;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(78, 205, 196, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--secondary-color);
  font-size: 2rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--secondary-color);
  color: white;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-text {
  color: #666 !important;
  font-size: 1rem !important;
}

/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--text-light);
  padding: 100px 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .company-name {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .about-image {
    height: 350px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .company-name {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .company-name {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .apply-btn {
    padding: 10px 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}
