/**
* Template Name: sugiharti
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: 
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ce1212; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #ce1212; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ce1212; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f2f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 120px;
  margin-right: 150px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }
} /* ✅ Tambahkan ini: penutup blok desktop */

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: var(--default-font);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

/* Statistik */
.about-stats h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #002F6C;
  margin-bottom: 5px;
}
.about-stats p {
  font-size: 14px;
  color: #555;
}

/* Tombol maroon */
.btn-about {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 32px;
  border-radius: 50px;
  background: #800000;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(128, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-about:hover {
  background: #a00000;
  box-shadow: 0 5px 15px rgba(128, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Hover efek gambar */
.about-img img {
  transition: all 0.4s ease;
  border-radius: 12px;
}
.about-img:hover img {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 47, 108, 0.3);
}

/* Background shape dekoratif */
.about-bg-shape {
  position: absolute;
  right: -100px;
  top: 150px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at top left, #002F6C 30%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
  animation: floaty 6s ease-in-out infinite alternate;
}
@keyframes floaty {
  0% { transform: translateY(0px); }
  100% { transform: translateY(20px); }
}

/* Quotes Box */
.book-a-table {
  text-align: center;
  border: 3px solid rgba(0,47,108,0.2);
  padding: 20px;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.book-a-table:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,47,108,0.15);
}
.book-a-table h3 {
  font-size: 1.2rem;
  color: #002F6C;
  margin-bottom: 5px;
}
.book-a-table p {
  color: #800000;
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

/* Responsif */
@media (max-width: 767px) {
  .about-stats { flex-direction: column; gap: 15px; }
  .about-stats h4 { font-size: 1.6rem; }
  .btn-about { padding: 10px 24px; font-size: 0.95rem; }
}
/* List Nilai & Keunggulan */
.about-values li,
.about-features li {
  font-size: 14px;
  color: #444;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

/* Ikon checklist */
.about-values li::before {
  content: "✔";
  color: #002F6C;
  font-weight: 700;
}
.about-features li::before {
  content: "•";
  color: #800000;
  font-size: 20px;
  line-height: 0;
}

/* Subjudul kecil */
.about h4, 
.about h5 {
  color: #002F6C;
  font-weight: 700;
}

/* Tombol Outline untuk Download Profile */
.btn-about-outline {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  border: 2px solid #800000;
  color: #800000;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-about-outline:hover {
  background: #800000;
  color: #fff;
  box-shadow: 0 5px 15px rgba(128, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* Penyesuaian spacing list */
.about-values {
  margin-top: 10px;
  margin-bottom: 15px;
}
.about-features {
  margin-top: 10px;
  margin-bottom: 15px;
}

/* Sedikit responsif tambahan */
@media (max-width: 767px) {
  .btn-about-outline {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}


/*--------------------------------------------------------------
# Section Titles (Global)
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  margin-bottom: 40px; /* lebih lega antar section */
}

/* Judul utama (H2) - biru industrial */
.section-title h2 {
  color: #003566; /* Biru profesional */
  font-size: 40px; /* sebelumnya 32px, kini lebih besar */
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* opsional: tampil tegas */
}

/* Subjudul (p & .subtitle) - merah brand */
.section-title p,
.section-title .subtitle {
  color: #ce1212; /* Warna aksen utama */
  font-size: 20px; /* sebelumnya 16px, kini lebih besar */
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Efek halus saat hover */
.section-title h2,
.section-title p {
  transition: color 0.3s ease, transform 0.3s ease;
}

.section-title:hover h2 {
  color: #00264d; /* Biru lebih pekat saat hover */
}

.section-title:hover p {
  color: #9c0303; /* Merah lebih tua saat hover */
}

/* Responsif - tetap proporsional di HP */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 30px;
  }
  .section-title p,
  .section-title .subtitle {
    font-size: 18px;
  }
}


/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  display: block; /* placeholder supaya tidak warning */
}

/* ===================== */
/* WHY CHOOSE US SECTION */
/* ===================== */

.whyus-section {
  padding: 70px 0;
}

.why-card {
  background: rgba(255,255,255,0.92);
  padding: 28px;
  border-radius: 18px;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient Border */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: linear-gradient(135deg, #002F6C, #800000);
  -webkit-mask: 
     linear-gradient(#fff 0 0) content-box,
     linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: 0.4s ease;
}

/* Hover */
.why-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.why-card:hover::before {
  background: linear-gradient(135deg, #003a85, #a00000);
}

/* Icon */
.why-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  transition: 0.3s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.15) rotate(3deg);
}

/* Text */
.why-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #002F6C;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 767px) {
  .why-card {
    padding: 22px;
  }
  .why-icon {
    font-size: 2.4rem;
  }
}

/* ========================= */
/* PREMIUM+ VISION & MISSION */
/* ========================= */

.vision-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Background Wave */
.vision-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,47,108,0.16), transparent 70%);
  filter: blur(40px);
  animation: waveMove 12s infinite alternate ease-in-out;
  z-index: 0;
}

.vision-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(128,0,0,0.15), transparent 70%);
  filter: blur(40px);
  animation: waveMove2 14s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes waveMove {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(40px) rotate(20deg); }
}

@keyframes waveMove2 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(-20deg); }
}


/* CARD PREMIUM+ */
.vm-card.premium {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 40px 30px;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 1;
}

/* Gradient Border */
.vm-card.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, #002F6C, #800000);
  z-index: -1;
}

/* Inner white layer */
.vm-card.premium::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(255,255,255,0.85);
  border-radius: 19px;
  z-index: -1;
}

/* Hover */
.vm-card.premium:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.20);
}

/* Soft Glow Hover */
.vm-card.premium:hover::before {
  background: linear-gradient(135deg, #003a85, #a00000);
  filter: drop-shadow(0 0 10px rgba(0,47,108,0.35));
}

/* Icon animate */
.vm-icon {
  font-size: 3.5rem;
  margin-bottom: 18px;
  transition: 0.4s ease;
  display: inline-block;
  animation: floatIcon 6s infinite ease-in-out;
}

.vm-card.premium:hover .vm-icon {
  transform: scale(1.2) rotate(5deg);
}

@keyframes floatIcon {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Title */
.vm-card h3 {
  font-size: 1.55rem;
  font-weight: 800;
  color: #002F6C;
  margin-bottom: 15px;
}

/* Paragraph */
.vm-text {
  font-size: 15.5px;
  color: #444;
  line-height: 1.65;
}

/* Mission list */
.vm-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vm-list li {
  margin-bottom: 12px;
  font-size: 15.5px;
  color: #444;
  display: flex;
  gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .vm-card.premium {
    padding: 28px 22px;
  }

  .vm-icon {
    font-size: 2.8rem;
  }
}

/* ============================= */
/* PROCESS FLOW - PREMIUM+ STYLE */
/* ============================= */

.process-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* Soft background waves (optional, same style as Vision section) */
.process-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,47,108,0.16), transparent 70%);
  filter: blur(45px);
  animation: pfWave1 12s infinite alternate ease-in-out;
  z-index: 0;
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(128,0,0,0.15), transparent 70%);
  filter: blur(45px);
  animation: pfWave2 14s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes pfWave1 {
  0%   { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(40px) rotate(18deg); }
}

@keyframes pfWave2 {
  0%   { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(-18deg); }
}

/* CARD */
.pf-card.premium {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 40px 28px;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  z-index: 1;
  height: 100%;
}

/* OUTER GRADIENT BORDER */
.pf-card.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, #002F6C, #800000);
  z-index: -1;
}

/* INNER WHITE LAYER */
.pf-card.premium::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(255,255,255,0.88);
  border-radius: 19px;
  z-index: -1;
}

/* HOVER EFFECT */
.pf-card.premium:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
}

.pf-card.premium:hover::before {
  background: linear-gradient(135deg, #003a85, #a00000);
  filter: drop-shadow(0 0 12px rgba(0,47,108,0.35));
}

/* ICON floating + hover */
.pf-icon {
  font-size: 3.4rem;
  margin-bottom: 15px;
  transition: 0.45s ease;
  animation: pfIconFloat 6s infinite ease-in-out;
}

.pf-card.premium:hover .pf-icon {
  transform: scale(1.22) rotate(4deg);
}

@keyframes pfIconFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* TITLE */
.pf-card h4 {
  font-size: 1.28rem;
  font-weight: 800;
  color: #002F6C;
  margin-bottom: 10px;
}

/* DESCRIPTION */
.pf-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 0;
}

/* MOBILE */
@media(max-width: 767px) {
  .pf-card.premium {
    padding: 28px 22px;
  }
  .pf-icon {
    font-size: 2.7rem;
  }
}

/* ================================= */
/* SUSTAINABILITY - PREMIUM+ STYLE  */
/* ================================= */

.sustain-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.sustain-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0,47,108,0.16), transparent 70%);
  filter: blur(45px);
  z-index: 0;
}

.sustain-section::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(128,0,0,0.15), transparent 70%);
  filter: blur(45px);
  z-index: 0;
}

.sustain-card.premium {
  position: relative;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 40px 28px;
  border-radius: 22px;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
  z-index: 1;
}

.sustain-card.premium::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(135deg, #002F6C, #800000);
  z-index: -1;
}

.sustain-card.premium::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: rgba(255,255,255,0.88);
  border-radius: 19px;
  z-index: -1;
}

.sustain-card.premium:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
}

.sustain-card.premium:hover::before {
  background: linear-gradient(135deg, #003a85, #a00000);
  filter: drop-shadow(0 0 12px rgba(0,47,108,0.35));
}

.sustain-icon {
  font-size: 3.3rem;
  margin-bottom: 15px;
  animation: sustainFloat 6s infinite ease-in-out;
  transition: 0.4s ease;
}

.sustain-card:hover .sustain-icon {
  transform: scale(1.22) rotate(4deg);
}

@keyframes sustainFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.sustain-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #002F6C;
  margin-bottom: 10px;
}

.sustain-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

/* Mobile */
@media(max-width: 767px) {
  .sustain-card.premium {
    padding: 28px 22px;
  }
}








