/* ===== MAIN CSS FOR ANTI-CORROSION TEMPLATE ===== */

:root {
  /* Color Palette - Pastel with industrial accents */
  --primary-1: #e8d5c4; /* Soft beige */
  --primary-2: #c3d4c7; /* Mint green */
  --primary-3: #a7b8bc; /* Steel blue */
  --primary-4: #d1bca6; /* Taupe */
  --primary-5: #9f8c76; /* Bronze */

  /* Light/dark variations */
  --primary-1-light: #f4e9df;
  --primary-1-dark: #c2b1a3;
  --primary-2-light: #d9e6dd;
  --primary-2-dark: #a6b5a9;
  --primary-3-light: #c4d0d3;
  --primary-3-dark: #8a9599;
  --primary-4-light: #e3d5c7;
  --primary-4-dark: #b09b89;
  --primary-5-light: #bcad9c;
  --primary-5-dark: #7d6e5c;

  /* Text colors */
  --text-dark: #2c2c2c;
  --text-medium: #555555;
  --text-light: #f8f8f8;

  /* Common measurements */
  --section-padding: 5rem 0;
  --card-radius: 8px;
  --transition-main: all 0.3s ease;
}

/* Base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-medium);
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-3-dark);
  text-decoration: none;
  transition: var(--transition-main);
}

a:hover {
  color: var(--primary-3);
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding: var(--section-padding);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-main);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-3);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-3-dark);
  color: var(--text-light);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-3);
  color: var(--primary-3-dark);
}

.btn-outline:hover {
  background-color: var(--primary-3);
  color: var(--text-light);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-main);
}

header.scrolled {
  padding: 0.75rem 0;
  background-color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.navbar-brand {
  font-size: 0.8rem !important;
  font-weight: 700;
  color: var(--primary-5-dark);
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  list-style: none;
  
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-3);
  transition: var(--transition-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-1-light);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  margin-top: 250px !important;
  font-size: 1rem !important;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1rem !important;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.hero-desc {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-img {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  background-color: var(--primary-2-light);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  background-size: cover;
  opacity: 0.05;
}

.service-card {
  background-color: #fff;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-main);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: var(--primary-1-light);
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-desc {
  margin-bottom: 1.5rem;
}

.service-features {
  padding-left: 1.25rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--card-radius);
  transition: var(--transition-main);
  background-color: var(--primary-1-light);
  height: 100%;
}

.feature-card:hover {
  background-color: var(--primary-3-light);
}

.feature-name {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-1-light);
  position: relative;
}

.pricing-card {
  background-color: #fff;
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-main);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary-3);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--primary-3);
  color: #fff;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 600;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-3-dark);
}

.price-features {
  padding-left: 1.25rem;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.75rem;
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-main);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-2-light);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  opacity: 0.05;
}

.review-card {
  background-color: #fff;
  border-radius: var(--card-radius);
  padding: 2rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-main);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-2);
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--text-dark);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-1-light);
}

.info-card {
  padding: 2rem;
  border-radius: var(--card-radius);
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-main);
  height: 100%;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background-color: var(--primary-3-light);
}

.coreinfo-item-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Contact Section */
.contact-section {
  background-color: #fff;
}

.contact-form {
  background-color: var(--primary-1-light);
  padding: 2.5rem;
  border-radius: var(--card-radius);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: var(--transition-main);
}

.form-control:focus {
  border-color: var(--primary-3);
  outline: none;
  box-shadow: 0 0 0 3px rgba(167, 184, 188, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  padding-left: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  margin-right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-3-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  max-width: 300px;
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 0.75rem;
}

.footer-link a {
  color: var(--text-light);
  opacity: 0.8;
  transition: var(--transition-main);
}

.footer-link a:hover {
  opacity: 1;
  color: var(--primary-2-light);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Animation utilities */
.fade-in {
  animation: fadeIn 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Swiper slider custom styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-3);
} 