﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

:root {
  --primary: #0b1f33;
  --accent: #c9a14a;
  --light: #f4f6f8;
  --dark: #222;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
 /* background: #d3d3d3;*/
 

}

/* ============================
   PARALLAX SECTION
   ============================ */
.parallax-section.layered {
  overflow: hidden;
}

.layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/*
.layer.back {
  background-image: url("../images/placeholder-bg1.png");
  transform: translateZ(-1px) scale(2);
}
*/

.layer.front {
  background-image: url("../images/placeholder-bg2.png");
  opacity: 0.3;
}


.parallax-section {
  position: relative;
  min-height: 70vh;
  background-image: url("../images/placeholder-parallax.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(11, 31, 51, 0.7),
    rgba(11, 31, 51, 0.6)
  );
}

.parallax-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 800px;
}

.parallax-content h2 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.parallax-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 1;
}

/* ============================
   MOBILE FALLBACK
   ============================ */
   
   
 /* spinning logo */
 .spinning-logo {
    width: 30px; /* Adjust size as needed */
    height: 30px;
    animation: spinClockwise 2s linear 0s; /* Adjust duration for speed */
}

@keyframes spinClockwise {
    from {
        transform: skewy(0deg); /* Start at 0 degrees */
    }
    to {
        transform: skewy(360deg); /* Rotate full circle (clockwise) */
    }
}

/* For older browsers or consistent clockwise */
/* You can also use negative values for clockwise */
/*
@keyframes spinClockwise {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}
*/

 .trust-badges {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: 600;
}

.trust-badges span {
  background: rgba(255,255,255,0.1);
  padding: 8px 14px;
  border-radius: 6px;
}

.testimonials {
  display: grid;
  gap: 30px;
}

.testimonials blockquote {
  background: white;
  padding: 25px;
  border-left: 5px solid #C9A24D;
  font-style: italic;
}

.testimonials cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 768px) {
  .parallax-section {
    background-attachment: scroll;
    min-height: 60vh;
  }
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}

header {
  background: var(--primary);
  padding: 20px 0;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.hero {
  background: var(--light);
 /* background: var(--dark); */

  padding: 80px 0;
  opacity: 1;
}

.section {
  padding: 70px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.field-error {
  border: 2px solid #c0392b;
}

footer {
  background: var(--primary);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}