/* Bootstrap Icons CDN */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.css");

/* ===== ROOT CSS VARIABLES ===== */
:root {
  --primary-color: #667eea;
  --secondary-color: #764ba2;
  --accent-color: #f5576c;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --icon-gray: #707070;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== SCREEN READER ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: var(--white);
}

h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
}

h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

/* ===== UTILITIES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 1rem auto 0;
}

.text-center {
  text-align: center;
}

/* ===== BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button.primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.navbar-brand {
  background-color: transparent;
  background: transparent;
}

.navbar-brand a.logo {
  text-decoration: none;
  display: block;
  background-color: transparent;
  background: transparent;
}

.navbar-brand a.logo .logo-img {
  height: 50px;
  max-width: 200px;
  object-fit: contain;
  transition: var(--transition);
  background-color: transparent;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.navbar-brand a.logo:hover .logo-img {
  opacity: 0.8;
  transition: var(--transition);
}

.navbar-brand h1 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin: 0;
}

.navbar-brand a.logo:hover h1 {
  color: var(--secondary-color);
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: flex;
  opacity: 1;
}

.slide {
  background-size: cover;
  background-position: center;
}

.slide-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slide-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.slide img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  object-fit: cover;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border: none;
  font-size: 1.5rem;
  padding: 15px 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
  transition: var(--transition);
}

.prev:hover,
.next:hover {
  background: var(--white);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--icon-gray);
}

.feature-card h3 {
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
  margin: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 60px 0;
  color: var(--white);
}

.stats-section .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.service-item:hover {
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--icon-gray);
}

.service-item h3 {
  margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #ffc107;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 80px 0;
  background: var(--bg-light);
}

.mission-vision .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card,
.vision-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-color);
}

.vision-card {
  border-top-color: var(--accent-color);
}

.mission-card h3,
.vision-card h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.vision-card h3 {
  color: var(--accent-color);
}

/* ===== VALUES SECTION ===== */
.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.05),
    rgba(118, 75, 162, 0.05)
  );
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-member h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  margin: 0;
}

.team-member .role {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

.team-member .bio {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.achievements-section {
  padding: 80px 0;
}

.achievements-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition);
}

.achievement:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
}

.achievement-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.achievement h3 {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.achievement p {
  margin: 0;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 80px 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-image {
  order: 2;
}

.service-detail.reverse .service-content {
  order: 1;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}

.service-content h2 {
  margin-bottom: 1rem;
}

.service-content h4 {
  color: var(--primary-color);
  margin: 1.5rem 0 1rem;
}

.service-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.service-content li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.8rem;
  color: var(--text-light);
}

.service-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table thead {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table thead th {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 80px 0;
}

.product-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.product-image img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.product-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 1rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
}

.product-info h4 {
  color: var(--primary-color);
  margin: 1rem 0 0.5rem;
}

.product-info ul {
  list-style: none;
  margin-bottom: 1rem;
}

.product-info li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.product-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.product-meta {
  margin: auto 0 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 5px;
}

.product-meta .price {
  color: var(--text-dark);
  font-weight: 600;
}

/* ===== PRODUCT COMPARISON ===== */
.product-comparison {
  padding: 80px 0;
  background: var(--bg-light);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  color: var(--icon-gray);
}

.contact-details h3 {
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.contact-details p {
  margin: 0;
}

.social-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-section h3 {
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links.large a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--bg-light);
  border-radius: 5px;
  transition: var(--transition);
}

.social-links.large a:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper h2 {
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group.checkbox input {
  width: auto;
  margin: 0;
}

.form-group.checkbox label {
  margin: 0;
}

.form-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== FORM MESSAGE FEEDBACK ===== */
.form-message {
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
  border-left: 4px solid;
  animation: slideInDown 0.3s ease forwards;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border-left-color: #28a745;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border-left-color: #dc3545;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-item p {
  margin: 0;
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.blog-date {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.8rem;
}

.blog-card p {
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.read-more:hover {
  gap: 1rem;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.price-period {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  margin-right: 0.8rem;
  color: var(--icon-gray);
  font-weight: bold;
}

.pricing-card .cta-button {
  width: 100%;
  margin-top: 1rem;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.project-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: relative;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(102, 126, 234, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay i {
  font-size: 2.5rem;
  color: var(--white);
}

.project-info {
  padding: 1.5rem;
}

.project-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary-color);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

.project-card h3 {
  margin-bottom: 0.8rem;
}

/* ===== CAREERS SECTION ===== */
.careers-section {
  padding: 80px 0;
}

.career-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.jobs-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.job-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.job-title {
  margin: 0;
}

.job-location {
  display: inline-block;
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.job-type {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.job-description {
  margin: 1rem 0;
  color: var(--text-light);
}

.job-apply {
  display: inline-block;
  margin-top: 1rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 80px 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.legal-content p,
.legal-content li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* ===== DOCUMENTATION ===== */
.documentation-section {
  padding: 80px 0;
}

.doc-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

.doc-sidebar {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  height: fit-content;
  top: 100px;
  position: sticky;
}

.doc-nav {
  list-style: none;
}

.doc-nav li {
  margin-bottom: 0.5rem;
}

.doc-nav a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text-dark);
  border-radius: 5px;
  transition: var(--transition);
}

.doc-nav a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.doc-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.doc-content h2 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.doc-section {
  margin-bottom: 2rem;
}

.doc-code {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1rem 0;
  border-left: 4px solid var(--primary-color);
}

.doc-code code {
  font-family: "Courier New", monospace;
  color: var(--text-dark);
}

/* ===== ICON STYLES ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  color: var(--icon-gray);
  font-size: 1.5rem;
  transition: var(--transition);
}

.icon:hover {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  transform: translateY(-5px);
}

.value-icon {
  color: var(--icon-gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-logo {
  margin-bottom: 1rem;
  background-color: transparent;
  background: transparent;
}

.footer-logo img.logo-img {
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  transition: var(--transition);
  background-color: transparent;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.footer-logo img.logo-img:hover {
  opacity: 0.8;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--white);
}

.footer-section .social-links a {
  display: inline-block;
  font-size: 1.2rem;
  margin-right: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .navbar .container {
    padding: 1rem;
  }

  .navbar-brand h1 {
    font-size: 1.4rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    gap: 0;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero-slider {
    height: 400px;
  }

  .slide-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
  }

  .slide-content h2 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    right: auto;
    top: 0;
    object-fit: cover;
    z-index: 1;
  }

  .prev,
  .next {
    padding: 10px 15px;
    font-size: 1.2rem;
  }

  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .mission-vision .container {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-image,
  .service-detail.reverse .service-content {
    order: unset;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 250px;
  }

  .features,
  .services-preview,
  .testimonials,
  .values-section,
  .team-section,
  .achievements-section,
  .services-detailed,
  .products-section,
  .contact-section,
  .faq-section,
  .map-section {
    padding: 50px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }
}

/* Mobile Devices (480px and below) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-brand h1 {
    font-size: 1.2rem;
  }

  .hero-slider {
    height: 300px;
  }

  .slide-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
  }

  .slide-content h2 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .prev,
  .next {
    padding: 8px 10px;
    font-size: 1rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .page-header {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .features-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .achievements-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-section .container {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .product-card {
    margin-bottom: 1.5rem;
  }

  .nav-link {
    padding: 0.7rem 1rem;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .features,
  .services-preview,
  .testimonials,
  .values-section,
  .team-section,
  .achievements-section,
  .services-detailed,
  .products-section,
  .contact-section,
  .faq-section,
  .map-section,
  .cta-section {
    padding: 40px 0;
  }
}

/* Extra Small Devices (375px and below) */
@media screen and (max-width: 375px) {
  h1 {
    font-size: 1.2rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .hero-slider {
    height: 250px;
  }

  .slide-content {
    background: rgba(0, 0, 0, 0.7);
  }

  .cta-button {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .hamburger,
  .prev,
  .next,
  .dots,
  .contact-form,
  .cta-section {
    display: none;
  }

  body {
    background: var(--white);
  }
}
