/* =========================
   HEADER
========================= */

.main-header {
  width: 100%;
  height: 90px;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-container {
  width: 100%;
  max-width: 1450px;
  height: 100%;
  margin: auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */

.logo img {
  height: 52px;
  object-fit: contain;
}

/* NAVBAR */

.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00bfd8;
}

/* underline effect */

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #00bfd8;
  transition: 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* HEADER ICONS */

.header-icons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-icons a {
  color: #222;
  transition: 0.3s ease;
}

.header-icons a:hover {
  color: #00bfd8;
}

.header-icons svg {
  width: 22px;
  height: 22px;
}

/* MENU TOGGLE */

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  color: #111;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 992px) {

  .header-container {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 90px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 90px);
    background: #fff;
    transition: 0.4s ease;
    padding: 40px 30px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.08);
  }

  .navbar.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

@media (max-width: 576px) {

  .main-header {
    height: 80px;
  }

  .navbar {
top: 80px;
        height: calc(30vh);
  }

  .logo img {
    height: 44px;
  }

  .header-icons {
    gap: 16px;
    margin: 0px 43px 0 3px;
  }

  .header-icons svg {
    width: 20px;
    height: 20px;
  }
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
  position: relative;
  /* width: 100%; */
  min-height: 100vh;
  background: radial-gradient(circle at center, #041a22 0%, #020b12 60%, #01060b 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 8%;
  font-family: 'Inter', sans-serif;
}

/* Glow Overlay */
.hero-overlay {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.18), transparent 70%);
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Floating particles */
.hero-particles::before,
.hero-particles::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(0,255,255,0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */

.hero-content {
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(0, 255, 255, 0.35);
  border-radius: 40px;
  color: #00d7ff;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 30px;
  background: rgba(0,255,255,0.03);
}

.hero-title {
  font-size: 78px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-title span {
  color: #00cfe8;
}

.hero-title .light {
  color: rgba(255,255,255,0.35);
}

.hero-description {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 40px;
}

/* BUTTONS */

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 60px;
}

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 18px 34px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #00b7d8, #00e5ff);
  color: #fff;
  box-shadow: 0 0 30px rgba(0,255,255,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #00e5ff;
  color: #00e5ff;
}

/* STATS */

.hero-stats {
  display: flex;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 35px;
}

.stat h3 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 5px;
}

.stat p {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 1px;
}

/* RIGHT FLOATING CARDS */

.hero-cards {
  position: relative;
  width: 500px;
  height: 500px;
}

.hero-cards .product-card {
  position: absolute;
  width: 240px;
  background: rgba(8, 27, 35, 0.72);
  border: 1px solid rgba(0,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 14px;
  box-shadow:
    0 0 40px rgba(0,255,255,0.12),
    inset 0 0 30px rgba(0,255,255,0.03);
}

.product-card span {
  color: #00d7ff;
  font-size: 11px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 18px;
}

.product-card h4 {
  color: white;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
  font-family: serif;
}

.product-card p {
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  font-weight: 600;
}

/* CARD POSITIONS */

.card-1 {
  left: 0;
  top: 120px;
}

.card-2 {
  right: 0;
  top: 0;
}

.card-3 {
  right: -20px;
  bottom: 1px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .hero-title {
    font-size: 62px;
  }

  .hero-container {
    gap: 30px;
  }
}

@media (max-width: 992px) {

  .hero-section {
    padding: 120px 6%;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cards {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    align-items: center; 
  }

  .hero-cards .product-card {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 768px) {

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 17px;
  }

  .hero-stats {
    gap: 30px;
    flex-wrap: wrap;
  }

  .stat h3 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {

  .hero-section {
    padding: 100px 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-cards .product-card {
    padding: 24px;
  }

  .hero-cards .product-card h4 {
    font-size: 24px;
  }

  .product-card p {
    font-size: 18px;
  }
}
/* SECTION */

.categories-section {
  padding: 100px 20px;
  background: #f5f7f8;
}

.categories-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* TOP */

.section-heading {
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0d6e78;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-heading h2 {
  font-size: 52px;
  line-height: 1.1;
  color: #111;
  font-weight: 700;
  margin: 0;
}

/* GRID */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* CARD */

.category-card {
  background: #dfe3e5;
  padding: 38px 28px;
  min-height: 290px;
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid rgba(0,0,0,0.04);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  overflow: hidden;
}

/* HOVER BACKGROUND */

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d6e78, #1bb7c7);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* ACTIVE CARD */

.active-card::before {
  opacity: 1;
}

/* SHOW GREEN ON HOVER */

.category-card:hover::before {
  opacity: 1;
}

/* KEEP CONTENT ABOVE */

.category-card .category-number,
.category-card h3,
.category-card p,
.category-card .category-arrow {
  position: relative;
  z-index: 2;
  transition: 0.35s ease;
}

/* TEXT */

.category-number {
  font-size: 14px;
  font-weight: 600;
  color: #0d6e78;
  margin-bottom: 30px;
}

.category-card h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #111;
}

.category-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 40px;
}

.category-arrow {
  font-size: 24px;
  text-decoration: none;
  color: #111;
  margin-top: auto;
  display: inline-flex;
}

/* TEXT WHITE ON HOVER */

.category-card:hover .category-number,
.category-card:hover h3,
.category-card:hover p,
.category-card:hover .category-arrow,
.active-card .category-number,
.active-card h3,
.active-card p,
.active-card .category-arrow {
  color: #fff;
}

/* CARD ANIMATION */

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 768px) {

  .section-heading h2 {
    font-size: 38px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

}

@media (max-width: 480px) {

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: auto;
  }

}

/* =========================
   FEATURED PRODUCTS
========================= */

.featured-products {
  /* width: 100%; */
  position: relative;
  padding: 120px 8%;
  background: radial-gradient(circle at center, #041a22 0%, #020b12 60%, #01060b 100%);
  color: #fff;
  overflow: hidden;
}

.featured-products::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,255,255,0.1) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
}

.featured-container {
  max-width: 1450px;
  margin: auto;
}

/* TOP */

.featured-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.featured-heading span {
  color: #008ca1;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}

.featured-heading h2 {
  font-size: 64px;
  line-height: 1.1;
  color: #fff;
  font-family: serif;
  font-weight: 700;
}

.view-all {
  text-decoration: none;
  color: #008ca1;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 22px;
}

/* GRID */

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* PRODUCT CARD */

.featured-grid .product-card {
  background: rgba(8, 27, 35, 0.72);
  border: 1px solid rgba(0,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.15);
}

/* IMAGE */

.product-image {
  position: relative;
  overflow: hidden;
  height: 360px;
  background: #041a22;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.featured-grid .product-card:hover .product-image img {
  transform: scale(1.05);
}

/* BADGE */

.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 12px;
  z-index: 3;
  letter-spacing: 1px;
}

/* CONTENT */

.product-content {
  padding: 28px 22px 24px;
}

.product-content h3 {
  margin-bottom: 14px;
}

.product-content h3 a {
  text-decoration: none;
  color: #fff;
  font-size: 34px;
  font-family: serif;
  line-height: 1.2;
}

.product-description {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* PRICE */

.product-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.sale-price {
  color: #00e5ff;
  font-size: 22px;
  font-weight: 700;
}

.regular-price {
  color: #7d7d7d;
  text-decoration: line-through;
  font-size: 16px;
}

/* BUTTONS */

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* WooCommerce Button */

.product-actions .button {
  flex: 1;
  height: 52px; 
  background: #04111a !important;
  color: #fff !important;
  border: none !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: 0.3s ease;
}

.product-actions .button:hover {
  background: #00b7d8 !important;
}

/* Wishlist */

.wishlist-btn {
  width: 52px;
  height: 52px;
  border: 1px solid #d5dade;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 22px;
  transition: 0.3s ease;
}

.wishlist-btn:hover {
  background: #00b7d8;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 992px) {

  .featured-products-section {
    padding: 100px 6%; 
  }

  .featured-top {
    flex-direction: column;
    gap: 20px;
  }

  .featured-heading h2 {
    font-size: 52px;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .featured-heading h2 {
    font-size: 42px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 480px) {

  .featured-products-section {
    padding: 80px 20px;
  }

  .featured-heading h2 {
    font-size: 34px;
  }

  .product-image {
    height: 300px;
  }

}
.science-section {
  background: radial-gradient(circle at top center, #021a24 0%, #010d14 55%, #00070c 100%);
  padding: 120px 20px;
  overflow: hidden;
  position: relative;
}

.science-container {
  max-width: 1220px;
  margin: 0 auto;
}

/* HEADING */

.science-heading {
  margin-bottom: 70px;
}

.science-heading span {
  display: block;
  color: #00d9ff;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 18px;
}

.science-heading h2 {
  color: #fff;
  font-size: 68px;
  line-height: 1.1;
  margin: 0;
  font-family: serif;
  font-weight: 600;
}

/* GRID */

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}

/* CARD */

.science-card {
  padding: 42px 34px 38px;
  min-height: 200px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: 0.35s ease;
  position: relative;
}

.science-card:hover {
  background: rgba(0, 217, 255, 0.03);
}

/* ICON */

.science-icon {
  font-size: 30px;
  color: #00d9ff;
  margin-bottom: 26px;
  line-height: 1;
}

/* TITLE */

.science-card h3 {
  color: #fff;
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-family: serif;
  font-weight: 500;
}

/* TEXT */

.science-card p {
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
  max-width: 95%;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .science-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .science-section {
    padding: 80px 16px;
  }

  .science-heading {
    margin-bottom: 40px;
  }

  .science-heading h2 {
    font-size: 42px;
  }

  .science-grid {
    grid-template-columns: 1fr;
  }

  .science-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .science-card h3 {
    font-size: 30px;
  }

  .science-card p {
    font-size: 15px;
    line-height: 1.7;
  }

}

.testimonial-section {
  background: #eef2f3;
  padding: 110px 20px;
}

.testimonial-container {
  max-width: 1220px;
  margin: 0 auto;
}

/* HEADING */

.testimonial-heading {
  margin-bottom: 55px;
}

.testimonial-heading span {
  display: block;
  color: #007a8c;
  font-size: 13px;
  letter-spacing: 5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.testimonial-heading h2 {
  margin: 0;
  font-size: 68px;
  line-height: 1.1;
  color: #02111b;
  font-family: serif;
  font-weight: 600;
}

/* GRID */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */

.testimonial-card {
  background: transparent;
  border: 1px solid #d9dee2;
  padding: 34px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.35s ease;
}

.testimonial-card:hover {
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* STARS */

.stars {
  color: #007a8c;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

/* TEXT */

.testimonial-text {
  color: #02111b;
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 40px;
  font-family: serif;
  font-weight: 400;
}

/* FOOTER */

.testimonial-footer {
  border-top: 1px solid #d9dee2;
  padding-top: 22px;
}

.testimonial-footer h4 {
  margin: 0 0 6px;
  font-size: 26px;
  color: #02111b;
  font-family: serif;
  font-weight: 500;
}

.testimonial-footer span {
  color: #4f5c67;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .testimonial-section {
    padding: 80px 16px;
  }

  .testimonial-heading {
    margin-bottom: 40px;
  }

  .testimonial-heading h2 {
    font-size: 42px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
  }

}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  background: #eef2f3;
  padding: 110px 20px;
}

.faq-container {
  max-width: 1180px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */

.faq-label {
  display: inline-block;
  margin-bottom: 24px;

  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #007c89;
  font-weight: 600;
}

.faq-left h2 {
  font-size: 62px;
  line-height: 1.02;
  margin: 0 0 28px;

  color: #021226;
  font-weight: 700;
  letter-spacing: -2px;
}

.faq-left p {
  color: #566574;
  font-size: 19px;
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 320px;
}

.faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  text-decoration: none;
  color: #007c89;

  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: 0.3s ease;
}

.faq-contact-btn:hover {
  gap: 20px;
}

/* RIGHT */

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #d7dee2;
  background: #fff;
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 30px 28px;

  font-size: 28px;
  font-weight: 500;
  color: #021226;
  cursor: pointer;

  text-align: left;
}

.faq-question span {
  font-size: 26px;
  color: #566574;
}

.faq-answer {
  display: none;
  padding: 0 28px 28px;

  color: #566574;
  line-height: 1.8;
  font-size: 17px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* =========================
   CTA SECTION
========================= */

.cta-section {
  position: relative;
  overflow: hidden;

  padding: 70px 20px;

  background:
    radial-gradient(circle at top right,
      rgba(0,255,255,0.18),
      transparent 35%),
    linear-gradient(90deg, #015761 0%, #0bb5c3 100%);
}

.cta-container {
  max-width: 1220px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT */

.cta-content h2 {
  font-size: 62px;
  line-height: 1.1;
  margin: 0 0 16px;

  color: #f4f4f4;
  font-weight: 700;
  letter-spacing: -1px;
}

.cta-content p {
  margin: 0;
  max-width: 700px;

  color: rgba(255,255,255,0.85);
  font-size: 22px;
  line-height: 1.8;
}

/* BUTTON */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 240px;
  height: 72px;

  background: #edf2f3;
  color: #021226;

  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  transition: 0.35s ease;
}

.cta-btn:hover {
  background: #fff;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .faq-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-left h2,
  .cta-content h2 {
    font-size: 44px;
  }

  .faq-question {
    font-size: 22px;
    padding: 24px;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-content p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {

  .faq-section,
  .cta-section {
    padding: 80px 20px;
  }

  .faq-left h2,
  .cta-content h2 {
    font-size: 36px;
  }

  .faq-left p,
  .cta-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    min-width: 100%;
  }
}

/* =========================
   FOOTER
========================= */

.synthera-footer {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at top right,
      rgba(0,255,255,0.08),
      transparent 30%),
    linear-gradient(90deg, #01111b 0%, #021826 100%);

  padding: 90px 20px 40px;
}

/* CONTAINER */

.footer-container {
  max-width: 1700px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
}

/* =========================
   LEFT SIDE
========================= */

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 28px;
}

.footer-logo-wrap img {
  width: 96px;
  object-fit: contain;
}

.footer-logo-text h3 {
  margin: 0;

  color: #fff;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.footer-logo-text span {
  color: #9ca3af;

  font-size: 13px;
  letter-spacing: 4px;
}

.footer-desc {
  color: rgba(255,255,255,0.82);

  font-size: 18px;
  line-height: 1.9;

  margin-bottom: 34px;
  max-width: 390px;
}

/* SOCIAL */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-socials a {
  width: 46px;
  height: 46px;

  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255,255,255,0.8);

  transition: 0.35s ease;
}

.footer-socials a:hover {
  background: #08c5d1;
  border-color: #08c5d1;
  color: #fff;

  transform: translateY(-3px);
}

/* =========================
   RIGHT LINKS
========================= */

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-links h4,
.footer-newsletter h4 {
  margin: 0 0 28px;

  color: #fff;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: rgba(255,255,255,0.78);

  text-decoration: none;

  margin-bottom: 18px;
  font-size: 17px;

  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #08c5d1;
  transform: translateX(4px);
}

/* NEWSLETTER */

.footer-newsletter p {
  color: rgba(255,255,255,0.78);

  line-height: 1.8;
  font-size: 17px;

  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,0.12);
}

.newsletter-form input {
  flex: 1;

  height: 58px;
  border: none;
  outline: none;

  background: rgba(255,255,255,0.03);

  color: #fff;
  padding: 0 18px;

  font-size: 16px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.45);
}

.newsletter-form button {
  width: 90px;
  border: none;

  background: linear-gradient(90deg, #007b87, #08c5d1);

  color: #fff;
  font-size: 16px;
  font-weight: 700;

  cursor: pointer;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  filter: brightness(1.1);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  max-width: 1450px;
  margin: 70px auto 0;
}

.footer-divider {
  width: 100%;
  height: 1px;

  background: rgba(255,255,255,0.1);

  margin-bottom: 28px;
}

.footer-disclaimer {
  color: rgba(255,255,255,0.62);

  font-size: 15px;
  line-height: 1.9;

  margin-bottom: 20px;
}

.footer-disclaimer strong {
  color: #fff;
}

.footer-copy {
  color: rgba(255,255,255,0.45);
  text-align: center;
  font-size: 15px;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {

  .synthera-footer {
    padding: 70px 20px 30px;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo-text h3 {
    font-size: 28px;
  }

  .footer-desc {
    font-size: 16px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
    height: 54px;
  }

  .newsletter-form input {
    width: 100%;
  }
}
/* =========================
   SHOP HERO
========================= */

.shop-hero {
  position: relative;
  min-height: 380px;
  background: radial-gradient(circle at 60% 50%, #041a22 0%, #020b12 60%, #01060b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 60px;
  overflow: hidden;
}

.shop-hero-overlay {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
}

.shop-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,200,255,0.12), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.shop-hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

.shop-hero-content span {
  display: inline-block;
  color: #009bb0; font-size: 12px;
  letter-spacing: 5px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 18px;
}

.shop-hero-content h1 {
  font-size: 62px; line-height: 1.1;
  color: #fff; font-family: serif;
  font-weight: 700; margin: 0 0 18px;
}

.shop-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 17px; line-height: 1.8; margin: 0;
}

.shop-trust-bar {
  position: relative; z-index: 2;
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 40px;
}

.trust-pill {
  padding: 9px 18px;
  background: rgba(0,155,176,0.1);
  border: 1px solid rgba(0,155,176,0.25);
  color: rgba(255,255,255,0.75);
  font-size: 13px; font-weight: 600;
  border-radius: 30px;
}

/* =========================
   SHOP BODY
========================= */

.shop-body {
  background: #f2f4f5;
  padding: 60px 0 80px;
}

.shop-wrap {
  width: 92%; max-width: 1400px; margin: auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

/* =========================
   SIDEBAR
========================= */

.shop-sidebar {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 6px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 24px;
  margin-bottom: 6px;
}

.sidebar-widget h5 {
  font-size: 11px; letter-spacing: 3px;
  font-weight: 700; color: #009bb0;
  text-transform: uppercase; margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.sidebar-search {
  display: flex; overflow: hidden;
  border: 1px solid #e0e0e0;
}

.sidebar-search input {
  flex: 1; height: 44px; border: none;
  padding: 0 14px; font-size: 14px;
  background: #fafafa; outline: none;
  color: #111;
}

.sidebar-search button {
  width: 44px; height: 44px;
  background: #009bb0; border: none;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.sidebar-search button svg {
  width: 16px; height: 16px; color: #fff;
}

.sidebar-cats {
  list-style: none; padding: 0; margin: 0;
}

.sidebar-cats li a {
  display: flex; justify-content: space-between;
  align-items: center; padding: 11px 14px;
  font-size: 14px; color: #444;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: 0.25s ease; margin-bottom: 2px;
  background: #fafafa;
}

.sidebar-cats li a:hover {
  background: #f0f9fa;
  color: #009bb0;
  border-left-color: #009bb0;
}

.sidebar-cats li.active a {
  background: #009bb0;
  color: #fff;
  border-left-color: #007b8a;
  font-weight: 600;
}

.sidebar-cats li.active a .cat-count {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.cat-count {
  background: #eef0f1;
  color: #888; font-size: 11px;
  font-weight: 700; padding: 2px 8px;
  border-radius: 20px; min-width: 24px;
  text-align: center;
}

.sidebar-cta {
  background: linear-gradient(135deg, #041a22, #062a36);
  border: 1px solid rgba(0,155,176,0.2);
  padding: 28px 24px;
}

.sidebar-cta span {
  display: block; color: #009bb0;
  font-size: 11px; letter-spacing: 3px;
  font-weight: 700; margin-bottom: 12px;
}

.sidebar-cta h4 {
  color: #fff; font-size: 20px;
  font-family: serif; margin: 0 0 10px;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.55);
  font-size: 13px; line-height: 1.7;
  margin-bottom: 18px;
}

.sidebar-cta a {
  display: inline-block;
  color: #009bb0; font-size: 13px;
  font-weight: 700; text-decoration: none;
  letter-spacing: 1px; transition: 0.3s;
}

.sidebar-cta a:hover { color: #00d9ff; }

/* =========================
   SHOP MAIN
========================= */

.shop-topbar {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 20px;
  background: #fff; padding: 16px 20px;
  border: 1px solid #e8e8e8;
}

.product-count {
  font-size: 14px; color: #666; margin: 0;
}

.product-count strong { color: #111; }

.topbar-right {
  display: flex; align-items: center; gap: 16px;
}

.sort-wrap {
  display: flex; align-items: center; gap: 8px;
}

.sort-wrap label {
  font-size: 13px; color: #888; font-weight: 600;
}

.sort-wrap select {
  height: 38px; border: 1px solid #ddd;
  padding: 0 12px; background: #fafafa;
  font-size: 13px; cursor: pointer; outline: none;
  color: #333;
}

.view-toggle { display: flex; gap: 4px; }

.view-btn {
  width: 36px; height: 36px;
  background: #f5f5f5; border: 1px solid #e0e0e0;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: 0.25s; color: #888;
}

.view-btn svg { width: 15px; height: 15px; }

.view-btn.active, .view-btn:hover {
  background: #009bb0; border-color: #009bb0; color: #fff;
}

/* ACTIVE FILTERS */
.active-filters {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
}

.filter-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: #e8f7f9; border: 1px solid #b2dfe6;
  color: #007b8a; font-size: 13px; font-weight: 600;
}

.filter-tag a {
  color: #007b8a; text-decoration: none;
  font-size: 16px; line-height: 1;
}

.filter-tag a:hover { color: #e74c3c; }

.clear-filters {
  font-size: 13px; color: #e74c3c;
  text-decoration: none; font-weight: 600;
}

/* PRODUCT GRID */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* LIST VIEW */
.shop-grid.list-view {
  grid-template-columns: 1fr;
}

.shop-grid.list-view .product-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.shop-grid.list-view .product-image {
  height: 100%; min-height: 200px;
}

/* PRODUCT CARD */
.shop-grid .product-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: 0.3s ease;
  position: relative;
}

.shop-grid .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  border-color: #d0d0d0;
}

.shop-grid .product-image {
  height: 260px; overflow: hidden;
  background: #f5f5f5; position: relative;
}

.shop-grid .product-image img {
  width: 100%; height: 100%; object-fit: scale-down;
  transition: transform 0.5s ease;
}

.shop-grid .product-card:hover .product-image img {
  transform: scale(1.06);
}

.shop-grid .product-content {
  padding: 20px 18px 18px;
}

.shop-grid .product-content h3 {
  font-size: 16px; margin-bottom: 6px; line-height: 1.3;
}

.shop-grid .product-content h3 a {
  color: #111; text-decoration: none;
}

.shop-grid .product-content h3 a:hover { color: #009bb0; }

.shop-grid .product-content > p {
  font-size: 13px; color: #777;
  line-height: 1.6; margin-bottom: 12px;
}

.shop-grid .price-wrap {
  display: flex; gap: 8px;
  align-items: center; margin-bottom: 14px;
}

.shop-grid .sale-price {
  font-size: 18px; font-weight: 700; color: #007b7b;
}

.shop-grid .old-price {
  font-size: 13px; color: #aaa;
  text-decoration: line-through;
}

.shop-grid .product-content .button,
.shop-grid .product-content .add_to_cart_button {
  display: block; width: 100%; height: 42px;
  background: #001923; color: #fff;
  border: none; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer;
  text-align: center; line-height: 42px;
  text-decoration: none; transition: 0.3s;
  text-transform: uppercase;
}

.shop-grid .product-content .button:hover,
.shop-grid .product-content .add_to_cart_button:hover {
  background: #009bb0; color: #fff;
}

/* BADGES */
.shop-grid .badge {
  position: absolute; top: 12px; left: 12px;
  background: #009bb0; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; letter-spacing: 1px; z-index: 2;
}

.shop-grid .badge.sale {
  background: #e74c3c; left: auto; right: 12px;
}

.shop-grid .badge.bestseller { background: #007b7b; }

/* WISHLIST TOGGLE */
.shop-grid .wishlist-toggle {
  position: absolute; bottom: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  border: 1px solid #ddd; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s; z-index: 3;
}

.shop-grid .wishlist-toggle:hover,
.shop-grid .wishlist-toggle.active {
  background: #009bb0; color: #fff; border-color: #009bb0;
}

/* EMPTY STATE */
.shop-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 80px 20px;
  background: #fff; border: 1px solid #e8e8e8;
}

.shop-empty .empty-icon { font-size: 52px; margin-bottom: 16px; }
.shop-empty h3 { font-size: 22px; color: #111; margin-bottom: 8px; }
.shop-empty p { color: #888; font-size: 14px; margin-bottom: 24px; }

.shop-empty-btn {
  display: inline-block; padding: 12px 28px;
  background: #009bb0; color: #fff;
  text-decoration: none; font-size: 13px;
  font-weight: 700; letter-spacing: 1px; transition: 0.3s;
}

.shop-empty-btn:hover { background: #007f8f; }

/* LOAD MORE */
.shop-load-more {
  text-align: center; margin-top: 40px;
}

.load-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 36px;
  background: #001923; color: #fff;
  border: none; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer;
  text-transform: uppercase; transition: 0.3s;
}

.load-more-btn svg { width: 16px; height: 16px; }
.load-more-btn:hover { background: #009bb0; }

.shop-loader {
  display: inline-block; width: 24px; height: 24px;
  border: 3px solid rgba(0,0,0,0.1); border-radius: 50%;
  border-top-color: #009bb0;
  animation: spin 0.8s linear infinite;
  margin-top: 40px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .shop-wrap { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sidebar-cta { grid-column: 1 / -1; }
  .shop-hero-content h1 { font-size: 42px; }
}

@media (max-width: 768px) {
  .shop-hero { padding: 120px 20px 50px; min-height: auto; }
  .shop-hero-content h1 { font-size: 34px; }
  .shop-sidebar { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-topbar { flex-direction: column; gap: 12px; align-items: flex-start; }
  .topbar-right { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .shop-grid { grid-template-columns: 1fr; }
  .shop-trust-bar { gap: 8px; }
  .trust-pill { font-size: 11px; padding: 7px 12px; }
}

/* =========================
   ABOUT PAGE - STORY SECTION
========================= */

.story-section {
  position: relative;
  width: 100%;
  min-height: 620px;
  padding-top: 90px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(0, 8, 14, 0.97) 0%,
      rgba(0, 15, 25, 0.94) 35%,
      rgba(0, 18, 30, 0.90) 100%
    ),
    url('https://images.unsplash.com/photo-1532187643603-ba119ca4109e?q=80&w=1920&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY */

.story-overlay {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 180, 255, 0.08),
      transparent 45%
    );

  z-index: 1;
}

/* CONTENT */

.story-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1280px;

  margin: auto;
  padding: 0 80px;
}

/* SMALL LABEL */

.story-label {
  display: inline-block;

  color: #00d7ff;

  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;

  margin-bottom: 26px;
}

/* HEADING */

.story-container h2 {
  font-size: 75px;
  line-height: 1.05;
  font-weight: 700;

  color: #ffffff;

  margin-bottom: 34px;

  max-width: 920px;

  font-family: Georgia, serif;
}

/* PARAGRAPH */

.story-container p {
  max-width: 760px;

  color: rgba(255,255,255,0.88);

  font-size: 20px;
  line-height: 1.9;
  font-weight: 400;
}

/* RESPONSIVE */

@media (max-width: 1200px) {

  .story-container h2 {
    font-size: 68px;
  }

}

@media (max-width: 992px) {

  .story-section {
    min-height: 540px;
  }

  .story-container {
    padding: 0 50px;
  }

  .story-container h2 {
    font-size: 54px;
  }

  .story-container p {
    font-size: 18px;
    line-height: 1.8;
  }

}

@media (max-width: 768px) {

  .story-section {
    min-height: auto;
    padding: 140px 24px 90px;
  }

  .story-container h2 {
    font-size: 42px;
    line-height: 1.15;
  }

  .story-container p {
    font-size: 16px;
    line-height: 1.8;
  }

  .story-label {
    font-size: 12px;
    letter-spacing: 4px;
  }

}

@media (max-width: 480px) {

  .story-container h2 {
    font-size: 34px;
  }

}

/* =========================
   MISSION SECTION
========================= */

.mission-section{
  padding:110px 0;
  background:#f8f8f8;
}

.mission-container{
  width:90%;
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns: 1fr 520px;
  align-items:center;
  gap:90px;
}

.mission-content h2{
  font-size:54px;
  line-height:1.1;
  font-weight:700;

  max-width:700px;

  margin:0 0 30px;

  font-family: Georgia, serif;
}

.mission-content p{
  font-size:17px;
  line-height:1.9;
  color:#4e4e4e;

  margin-bottom:20px;

  max-width:670px;
}

.mission-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* =========================
   PILLARS SECTION
========================= */

.pillars-section{
  padding:100px 0;
  background:#efefef;
}

.pillars-container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

.pillars-container h2{
  font-size:52px;
  margin:0 0 50px;

  font-family: Georgia, serif;
}

.pillars-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  border:1px solid #dcdcdc;
}

.pillar-card{
  background:#f7f7f7;

  padding:42px 30px;

  border-right:1px solid #dcdcdc;

  transition:0.3s ease;
}

.pillar-card:last-child{
  border-right:none;
}

.pillar-card:hover{
  background:#ffffff;
}

.pillar-icon{
  font-size:26px;
  color:#008fa1;

  margin-bottom:28px;
}

.pillar-card h3{
  font-size:22px;
  margin-bottom:18px;

  font-family: Georgia, serif;
}

.pillar-card p{
  font-size:15px;
  line-height:1.8;
  color:#666;
}

/* =========================
   CTA SECTION
========================= */

.research-section{
  padding:120px 20px;
  background:#f8f8f8;
  text-align:center;
}

.research-container{
  max-width:900px;
  margin:auto;
}

.research-container h2{
  font-size:60px;
  line-height:1.15;

  margin-bottom:28px;

  font-family: Georgia, serif;
}

.research-container p{
  max-width:760px;

  margin:0 auto 40px;

  font-size:17px;
  line-height:1.9;
  color:#5e5e5e;
}

.research-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:54px;
  padding:0 34px;

  background:#0099a8;
  color:#fff;

  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  font-weight:700;

  transition:0.3s ease;
}

.research-btn:hover{
  background:#007d8a;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .mission-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .mission-image img{
    height:450px;
  }

  .pillars-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pillar-card:nth-child(2){
    border-right:none;
  }

  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2){
    border-bottom:1px solid #dcdcdc;
  }

}

@media (max-width:768px){

  .mission-section,
  .pillars-section,
  .research-section{
    padding:80px 0;
  }

  .mission-content h2,
  .pillars-container h2,
  .research-container h2{
    font-size:38px;
  }

  .mission-content p,
  .pillar-card p,
  .research-container p{
    font-size:15px;
  }

  .pillars-grid{
    grid-template-columns:1fr;
  }

  .pillar-card{
    border-right:none;
    border-bottom:1px solid #dcdcdc;
  }

  .pillar-card:last-child{
    border-bottom:none;
  }

  .mission-image img{
    height:320px;
  }

}

@media (max-width:480px){

  .mission-content h2,
  .pillars-container h2,
  .research-container h2{
    font-size:30px;
  }

}

/* =========================
   MISSION SECTION
========================= */

.mission-section{
  padding:110px 20px;
  background:#f8f8f8;
}

.mission-container{
  width:90%;
  max-width:1250px;
  margin:auto;

  display:grid;
  grid-template-columns: 1fr 520px;
  align-items:center;
  gap:90px;
}

.mission-content h2{
  font-size:54px;
  line-height:1.1;
  font-weight:700;

  max-width:700px;

  margin:0 0 30px;

  font-family: Georgia, serif;
}

.mission-content p{
  font-size:17px;
  line-height:1.9;
  color:#4e4e4e;

  margin-bottom:20px;

  max-width:670px;
}

.mission-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* =========================
   PILLARS SECTION
========================= */

.pillars-section{
  padding:100px 20px;
  background:#efefef;
}

.pillars-container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

.pillars-container h2{
  font-size:52px;
  margin:0 0 50px;

  font-family: Georgia, serif;
}

.pillars-grid{
  display:grid;
  grid-template-columns: repeat(4,1fr);
  border:1px solid #dcdcdc;
}

.pillar-card{
  background:#f7f7f7;

  padding:42px 30px;

  border-right:1px solid #dcdcdc;

  transition:0.3s ease;
}

.pillar-card:last-child{
  border-right:none;
}

.pillar-card:hover{
  background:#ffffff;
}

.pillar-icon{
  font-size:26px;
  color:#008fa1;

  margin-bottom:28px;
}

.pillar-card h3{
  font-size:22px;
  margin-bottom:18px;

  font-family: Georgia, serif;
}

.pillar-card p{
  font-size:15px;
  line-height:1.8;
  color:#666;
}

/* =========================
   CTA SECTION
========================= */

.research-section{
  padding:120px 20px;
  background:#f8f8f8;
  text-align:center;
}

.research-container{
  max-width:900px;
  margin:auto;
}

.research-container h2{
  font-size:60px;
  line-height:1.15;

  margin-bottom:28px;

  font-family: Georgia, serif;
}

.research-container p{
  max-width:760px;

  margin:0 auto 40px;

  font-size:17px;
  line-height:1.9;
  color:#5e5e5e;
}

.research-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:54px;
  padding:0 34px;

  background:#0099a8;
  color:#fff;

  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  font-weight:700;

  transition:0.3s ease;
}

.research-btn:hover{
  background:#007d8a;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .mission-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .mission-image img{
    height:450px;
  }

  .pillars-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pillar-card:nth-child(2){
    border-right:none;
  }

  .pillar-card:nth-child(1),
  .pillar-card:nth-child(2){
    border-bottom:1px solid #dcdcdc;
  }

}

@media (max-width:768px){

  .mission-section,
  .pillars-section,
  .research-section{
    padding:80px 20px;
  }

  .mission-content h2,
  .pillars-container h2,
  .research-container h2{
    font-size:38px;
  }

  .mission-content p,
  .pillar-card p,
  .research-container p{
    font-size:15px;
  }

  .pillars-grid{
    grid-template-columns:1fr;
  }

  .pillar-card{
    border-right:none;
    border-bottom:1px solid #dcdcdc;
  }

  .pillar-card:last-child{
    border-bottom:none;
  }

  .mission-image img{
    height:320px;
  }

}

@media (max-width:480px){

  .mission-content h2,
  .pillars-container h2,
  .research-container h2{
    font-size:30px;
  }

}

/* =========================
   JOURNAL SECTION
========================= */

.journal-section{
  background:#f5f5f5;
  padding:140px 0 120px;
}

/* HEADER */

.journal-header{
  width:90%;
  max-width:1250px;
  margin:0 auto 70px;
}

.journal-tag{
  display:inline-block;

  color:#009bb0;

  font-size:12px;
  letter-spacing:6px;
  text-transform:uppercase;

  margin-bottom:18px;
}

.journal-header h2{
  font-size:78px;
  line-height:1.05;

  margin:0 0 22px;

  color:#07111c;

  font-family: Georgia, serif;
  font-weight:700;
}

.journal-header p{
  font-size:22px;
  line-height:1.8;

  color:#5e6772;

  max-width:820px;
}

/* GRID */

.journal-grid{
  width:90%;
  max-width:1250px;

  margin:auto;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

/* CARD */

.journal-card{
  background:#fff;
  border:1px solid #dddddd;

  transition:0.35s ease;

  overflow:hidden;
}

.journal-card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */

.journal-image{
  width:100%;
  height:360px;
  overflow:hidden;
}

.journal-image img{
  width:100%;
  height:100%;
  object-fit:cover;

  transition:0.5s ease;
}

.journal-card:hover img{
  transform:scale(1.05);
}

/* CONTENT */

.journal-content{
  padding:34px 34px 38px;
}

.journal-meta{
  display:block;

  color:#7d8792;

  font-size:13px;
  letter-spacing:1px;

  margin-bottom:18px;
}

.journal-content h3{
  font-size:42px;
  line-height:1.2;

  margin:0 0 22px;

  color:#08111b;

  font-family: Georgia, serif;
  font-weight:700;
}

.journal-content p{
  font-size:17px;
  line-height:1.9;

  color:#5d6770;

  margin-bottom:28px;
}

.journal-content a{
  color:#008fa1;

  text-decoration:none;

  font-size:14px;
  font-weight:700;
  letter-spacing:1px;

  transition:0.3s ease;
}

.journal-content a:hover{
  letter-spacing:2px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px){

  .journal-header h2{
    font-size:60px;
  }

  .journal-content h3{
    font-size:34px;
  }

}

@media (max-width:992px){

  .journal-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

@media (max-width:768px){

  .journal-section{
    padding:140px 20px 80px;
  }

  .journal-grid{
    grid-template-columns:1fr;
  }

  .journal-header{
    margin-bottom:50px;
  }

  .journal-header h2{
    font-size:42px;
  }

  .journal-header p{
    font-size:17px;
  }

  .journal-content{
    padding:28px;
  }

  .journal-content h3{
    font-size:28px;
  }

  .journal-image{
    height:280px;
  }

}

@media (max-width:480px){

  .journal-header h2{
    font-size:34px;
  }

  .journal-content h3{
    font-size:24px;
  }

}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
  background:#f5f5f5;
  padding:110px 0 120px;
}

/* HEADER */

.contact-header{
  width:90%;
  max-width:1250px;

  margin:0 auto 70px;
}

.contact-tag{
  display:inline-block;

  color:#009eb0;

  font-size:12px;
  letter-spacing:5px;
  text-transform:uppercase;

  margin-bottom:18px;
}

.contact-header h2{
  font-size:74px;
  line-height:1.05;

  margin:0 0 20px;

  color:#08111b;

  font-family:Georgia, serif;
  font-weight:700;
}

.contact-header p{
  font-size:20px;
  line-height:1.8;

  color:#5f6872;
}

/* MAIN LAYOUT */

.contact-container{
  width:90%;
  max-width:1250px;

  margin:auto;

  display:grid;
  grid-template-columns:360px 1fr;
  gap:55px;
}

/* =========================
   LEFT INFO
========================= */

.contact-info{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.info-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.info-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#e6eef0;

  color:#008fa1;

  font-size:20px;
}

.info-text span{
  display:block;

  font-size:12px;
  letter-spacing:1px;
  color:#68727c;

  margin-bottom:6px;
}

.info-text p{
  margin:0;

  font-size:16px;
  line-height:1.7;

  color:#08111b;
}

/* MAP */

.contact-map{
  margin-top:12px;

  width:100%;
  height:340px;

  overflow:hidden;

  border:1px solid #d7d7d7;
}

.contact-map iframe{
  width:100%;
  height:100%;
  border:0;
}

/* =========================
   FORM
========================= */

.contact-form-wrap{
  background:#f7f7f7;

  border:1px solid #dcdcdc;

  padding:34px;
}

.contact-form{
  width:100%;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;

  font-size:12px;
  letter-spacing:1px;

  color:#68727c;

  margin-bottom:8px;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;

  border:1px solid #d3d3d3;
  background:#fff;

  padding:14px 16px;

  font-size:15px;
  color:#111;

  outline:none;
  transition:0.3s ease;

  box-sizing:border-box;
}

.form-group input,
.form-group select{
  height:50px;
}

.form-group textarea{
  min-height:170px;
  resize:none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#0096a7;
}

/* BUTTON */

.contact-form button{
  height:52px;
  padding:0 34px;

  border:none;

  background:#0096a7;
  color:#fff;

  font-size:13px;
  letter-spacing:1px;
  font-weight:700;

  cursor:pointer;

  transition:0.3s ease;
}

.contact-form button:hover{
  background:#007b88;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .contact-container{
    grid-template-columns:1fr;
  }

}

@media (max-width:768px){

  .contact-section{
    padding:80px 0;
  }

  .contact-header{
    margin-bottom:50px;
  }

  .contact-header h2{
    font-size:42px;
  }

  .contact-header p{
    font-size:17px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-form-wrap{
    padding:24px;
  }

}

@media (max-width:480px){

  .contact-header h2{
    font-size:34px;
  }

  .info-text p{
    font-size:14px;
  }

}