/* Reset & global */
:root {
  --blue: rgb(2, 2, 153);         /* main company blue */
  --green: green;                /* main company green */
  --accent: #ffdd57;       
  --dark: #0b2540;         
  --muted: #6b7a8a;        
  --bg: #f6f9fb;                /* background */
  --max-width: 1200px;     
  --radius: 12px;          
}

::-webkit-scrollbar {
    width: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* layout container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* header */
.site-header {
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff; 
  z-index: 1002; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand img {
  width: 140px;
  display: block;
}


/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: blue; /* blue */
  border-radius: 2px;
  transition: 0.3s;
}

/* animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* navigation */
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.3rem;
  align-items: center;
}

.site-nav a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  padding: 0.45rem 0.3rem;
  transition: color .2s;
}

.site-nav a:hover {
  color: var(--green);
}
.site-nav {
  display: flex;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
}

.site-nav ul li a {
  color: var(--blue);
  font-weight: 600;
  transition: color 0.3s;
}

.site-nav ul li a:hover {
  color: white;
  background: blue;
  padding: 5px 1em;
  border-radius: 5px;
}
.site-nav ul li #active:first-child{
    color: white;
   background: blue;
  padding: 5px 1em;
  border-radius: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgb(2, 2, 153); /* blue background */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 2rem;
  }

  .site-nav ul li a {
    color: #fff;
    font-size: 1.2rem;
  }

  .site-nav.active {
    right: 0;
  }
}


/*  HERO  */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

/* slider area */
.hero-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 300%;
  height: 100%;
  display: flex;
  animation: heroSlide 20s linear infinite;
}

.slide {
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* faint floating brand logo */
.hero-bg-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.08;
  pointer-events: none;
  animation: floatLogo 6s ease-in-out infinite;
}

.hero-bg-logo img {
  width: 40%;
  max-width: 540px;
}

/* overlay for readability */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(0, 119, 182, 0.5) 0%,
    rgba(0, 159, 107, 0.6) 100%);
  z-index: 1;
}

/* hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  border-radius: 18px;
  max-width: 900px;
  animation: fadeInUp 1.8s ease;
}

.hero-content h1 {
  font-size: 2.4rem;
  line-height: 1.05;
  margin-bottom: .6rem;
}

.hero-content h1 strong {
  color: var(--accent);
}

.hero-content p.lead {
  font-size: 1.05rem;
  color: #e7f2f6;
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s;
}

.btn.primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 20px rgba(11, 37, 64, 0.08);
}

.btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(11, 37, 64, 0.12);
  background: white;
  color: blue;
}

.btn.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn.outline:hover {
    color: red;
}

.btn.whatsapp:hover{
    background:white;
    color: red;
}

/* sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: blue;
  color: white;
}

.section-alt-2 {
  background: #f8fbfc;
}

/* grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.reverse-md {
  grid-auto-flow: row;
}

@media (max-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .reverse-md {
    grid-auto-flow: row-reverse;
  }
}

/* about/media */
.media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(3, 27, 48, 0.06);
}

/* lists */
.simple-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  color: var(--muted);
}

.simple-list li {
  padding: .4rem 0;

}

/* products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.1rem;
  padding-left: 2em;
  box-shadow: 0 8px 24px rgba(3, 27, 48, 0.06);
  transition: transform .22s;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin: .8rem 0 .25rem;
  font-size: 1.05rem;
  color: var(--green);
}

.product-card p.muted {
  color: var(--muted);
  font-size: .95rem;
}

/*CTA SECTION */
.section-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 980px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .6rem;
}

.cta-left h2 span {
  color: var(--accent);
}

.contact-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
  color: #fff;
}

.contact-list li {
  padding: .4rem 0;
}
.contact-list a{
    text-decoration: none;
    color: red;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.cta-right img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(3, 27, 48, 0.18);
}

/* grid 3 */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  padding: 1.25rem;
  padding-left: 2em;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(3, 27, 48, 0.06);
}

.card h3 {
  margin-bottom: .6rem;
  color: var(--gree);
}

/* contact block */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: center;
}
.contact-block a{
    color: rgb(255, 0, 0);
    text-decoration: none;
}

@media (max-width: 900px) {
  .contact-block {
    grid-template-columns: 1fr;
  }
}

.contact-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(3, 27, 48, 0.08);
}

/* footer */
.site-footer {
  background: var(--blue);
  color: #fff;
  padding: 1.2rem 0;
  text-align: center;
}

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 92%;
  max-height: 86%;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(2, 12, 25, 0.6);
}

.lightbox-close {
  position: fixed;
  right: 28px;
  top: 18px;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* keyframes */
@keyframes heroSlide {
  0% { transform: translateX(0); }
  33% { transform: translateX(-100%); }
  66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
  100% { transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* small utilities */
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow { font-size: .9rem; letter-spacing: 1px; }
