


body {margin:0;font-family:Arial, sans-serif;background:#f5f7fa;}
header {background:linear-gradient(90deg,#0a3d62,#1e90ff);color:white;padding:15px 20px;display:flex;justify-content:space-between;align-items:center;position:sticky;top:0;z-index:1000;}
.logo {font-size:20px;font-weight:bold;}
nav {display:flex;gap:20px;}
nav a {color:white;text-decoration:none;font-weight:bold;}
.hamburger {display:none;font-size:24px;cursor:pointer;}

/* SLIDER */
.slider {position:relative;height:80vh;overflow:hidden;}
.slide {position:absolute;width:100%;height:100%;background-size:cover;background-position:center;opacity:0;transition:opacity 1s;}
.slide.active {opacity:1;}
.hero-text {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);color:white;text-align:center;background:rgba(0,0,0,0.5);padding:20px;border-radius:10px;}
.hero-text h1 {font-size:40px;margin:0;}
.hero-text p {font-size:18px;}

.section {padding:50px 20px;text-align:center;}
.services {display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:20px;}
.card {background:white;padding:25px;border-radius:12px;box-shadow:0 6px 15px rgba(0,0,0,0.1);transition:transform 0.3s;}
.card:hover {transform:translateY(-10px);}

.cta {background:#1e90ff;color:white;padding:40px;text-align:center;}
.cta button {padding:15px 25px;font-size:16px;border:none;border-radius:5px;background:#0a3d62;color:white;cursor:pointer;}

.footer {background:#0a3d62;color:white;padding:20px;text-align:center;}

@media(max-width:768px){
nav {display:none;flex-direction:column;background:#0a3d62;position:absolute;top:60px;right:0;width:200px;}
nav.active {display:flex;}
.hamburger {display:block;}
.hero-text h1 {font-size:28px;}
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #0b1b3a;
  color: white;
  position: relative;
}

/* Logo */
.logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

/* NAV */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00d4ff;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hamburger:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 70px;
    right: 20px;
    flex-direction: column;
    background: #0b1b3a;
    width: 200px;
    padding: 15px;
    border-radius: 12px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


:root {
  --primary: #0b1b3a;
  --accent: #00d4ff;
  --text: #ffffff;
  --muted: #cbd5e1;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* PREMIUM OVERLAY */
.slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 27, 58, 0.75),
    rgba(0, 0, 0, 0.4),
    rgba(0, 212, 255, 0.12)
  );
  z-index: 1;
}

/* HERO TEXT */
.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 800px;
  padding: 20px;
  animation: floatHero 4s ease-in-out infinite;
}

/* TITLE */
.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  text-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
  margin-bottom: 15px;
}

/* SUBTITLE */
.hero-text p {
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 3px;
}

/* CTA BUTTON */
.hero-btn {
  margin-top: 25px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--accent), var(--primary));
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.5);
}

/* FLOAT ANIMATION */
@keyframes floatHero {
  0% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -52%); }
  100% { transform: translate(-50%, -50%); }
}

/* FADE TEXT */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-text p {
    font-size: 14px;
  }
}


.logo {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  letter-spacing: 0.5px;
}

/* BLUE part (premium accent branding) */
.logo-blue {
  color: #00d4ff;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

/* PeakSupply main text */
.logo-main {
  color: #ffffff;
  font-weight: 700;
}

/* .US superscript */
.logo-sup {
  font-size: 12px;
  color: #cbd5e1;
  margin-left: 2px;
  position: relative;
  top: -6px;
  letter-spacing: 1px;
}

/* hover effect */
.logo:hover .logo-blue {
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.7);
  transition: 0.3s;
}

.logo:hover .logo-main {
  color: #e2e8f0;
  transition: 0.3s;
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
  background: #0b1b3a;
  color: white;
}

/* TITLE */
.section h2 {
  font-size: 38px;
  margin-bottom: 50px;
  color: #00d4ff;
}

/* GRID */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.card {
  background: #111c44;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  color: #ffffff;
}

.card p {
  padding: 0 15px 20px;
  font-size: 14px;
  color: #cbd5e1;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* IMAGE HOVER ZOOM */
.card:hover img {
  transform: scale(1.1);
  transition: 0.4s;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .section {
    padding: 50px 15px;
  }

  .section h2 {
    font-size: 28px;
  }

  .card img {
    height: 160px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 13px;
  }
}





/* CTA SECTION */
.cta {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0b1b3a, #020617);
  overflow: hidden;
}

/* GLOW BACKGROUND EFFECT */
.cta::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00d4ff;
  filter: blur(150px);
  top: -100px;
  left: -100px;
  opacity: 0.3;
}

.cta::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #0066ff;
  filter: blur(150px);
  bottom: -100px;
  right: -100px;
  opacity: 0.3;
}

/* CONTENT */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.cta h2 {
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* TEXT */
.cta p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
}

/* BUTTON */
.cta button {
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #00d4ff, #0066ff);
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* BUTTON HOVER */
.cta button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* SUBTLE FLOAT ANIMATION */
.cta-content {
  animation: floatCTA 4s ease-in-out infinite;
}

@keyframes floatCTA {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .cta {
    padding: 50px 15px;
  }

  .cta h2 {
    font-size: 26px;
  }

  .cta p {
    font-size: 14px;
  }

  .cta button {
    width: 100%;
    font-size: 15px;
  }
}

/* CONTACT SECTION */
.contact {
  padding: 80px 20px;
  text-align: center;
  background: #020617;
  color: white;
}

/* TITLE */
.contact h2 {
  font-size: 36px;
  color: #00d4ff;
  margin-bottom: 15px;
}

/* TEXT */
.contact-text {
  color: #cbd5e1;
  margin-bottom: 25px;
}

/* EMAIL BUTTON */
.email-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: linear-gradient(45deg, #00d4ff, #0066ff);
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

/* HOVER */
.email-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}



/* EMAIL LINK */
.cta-email {
  display: block;
  margin: 15px 0 25px;
  font-size: 18px;
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* HOVER EFFECT */
.cta-email:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}


/* SECTION */
.contact-section {
  padding: 80px 20px;
  background: #020617;
  color: white;
  text-align: center;
}

/* TITLE */
.contact-section h2 {
  font-size: 36px;
  color: #00d4ff;
  margin-bottom: 30px;
}

/* CONTACT CARD */
.contact-card {
  max-width: 500px;
  margin: auto;
  padding: 25px;
  border-radius: 15px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin-bottom: 50px;
}

/* LINKS */
.contact-link {
  display: block;
  margin-top: 10px;
  color: #00d4ff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.contact-link:hover {
  color: white;
  text-shadow: 0 0 10px rgba(0,212,255,0.6);
}
/* SECTION */
.executive-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #020617, #0b1b3a);
  color: white;
}

/* CONTAINER */
.executive-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* TEXT SIDE */
.executive-text {
  flex: 1;
}

.executive-text h2 {
  font-size: 36px;
  color: #00d4ff;
  margin-bottom: 20px;
}

.executive-text p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* SIGNATURE */
.signature {
  margin-top: 20px;
  font-style: italic;
  color: #00d4ff;
}

/* IMAGE SIDE */
.executive-image {
  flex: 1;
  position: relative;
}

/* IMAGE */
.executive-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
  transition: 0.4s;
}

/* IMAGE HOVER */
.executive-image img:hover {
  transform: scale(1.05);
}

/* GLOW EFFECT */
.executive-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10px;
  left: 10px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.1);
  z-index: -1;
}

/* MOBILE */
@media (max-width: 768px) {
  .executive-container {
    flex-direction: column;
    text-align: center;
  }

  .executive-text h2 {
    font-size: 26px;
  }
}


/* SECTION */
.returns-section {
  padding: 80px 20px;
  background: #020617;
  color: white;
}

/* CONTAINER */
.returns-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.returns-image {
  flex: 1;
}

.returns-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
  transition: 0.4s;
}

.returns-image img:hover {
  transform: scale(1.05);
}

/* TEXT */
.returns-text {
  flex: 1;
}

.returns-text h2 {
  font-size: 34px;
  color: #00d4ff;
  margin-bottom: 20px;
}

.returns-text p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* LIST */
.returns-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.returns-text li {
  margin-bottom: 10px;
  font-size: 15px;
}

/* NOTE */
.note {
  font-style: italic;
  color: #94a3b8;
}

/* BUTTON */
.returns-btn {
  margin-top: 15px;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #00d4ff, #0066ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.returns-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.6);
}

/* MOBILE */
@media (max-width: 768px) {
  .returns-container {
    flex-direction: column;
    text-align: center;
  }

  .returns-text h2 {
    font-size: 26px;
  }
}



.team-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1f2937; /* deep slate */
    letter-spacing: 1px;
    position: relative;
    margin: 30px 0;
    text-transform: uppercase;
}

/* Decorative underline */
.team-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Hover effect */
.team-title:hover::after {
    width: 120px;
}



.policy-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #111827; /* deep professional black */
    letter-spacing: 1px;
    margin: 30px 0;
    position: relative;
    text-transform: capitalize;
}

/* underline accent */
.policy-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #3b82f6; /* calm trust blue */
    margin: 10px auto 0;
    border-radius: 5px;
    transition: 0.3s ease;
}

/* hover effect */
.policy-title:hover::after {
    width: 130px;
}


.contact-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #0f172a; /* deep modern navy */
    letter-spacing: 1px;
    margin: 30px 0;
    position: relative;
    text-transform: capitalize;
}

/* soft accent underline */
.contact-title::after {
    content: "";
    display: block;
    width: 85px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #3b82f6); /* green to blue */
    margin: 10px auto 0;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* hover animation */
.contact-title:hover::after {
    width: 130px;
}

/* subtle glow effect */
.contact-title:hover {
    color: #1d4ed8;
    transition: 0.3s ease;
}


.floating-email {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #111827;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease;
    animation: pulse 1.8s infinite;
}

.email-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px red;
}

.floating-email:hover {
    transform: scale(1.15);
    background: #1f2937;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}




.floating-email {
    position: fixed !important;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #111827;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    
    z-index: 999999 !important; /* 🔥 FIX: forces it above everything */
    
    transition: 0.3s ease;
    animation: pulse 1.8s infinite;
}

/* badge fix */
.email-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px red;
}

/* hover */
.floating-email:hover {
    transform: scale(1.15);
    background: #1f2937;
}

/* animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,0,0,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}


.footer {
    background: #0f172a;
    color: #e5e7eb;
    text-align: center;
    padding: 25px 15px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-sub {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* subtle top border for authority look */
.footer {
    border-top: 2px solid #3b82f6;
}


.logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-left {
  font-size: 22px;
  font-weight: bold;
}

.logo-blue {
  color: #007BFF;
}

.logo-main {
  color: #ff85ae;
}

.logo-right .flag {
  width: 28px;
  height: auto;
}
