:root {
  --primary: #05374e;
  --accent: #02cecb;
  --white: #fff;
  --black: #000;
  --gradient-1: linear-gradient(135deg, #05374e 0%, #073d56 100%);
  --gradient-2: linear-gradient(135deg, #02cecb 0%, #00a8a6 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  background: var(--primary);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  background: #ffffff;
  color: #1a1a1a;
}

/* Navbar - Updated with better dropdown */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem 5%;
  backdrop-filter: blur(10px);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid rgba(5, 55, 78, 0.08);
  box-shadow: 0 2px 20px rgba(5, 55, 78, 0.08);
  animation: slideDown 0.6s ease;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: linear-gradient(135deg, rgba(5, 55, 78, 0.98) 0%, rgba(7, 61, 86, 0.98) 100%);
  border-bottom: 2px solid rgba(2, 206, 203, 0.4);
  box-shadow: 0 10px 40px rgba(2, 206, 203, 0.25), 0 0 30px rgba(2, 206, 203, 0.15);
  padding: 0.8rem 5%;
}

.navbar.scrolled .logo {
  color: var(--white);
}

.navbar.scrolled .logo span {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(2, 206, 203, 0.8), 0 0 30px rgba(2, 206, 203, 0.4);
}

.navbar.scrolled .nav-menu a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(2, 206, 203, 0.8);
}

.navbar.scrolled .nav-menu > li > a::after {
  background: #00ffff;
  box-shadow: 0 0 10px rgba(2, 206, 203, 0.6);
}

.navbar.scrolled .dropdown {
  background: rgba(5, 55, 78, 0.98);
  border: 2px solid rgba(2, 206, 203, 0.3);
  box-shadow: 0 10px 40px rgba(2, 206, 203, 0.3), inset 0 0 20px rgba(2, 206, 203, 0.1);
}

.navbar.scrolled .dropdown a {
  color: rgba(255, 255, 255, 0.9);
}

.navbar.scrolled .dropdown a:hover,
.navbar.scrolled .dropdown a.active {
  background: rgba(2, 206, 203, 0.2);
  color: #00ffff;
  text-shadow: 0 0 8px rgba(2, 206, 203, 0.6);
}

.navbar.scrolled .mobile-menu-toggle span {
  background: #00ffff;
  box-shadow: 0 0 8px rgba(2, 206, 203, 0.8);
  transition: all 0.3s ease;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    filter: blur(5px);
  }
  50% {
    filter: blur(2px);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: #05374e;
  text-decoration: none;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 45px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.navbar.scrolled .logo-img {
  filter: brightness(1.1);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #05374e;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: #05374e;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  display: block;
  padding: 0.5rem 0;
}

.nav-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--accent);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
  width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle::after {
  content: "";
  display: none;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  min-width: 280px;
  padding: 0.5rem 0;
  border-radius: 10px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 10px 40px rgba(5, 55, 78, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 1001;
}

.dropdown-menu:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  margin: 0;
}

.dropdown a {
  padding: 0.8rem 1.5rem;
  display: block;
  color: #05374e;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown a:hover,
.dropdown a.active {
  background: rgba(2, 206, 203, 0.1);
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 2rem;
}

.dropdown a::after {
  display: none;
}

.dropdown-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  vertical-align: middle;
  margin-left: 0;
}

.dropdown-menu:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  padding-top: 100px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(2, 206, 203, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.4;
    filter: blur(0);
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
    filter: blur(1px);
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0.4;
    filter: blur(0);
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(2, 206, 203, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 10s ease-in-out infinite reverse;
}

.hero-content {
  max-width: 1400px;
  padding: 0 5%;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(8px);
  }
  40% {
    filter: blur(4px);
  }
  70% {
    opacity: 0.95;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(2, 206, 203, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 30px rgba(2, 206, 203, 0.8), 0 0 60px rgba(2, 206, 203, 0.4);
    transform: scale(1.02);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-15px);
  }
  75% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
  }
  60% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px) rotate(5deg);
  }
  60% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes scaleInCenter {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateZ(-10deg);
  }
  50% {
    transform: scale(1.05) rotateZ(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-10px);
  }
}

@keyframes rotateInCenter {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.hero h1 {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
  color: #05374e;
}

.hero h1 .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero p {
  font-size: 1.5rem;
  max-width: 700px;
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 400;
  animation: fadeInUp 1s ease 0.3s backwards;
  color: #6c757d;
}

.cta-button {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #05374e 0%, #073d56 100%);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, #05374e 0%, #073d56 100%);
  animation: fadeInUp 1s ease 0.6s backwards;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(5, 55, 78, 0.35);
}

/* Hero slider styles */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.2,.9,.3,1), transform 0.8s cubic-bezier(.2,.9,.3,1);
}

.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-slider .hero-content {
  max-width: 1200px;
  padding: 0 5%;
  z-index: 2;
  text-align: left;
}

/* slide background via pseudo-element so content stays readable */
.hero-slider .slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--bg-url, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.hero-slider .slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.0) 0%, rgba(240,248,255,0.35) 40%, rgba(5,55,78,0.35) 100%);
}

.hero-slider .slide .hero-content { position: relative; z-index: 2; }

/* Card wrapper inside each slide for consistent layout */
.hero-card {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 2.2rem 2.5rem;
  max-width: 900px;
  color: #05374e;
  box-shadow: 0 12px 40px rgba(5,55,78,0.12);
  border: 1px solid rgba(5,55,78,0.06);
  backdrop-filter: blur(6px);
}

.hero-card h1 { font-size: 2.8rem; line-height: 1.05; margin-bottom: 0.8rem; color: #05374e; }
.hero-card p { font-size: 1.05rem; color: #345; margin-bottom: 1.2rem; }
.hero-card .cta-button { box-shadow: 0 10px 30px rgba(2,206,203,0.12); }

@media (min-width: 1400px) {
  .hero-card { padding: 3rem 3.5rem; }
  .hero-card h1 { font-size: 3.6rem; }
}

@media (max-width: 768px) {
  .hero-card { padding: 1.6rem 1.6rem; border-radius: 12px; }
  .hero-card h1 { font-size: 1.8rem; }
  .hero-card p { font-size: 1rem; }
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--accent);
  border: 2px solid rgba(255,255,255,0.08);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.slider-control:hover {
  transform: translateY(-50%) scale(1.06);
  background: rgba(2,206,203,0.08);
  box-shadow: 0 8px 30px rgba(2,206,203,0.12);
  color: #ffffff;
}

.slider-prev { left: 18px; }
.slider-next { right: 18px; }

.slider-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  display: flex;
  gap: 10px;
  z-index: 6;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(5,55,78,0.15);
  border: 2px solid rgba(5,55,78,0.08);
  cursor: pointer;
  transition: all 0.25s ease;
}

.dot.active {
  background: #00ffff;
  box-shadow: 0 0 12px rgba(2,206,203,0.6);
  border-color: rgba(2,206,203,0.4);
}

/* Mobile tweaks: make slides stacked when menu open and keep padding */
@media (max-width: 768px) {
  .hero-slider .hero-content { text-align: center; }
  .slider-control { width: 42px; height: 42px; font-size: 1.4rem; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }
}

/* About Home Section */
.about-home {
  padding: 8rem 5%;
  background: #f8f9fa;
  position: relative;
}

.about-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-2);
}

/* Page Section */
.page-section {
  min-height: 100vh;
  padding: 150px 5% 8rem;
  position: relative;
  background: #ffffff;
}

.product-page {
  background: #f8f9fa;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: #05374e;
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 4rem;
  font-weight: 700;
}

.product-intro {
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--primary);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.product-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  color: var(--white);
}

/* About Content */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.8;
  color: #1a1a1a;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
}

.stat-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(2, 206, 203, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Mission Vision */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-card,
.vision-card {
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(2, 206, 203, 0.2);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.mission-card p,
.vision-card p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.8;
  color: #6c757d;
}

/* Management Section */
.management-section {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 2px solid rgba(5, 55, 78, 0.1);
}

.management-section h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  padding-bottom: 1.5rem;
}

.management-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.management-card {
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(2, 206, 203, 0.05), rgba(5, 55, 78, 0.05));
  border: 2px solid rgba(2, 206, 203, 0.2);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.management-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: all 0.4s ease;
}

.management-card:hover::before {
  left: 0;
}

.management-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(2, 206, 203, 0.15);
  background: linear-gradient(135deg, rgba(2, 206, 203, 0.1), rgba(5, 55, 78, 0.08));
}

.management-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.management-card p {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* Compact Product Card */
.product-card-compact {
  padding: 2rem;
  background: #fff;
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-compact:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.25);
}

.product-image-wrapper {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(5, 55, 78, 0.03);
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card-compact:hover .product-image {
  transform: scale(1.1);
}

.product-icon-fallback {
  font-size: 3rem;
}

.product-card-compact .product-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.product-card-compact h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: var(--white);
  color: #05374e;
}

.product-card-compact > p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #6c757d;
}

.click-info {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

/* Product Detail Modal */
.product-modal-content {
  max-width: 700px;
}

.modal-product-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(2, 206, 203, 0.3);
}

.modal-product-icon {
  font-size: 4rem;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 206, 203, 0.1);
  border-radius: 15px;
}

.modal-product-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #05374e;
  margin: 0;
}

.modal-product-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-section {
  padding: 1.2rem;
  background: rgba(5, 55, 78, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
}

.modal-section h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-section p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.9;
  white-space: pre-line;
  color: var(--black);
}

.modal-product-body > p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  color: #6c757d;
}

.modal-purchase h4 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 800;
}

.purchase-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
}

.purchase-btn {
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  border: 2px solid #25d366;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.tokopedia-btn {
  background: linear-gradient(135deg, #42b549 0%, #2e7d32 100%);
  color: white;
  border: 2px solid #42b549;
}

.tokopedia-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(66, 181, 73, 0.4);
}

.shopee-btn {
  background: linear-gradient(135deg, #ee4d2d 0%, #d32f2f 100%);
  color: white;
  border: 2px solid #ee4d2d;
}

.shopee-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(238, 77, 45, 0.4);
}

.purchase-btn span {
  font-size: 1.1rem;
}

/* Original Product Card (for other pages) */
.product-card {
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.product-card:hover::before {
  top: 0;
  opacity: 0.1;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.3);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.product-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #05374e;
}

.product-card > p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.product-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.8;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.product-applications {
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 206, 203, 0.2);
}

.product-applications h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.product-applications p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* Product CTA */
.product-cta {
  margin-top: 5rem;
  padding: 4rem;
  background: rgba(2, 206, 203, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(2, 206, 203, 0.3);
  text-align: center;
}

.product-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #05374e;
}

.product-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #05374e;
}

/* Services & Portfolio (existing styles) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.service-card {
  padding: 3rem;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  top: 0;
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.3);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #05374e;
}

.service-card p {
  font-size: 1.05rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.8;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.portfolio-item {
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
  z-index: 1;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
  filter: blur(3px) brightness(0.7);
  box-shadow: 0 20px 50px rgba(5, 55, 78, 0.2);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(5, 55, 78, 0.4) 0%,
    rgba(5, 55, 78, 0.7) 100%
  );
  opacity: 1;
  transition: all 0.4s ease;
  z-index: 2;
}

.portfolio-item:hover .portfolio-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.95) 100%
  );
  opacity: 1;
}

.portfolio-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.coating-bg {
  background: linear-gradient(135deg, #05374e 0%, #0a5278 50%, #073d56 100%);
}

.water-bg {
  background: linear-gradient(135deg, #05374e 0%, #024e6f 50%, #02cecb 100%);
}

.maintenance-bg {
  background: linear-gradient(135deg, #05374e 0%, #2e4053 50%, #566573 100%);
}

.frp-bg {
  background: linear-gradient(135deg, #05374e 0%, #145a32 50%, #1e8449 100%);
}

.portfolio-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.portfolio-item:hover::before {
  opacity: 0;
}

.portfolio-item:hover .portfolio-bg {
  opacity: 1;
}

.portfolio-item:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.4);
}

.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  z-index: 3;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-content {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
}

.portfolio-content h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.portfolio-content p {
  font-size: 1.05rem;
  opacity: 1;
  margin-bottom: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 0.6);
  color: rgba(255, 255, 255, 0.95);
}

.portfolio-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--black);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 1rem;
  box-shadow: 0 3px 10px rgba(2, 206, 203, 0.5);
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.8;
  color: #1a1a1a;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--accent);
  transform: translateX(10px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 700;
}

.contact-detail-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.contact-detail-text span {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(5, 55, 78, 0.15);
  color: #1a1a1a;
  border-radius: 10px;

  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(2, 206, 203, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0a0a0;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-button {
  padding: 1.2rem 3rem;
  background: var(--gradient-2);
  color: var(--white);
  border: none;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Nunito", sans-serif;
  box-shadow: 0 10px 30px rgba(2, 206, 203, 0.3);
}

.submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(2, 206, 203, 0.5);
}

/* Footer - Updated with Google Maps */
.footer {
  padding: 4rem 5% 2rem;
  background: #05374e;
  color: #ffffff;
  border-top: 3px solid var(--accent);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}

.footer-logo span {
  color: var(--accent);
}

.footer-description {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.8;
  color: #ffffff;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: #ffffff;
}

.footer-contact strong {
  color: var(--accent);
  font-weight: 700;
}

.footer-map h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 800;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(2, 206, 203, 0.2);
}

.footer-text {
  opacity: 0.8;
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #02cecb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02cecb;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #02cecb;
  color: #05374e;
  transform: translateY(-5px);
}

/* Career Page */
.career-page {
  background: var(--white);
}

.why-join-section {
  margin-bottom: 5rem;
  padding: 3rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
}

.why-join-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.why-join-section > p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 3rem;
  color: #6c757d;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  text-align: center;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(2, 206, 203, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: #05374e;
}

.benefit-card p {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.6;
  color: #6c757d;
}

/* Job Openings Section */
.job-openings-section {
  margin-bottom: 5rem;
}

.job-openings-section h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.job-intro {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.job-filter {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(5, 55, 78, 0.15);
  border-radius: 50px;
  color: #05374e;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #05374e;
  color: #ffffff;
  border-color: #05374e;
  transform: translateY(-2px);
}

/* Job Cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.job-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.3);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.job-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(2, 206, 203, 0.2);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-type {
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.job-card h4 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #05374e;
}

.job-location {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1rem;
  font-weight: 600;
}

.job-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  color: #6c757d;
}

.job-requirements {
  margin-bottom: 2rem;
  padding: 1.5rem;

  border-radius: 10px;
  border-left: 3px solid var(--accent);
  background: rgba(5, 55, 78, 0.05);
}

.job-requirements strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-requirements ul {
  list-style: none;
  padding: 0;
}

.job-requirements li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  opacity: 0.9;
  color: #6c757d;
}

.job-requirements li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.apply-btn {
  padding: 1rem 2rem;
  background: var(--gradient-2);
  color: var(--white);
  border: none;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Nunito", sans-serif;
  margin-top: auto;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(2, 206, 203, 0.4);
}

/* Career CTA */
.career-cta {
  margin-top: 5rem;
  padding: 4rem;
  background: rgba(2, 206, 203, 0.1);
  border-radius: 20px;
  border: 2px solid var(--accent);
  text-align: center;
}

.career-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.career-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Application Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.modal-content {
  background: var(--white);
  margin: 5% auto;
  padding: 3rem;
  border: 2px solid rgba(5, 55, 78, 0.15);
  box-shadow: 0 20px 60px rgba(5, 55, 78, 0.3);
  width: 90%;
  max-width: 600px;
  position: relative;
  animation: slideDown 0.4s ease;
}

.close-modal {
  color: var(--primary);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 800;
  color: #05374e;
}

.application-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.application-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.application-form label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
}

.application-form input,
.application-form select,
.application-form textarea {
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(5, 55, 78, 0.15);
  border-radius: 10px;
  color: #1a1a1a;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.application-form input:focus,
.application-form select:focus,
.application-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(2, 206, 203, 0.2);
}

.application-form select {
  cursor: pointer;
}

.application-form input[type="file"] {
  padding: 0.8rem 1rem;
}

/* Blogs Page */
.blogs-page {
  background: var(--white);
}

.blog-intro {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--primary);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}

.blog-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  color: #fff;
}

/* Blog Categories Filter */
.blog-categories {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(5, 55, 78, 0.15);
  color: #05374e;
  border-radius: 50px;

  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: #05374e;
  color: #ffffff;
  border-color: #05374e;
  transform: translateY(-2px);
}

/* Blog Grid */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  border: 2px solid rgba(5, 55, 78, 0.1);
  box-shadow: 0 5px 20px rgba(5, 55, 78, 0.08);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 20px 50px rgba(2, 206, 203, 0.3);
}

.blog-image {
  height: 200px;
  background: var(--gradient-1);
  position: relative;
  overflow: hidden;
}

.blog-image::after {
  content: "📰";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  opacity: 0.3;
}

.blog-date {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}

.blog-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(2, 206, 203, 0.2);
  color: var(--accent);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-read-time {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.3;
  color: #05374e;
}

.blog-content > p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--accent);
}

.read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.read-more:hover {
  transform: translateX(5px);
}

/* Newsletter Section */
.newsletter-section {
  margin-top: 5rem;
  padding: 4rem;
  background: rgba(2, 206, 203, 0.1);
  border: 2px solid rgba(2, 206, 203, 0.3);
  border-radius: 20px;

  text-align: center;
}

.newsletter-section h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: #05374e;
}

.newsletter-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: #05374e;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 2px solid rgba(5, 55, 78, 0.15);
  border-radius: 50px;
  color: #1a1a1a;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(2, 206, 203, 0.2);
}

.newsletter-form button {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4rem;
  }

  .about-content,
  .contact-content,
  .mission-vision,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
    box-shadow: 0 15px 50px rgba(5, 55, 78, 0.2);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    scroll-behavior: smooth;
  }

  /* Custom scrollbar styling */
  .nav-menu::-webkit-scrollbar {
    width: 6px;
  }

  .nav-menu::-webkit-scrollbar-track {
    background: rgba(5, 55, 78, 0.05);
  }

  .nav-menu::-webkit-scrollbar-thumb {
    background: rgba(2, 206, 203, 0.4);
    border-radius: 3px;
  }

  .nav-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(2, 206, 203, 0.6);
  }

  .nav-menu > li {
    border-bottom: 1px solid rgba(5, 55, 78, 0.08);
  }

  .nav-menu > li:last-child {
    border-bottom: none;
  }

  .nav-menu > li > a {
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    color: #05374e;
    transition: all 0.3s ease;
  }

  .nav-menu > li > a:hover {
    background: rgba(2, 206, 203, 0.08);
    color: var(--accent);
  }

  .nav-menu.active {
    display: flex;
  }

  .navbar.scrolled .nav-menu {
    background: rgba(5, 55, 78, 0.95);
    box-shadow: 0 15px 50px rgba(2, 206, 203, 0.25);
    border-top: 2px solid rgba(2, 206, 203, 0.4);
  }

  .navbar.scrolled .nav-menu > li {
    border-bottom: 1px solid rgba(2, 206, 203, 0.15);
  }

  .navbar.scrolled .nav-menu > li > a {
    color: rgba(255, 255, 255, 0.9);
  }

  .navbar.scrolled .nav-menu > li > a:hover {
    background: rgba(2, 206, 203, 0.15);
    color: #00ffff;
    text-shadow: 0 0 10px rgba(2, 206, 203, 0.6);
  }

  .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    margin-top: 0;
    max-height: 0;
    box-shadow: none;
    background: transparent;
    border: none;
    list-style: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    padding: 0;
  }

  .dropdown-menu.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    max-height: 500px;
    margin-top: 0;
    background: linear-gradient(135deg, rgba(2, 206, 203, 0.08), rgba(5, 55, 78, 0.04));
    border: 1px solid rgba(2, 206, 203, 0.25);
    border-radius: 12px;
    margin: 0.5rem 1.5rem;
    padding: 0.8rem 0;
  }

  .dropdown li {
    margin: 0;
    padding: 0;
  }

  .dropdown a {
    padding: 0.9rem 1.5rem 0.9rem 2.5rem;
    display: block;
    color: #05374e;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
  }

  .dropdown a::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: var(--accent);
    opacity: 0;
    transition: all 0.2s ease;
  }

  .dropdown a:hover {
    background: rgba(2, 206, 203, 0.12);
    color: var(--accent);
    border-left-color: var(--accent);
    padding-left: 2.8rem;
  }

  .dropdown a:hover::before {
    opacity: 1;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 0;
    gap: 0.3rem;
  }

  .dropdown-toggle::after {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
  }

  .dropdown-toggle .dropdown-arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.75rem;
  }

  .dropdown-menu.active .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .dropdown-menu.active .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }

  .navbar.scrolled .dropdown {
    background: rgba(2, 206, 203, 0.12);
    border: 1px solid rgba(2, 206, 203, 0.3);
  }

  .navbar.scrolled .dropdown a {
    color: rgba(255, 255, 255, 0.85);
    border-left: 3px solid transparent;
  }

  .navbar.scrolled .dropdown a::before {
    color: #00ffff;
  }

  .navbar.scrolled .dropdown a:hover {
    background: rgba(2, 206, 203, 0.2);
    border-left-color: #00ffff;
    color: #00ffff;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .blog-categories,
  .job-filter {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .modal-content {
    width: 95%;
    padding: 2rem;
    margin: 10% auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .page-section {
    padding-top: 120px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
  background: #02cecb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #05374e;
}
