* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00adef;
  --primary-dark: #1a9dd6;
  --primary-light: #57c8f4;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --text-lighter: #999;
  --bg-light: #f0f9ff;
  --white: #ffffff;
  --border-radius: 12px;
  --shadow-sm: 0 2px 8px rgba(35, 184, 241, 0.08);
  --shadow-md: 0 4px 16px rgba(35, 184, 241, 0.12);
  --shadow-lg: 0 8px 32px rgba(35, 184, 241, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
nav a {
  font-family: "Lato", serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
}

header.scrolled {
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Logo section wrapper */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-family: "Playfair Display", serif;
}

.logo:hover {
  transform: translateY(-2px);
}

.logo img {
  width: 90px;
  height: 60px;
}

/* Mission statement styling */
.mission-statement {
  margin: -7px;
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 800;
  font-style: italic;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* Hamburger Menu Button - Hidden on Desktop */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Menu Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
}

/* Desktop Navigation */
nav {
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.4rem;
  position: relative;
  transition: var(--transition);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--primary-color);
}

nav a:hover::after {
  width: 100%;
}

.about-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(35, 184, 241, 0.3);
}

.about-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(35, 184, 241, 0.4);
}

/* Mobile Responsive Styles */
@media screen and (max-width: 820px) {
  .mission-statement {
    font-size: 0.7rem;
  }

  .logo img {
    width: 80px;
    height: 65px;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
  }

  /* Side Navigation */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 40vh;
    width: 280px;
    background: rgb(0, 64, 92);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 2rem 2rem;
    gap: 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
  }

  nav.active {
    right: 0;
  }

  nav a,
  #mainNav a {
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
    padding: 1rem 0;
    color: white;
    border-bottom: 1px solid rgba(35, 184, 241, 0.1);
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    padding-left: 10px;
  }

  .about-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  .menu-overlay.active {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    width: 120px;
    height: 65px;
    object-fit: contain;
  }

  .mission-statement {
    font-size: 0.65rem;
    font-weight: 900;
  }

  nav {
    width: 250px;
  }
}
/* ==================== HERO SECTION ==================== */
.hero {
  margin-top: 80px;
  height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: scale(1.05);
}

.hero-image.active {
  opacity: 1;
  animation: zoomIn 10s ease-out forwards;
}

@keyframes zoomIn {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    /* 135deg,
    rgba(88, 200, 245, 0.13) 0%,
    rgba(0, 172, 240, 0.39)
     100% */
      340deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  max-width: 700px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px #00415c;
  letter-spacing: -0.5px;
  font-weight: 900;
}

.hero-content p {
  font-size: 1.35rem;
  text-shadow: 1px 2px 4px #00415c;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.cta-primary {
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(35, 184, 241, 0.4);
}

.cta-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(35, 184, 241, 0.5);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-color);
  border-color: var(--white);
  transform: scale(1.3);
}

/* ==================== TRUST BADGES ==================== */
.trust-badges {
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
  margin-top: -60px;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
}

.trust-item h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.trust-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==================== DETAILS SECTION ==================== */
.details {
  padding: 6rem 2rem;
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
}

.details-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.detail-card {
  position: relative;
  height: 450px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.detail-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.detail-card:hover img {
  transform: scale(1.1);
}

.detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--white);
  transition: var(--transition);
}

.detail-card:hover .detail-overlay {
  background: linear-gradient(320deg, #00415c 0%, #001b2a49 100%);
}

.detail-overlay h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-overlay p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

/* ==================== ABOUT US SECTION ==================== */
.about {
  padding: 6rem 2rem;
  background: var(--white);
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about h2 {
  font-size: 2.75rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-item h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.95rem;
  text-align: center;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
  padding: 6rem 2rem;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
}

.testimonials h2 {
  text-align: center;
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 4rem;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(35, 184, 241, 0.3);
}

.testimonial-card h3 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 600;
}

/* ==================== SUBSCRIBE SECTION ==================== */
.subscribe {
  padding: 6rem 2rem;
  background: var(--bg-light);
  text-align: center;
}

.subscribe-container {
  max-width: 700px;
  margin: 0 auto;
}

.subscribe h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.subscribe p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.subscribe-form {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--white);
}

.subscribe-form input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 2px solid transparent;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.subscribe-form input:focus {
  border-color: var(--primary-color);
}

.subscribe-form button {
  padding: 1.25rem 2.5rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--primary-dark);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* ==================== FOOTER ==================== */
footer {
  background: #00415c;
  color: var(--white);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(35, 184, 241, 0.2);
  padding-bottom: 3rem;
}

.footer-section h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: #b0c4d4;
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
  display: block;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  color: #7a8fa5;
  font-size: 0.9rem;
}

.company-number {
  color: var(--primary-color);
  font-weight: 600;
}
.info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
}
.info a,
.info b {
  color: var(--primary-color);
  font-weight: 600;
  padding-top: 0.8rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 820px) {
  .Pss {
    display: none;
  }
  .logo img {
    width: 80px;
    height: 60px;
    object-fit: contain;
  }
  nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    position: relative;
    transition: var(--transition);
    padding-right: 0.4rem;
  }
}
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .about-btn {
    padding: 0.6rem 1.2rem;
  }

  .hero {
    height: 600px;
    margin-top: 70px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .details-container {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    margin-top: 0;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .hero {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    text-align: center;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .about h2 {
    font-size: 1.75rem;
  }
}

/* ==================== ACCESSIBILITY ==================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}
