/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
		--solar-blue: #7092BE; /*Solar Blue 112, 146,190*/
		--solar-light-blue: #e5e7eb;/*solar light blue*/
		--solar-medium-blue:#cbd5f5;/*solar medium blue*/
		--solar-dark-blue: #002060; /*Solar Dark Blue 0,32,96*/
		--logo-orange: #ED7D31;/*logo orange 237, 135, 49*/
		--logo-mid-orange: #b8612e;/*logo mid orange* 184, 97, 46*/
		--logo-dark-orange: #7a3f1b;/*logo dark orange 122, 63, 27*/
		
		--primary: var(--solar-blue);
		--primary-dark: var(--solar-dark-blue);
		--bg-default: white;
		--bg-dark: var(--solar-blue);
		--bg-primary-light:var(--solar-light-blue); 
		--bg-secondary-light: #f8fafc;/*almost white*/
		--ctr-primary: var(--logo-orange);
		--ctr-primary-dark: var(--logo-mid-orange);
		--txt-primary:black;
		--txt-medium: var(--solar-medium-blue);
}
body {
  font-family: "Inter", sans-serif;
  color: var(--txt-primary);
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
	 position: sticky;
	 top:0;
  background: var(--bg-default);
  border-bottom: 1px solid var(--bg-primary-light);
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo {
  font-family: "Ariel", sans-serif;
  color: var(--ctr-primary);
  font-weight: 700;
  font-size: 1.8rem;
  align-items: left;
}

.logogroup {
  display: flex;
  justify-content:space-around;
  align-items: center;
  height: 70px;
  width: 250px;
  margin: 0px;
}
.underline-text {
  text-decoration: underline;
}
.nav {
  display: none;
  gap: 24px;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  /* color: var(--ctr-primary); */
  color: var(--txt-primary);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--ctr-primary);
  color: white;
}
.btn-primary:hover {
  background: var(--ctr-primary-dark);
}
.btn-secondary {
  background: var(--bg-primary-light);
  color: var(--ctr-primary);
}
.btn-outline {
  border: 1px solid var(--ctr-primary);
  color: var(--txt-primary);
}

.hero-carousel {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.product-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.carousel {
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.product-carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items:flex-end;
  justify-content: center;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.product-carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% transparency */
  display: flex;
  align-items: flex-end;
  text-align: left;
}
.product-hero-overlay {
  height: auto;
  background: rgba(0, 0, 0, 0.5); /* 50% transparency */
  display: flex;
  align-items: flex-end;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 3rem;
  padding: 0 12px;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn:hover {
  background: #d17536;
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Hero */
.hero {
  padding: 0;
  /* background: rgb(112 146 190 / 50%); */
  background: linear-gradient( 135deg, rgb(112 146 190 / 50%), rgb(0 32 96 / 50%) );/*,url("../assets/Background.png")*/
 position: relative;
  /* background:linear-gradient(135deg, var(--bg-primary-light), var(--primary-dark)),url("../assets/Background.png"); */
  color: white;
  align-items: center;
  text-align: center;
  position: relative;
  /* background-image: url("../assets/Background.png"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero.container {
  position: relative;
  z-index: 2;
}
.hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
  z-index: 2;
}
.hero-actions {
  margin-top: 32px;
  z-index: 2;
}

/* Sections */
.section {
  padding: 30px 0;
}

.section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 40px;
  text-align: center;
  color: var(--ctr-primary);
}

.light-bg {
  background: var(--bg-secondary-light);
}

/* Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(800px, 1fr));
  gap: 24px;
}
.grid-2a {
  display: grid;
  grid-template-columns: 80% 20%;
  gap: 24px;
}

/* Cards */
.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.small-card {
  background: white;
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Products */
.product {
  background: white;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.card-horizontal {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.card-image-big {
  display: flex;
  align-items: center;
}

.card-image-big img {
  height: auto;
  width: auto;
  max-width: 600px;
  object-fit: contain;
}

.card-image {
  display: flex;
  align-items: center;
}

.card-image img {
  height: 100%;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}



/* CTA */
.cta {
  background: rgba(112, 146,190, 0.5); /* --primary at 50% */
  color: white;
  padding: 50px 0;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--txt-medium);
  padding: 30px 0;
  text-align: center;
}
.hero h1,
.hero p {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  margin: 4px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
  }

  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 50%;
    background: white;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 3px 0;
    width: 50%;
    text-align: center;
  }
  .card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card-image img {
    height: auto;
    max-width: 250px;
  }
	.card-image-big img {
	  height: 100%;
	  width: auto;
	  max-width: 250px;
	  object-fit: contain;
	}
	.grid-2a {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary-light), var(--primary-dark));
  padding: 40px 0;
  text-align: center;
  color: white;
  /* background-image: url("../assets/hero-bg.jpg"); */
  background-size: cover;
  background-position: center;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
}
.card:hover {
  transform: translateY(-6px);
  transition: transform 0.2s ease;
}
/* Product links */
.card-title a {
  color: var(--ctr-primary);
  text-decoration: none;
}
.card-title a:hover {
  text-decoration: underline;
}
/* Product lists */
.services-page ul {
  padding-left: 18px;
}
.services-page li {
  margin-bottom: 6px;
}
.product-hero {
  display: grid;
  grid-template-columns: 4fr 1fr;
  /* gap: 1rem; */
  /* padding: 1rem; */
}
.product-info-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.price-card {
  border: 1px solid #ddd;
  padding: 2rem;
  max-width: 400px;
  margin: auto;
}

.primary-btn {
  background: #d17536;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.news-ticker {
  width: 100%;
  overflow: hidden;
  background: #0b0b0b;
  color: white;
  padding: 12px 0;
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.ticker-track span {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Animation */
@keyframes scroll-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
.news-ticker:hover .ticker-track {
  animation-play-state: paused;
}
