body {
  background: rgba(0, 0, 0, 0.9);
  margin: 0;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Navigation */
nav {
    background-color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 1.5rem;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: #3498db;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
    font-size: 1.5rem;
}

#showcase1 {
	background-color: rgba(180, 20, 0, 0.5);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}


#showcase2 {
	background: #c0c0c0;
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    position: relative;
    color: white;
}

 	.showcase-container {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #000;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
  z-index: 1;
}



.showcase::after {
  content: '';
  height: 80vh;
  width: 100%;
  background-image: url("../images/bg_6000_1536x868.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  filter: blur(10px);
  -webkit-filter: blur(10px);
  transition: all 1000ms;
}

.showcase:hover::after {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.showcase:hover .content {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.content {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 50%;
  margin-top: 5px;
  margin-left: -145px;
  width: 300px;
  height: 350px;
  text-align: center;
  transition: all 1000ms;
}

.content .logo {
  height: 180px;
  width: 180px;
}

.content .title {
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px blue;
  margin-top: 1rem;
}

.content .text {
  line-height: 1.7;
  margin-top: 1rem;
}

.container {
  max-width: 960px;
  margin: auto;
  overflow: hidden;
  padding: 4rem 1rem;
}

.grid-3 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.center {
  text-align: center;
  margin: auto;
}

.about {
	border: #333 solid 1px;
    padding: 1.2rem 1rem;
}

.bg-light {
  background: #f4f4f4;
  color: #333;
}

.bg-dark {
  background: #333;
  color: #f4f4f4;
}

footer {
  padding: 2.2rem;
}

footer p {
  margin: 0;
}








/* Base styles for all page sections */
.page-section {
    background: linear-gradient(
            rgba(0, 0, 0, 0.47),
            rgba(0, 0, 0, 0.47)
        ) center/cover no-repeat;
    border-radius: 25px;
    margin: 20px;
    text-align: center;
    position: relative;
}

/* Specific background images for each section */
.dealer-bg {
    background-image: url('../images/DealerImage.png');
}

.geopro-bg {
    background-image: url('../images/GeoProImage.png'); /* Example */
}

.product-bg {
    background-image: url('../images/ProductImage.png'); /* Example */
}

/* Section container styles */
.section-container {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
}

/* Heading styles */
.page-section h2 {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0;
}

/* Paragraph styles */
.page-section p {
    font-size: 1.5rem;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 20px auto;
}

.contact-section {
    background-color: rgba(0, 255, 255, 0.2);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(2px);
}
.contact-cart {
    background-color: rgba(40, 40, 40, 0.2);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    border-radius: 20px;
    padding: 40px;
}


#contact a:link { color: #3b81d1; }
#contact a:visited { color: green; }
#contact a:hover { color: red; }
#contact a:active { color: yellow; }


.circle-div {
    background-color: #314963;
    /* background-image: url('../images/wa-me-green.png'); /* Note: may need ../ depending on folder structure */
    background-size: 20px 20px; /* Adjust based on your icon size */
    background-position: center;
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    position: fixed;
    bottom: 21px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
}





/* Sections */
section {
    padding: 4rem 2rem;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

img {
  max-width: 100%;
  height: auto;
}

.rect-container {
		display: flex;
		flex: 1;
		justify-content: space-between; /* Centers horizontally */
		align-items: center; /* Centers vertically */
		width: 100%;
    }
    .rectangle1, .rectangle2 {
      width: 50%; /* Adjust width as needed */
      height: 100px;
      background-color: lightblue;
    }
    
.rectangle1 {
  width: 300px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 15px; /* All corners rounded equally */
}

.rectangle2 {
  width: 300px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 15px; /* All corners rounded equally */
}

.card-container {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #000;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
}

.card-container1 {
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
  /* justify-content: space-around; */
  justify-content: center;
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  background-color: #95d68d;
  border-radius: 20px;
  gap: 40px; /* Optional: adds space between cards */
}
.card-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  /* background-color: #95d68d; */ /* Remove this */
  border-radius: 20px;
  gap: 40px;
}
.card {
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 20px;
  width: 300px; /* Fixed width, flexible height */
  transition: transform 0.3s ease;
}

.orange-card {
	/*  background-color: #ed6002;  */
	background-color: #cae6cf;
	color: black;
	width: 40%;	
	}
	
.img-card {
	/*  background-color: #ed6002;  */
	background-color: #cae6cf;
	color: black;
	width: 50%;	
	}
	

.lineal {
  background: linear-gradient(160deg, lightgreen, lightblue);
  color: black;
}

.lineal1 {
  background: linear-gradient(
    90deg,
    #e6e6e6 0%,
    #ffffff 25%,
    #bfbfbf 50%,
    #ffffff 75%,
    #e6e6e6 100%); 
}

.lineal2 {
  background: linear-gradient(160deg, lightgreen, lightblue);
  color: darkgreen;
}


.card:hover {
  transform: translateY(-5px);
}



.float-container {
    border: 3px solid #fff;
    padding: 20px;
}
.float-child {
    width: 50%;
    float: left;
    padding: 20px;
    border: 2px solid blue;
}  

.menu {
  display: none;
  flex-direction: column;
  width: 100%;
}

.menu.active {
  display: flex;
}


/* Small Screens */
@media (max-width: 560px) {
  .showcase::after {
    height: 50vh;
  }

  .content {
    top: 5%;
    margin-top: 5px;
  }

  .content .logo {
    height: 140px;
    width: 140px;
  }

  .content .text {
    display: none;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .services div {
    border-bottom: #333 dashed 1px;
    padding: 1.2rem 1rem;
  }
}



/* Landscape */
@media (max-height: 500px) {
  .content .title,
  .content .text {
    display: none;
  }

  .content {
    top: 0;
  }
}
/* Enhanced Mobile Responsiveness */

@media only screen and (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .menu {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .menu li {
    margin: 0.5rem 0;
  }

  .hamburger {
    display: block;
  }

  .container,
  .section-container,
  .card-container,
  .card-container1,
  .card-container2 {
    flex-direction: column;
    padding: 1rem;
    gap: 20px;
  }

  .card,
  .rectangle1,
  .rectangle2,
  .orange-card,
  .img-card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-section h2 {
    font-size: 3rem;
  }

  .page-section p {
    font-size: 1.2rem;
  }
}
