body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #222;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
  flex-direction: row; /* Ensure text is left, image is right */
  margin-top: 100px;
}

.info-section {
  flex: 1 1 50%;
  order: 1;
}

.image-section {
  flex: 1 1 40%;
  text-align: center;
  order: 2;
}

.image-section img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222;
}

.model {
  font-weight: bold;
  margin-bottom: 10px;
  color: #444;
}

p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
}

.whatsapp-button i {
  margin-right: 8px;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}

.navbar {
  /*position: sticky;*/
  position: fixed;
  top: 0;
   z-index:1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #0091ea;
  padding: 15px 30px;
  color: #000;
  flex-wrap: wrap;
  height: 100px;
   width: 100%;
 /* min-width: 200vh;*/
}
  @media(max-width:768px){
  nav{
    flex-direction: column;
     align-items: flex-start;
  }
   nav a {
    display: block;
   
  }
}

.logo img {
  height: 75px;
}

.site-title {
  font-size: 24px;
  font-weight: bold;
  margin-left: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #fff;
}
* 
/* Dropdown menu styles */
.dropdown-menu {
  position: absolute;
  top: 65%;
  right: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0 2px 6px brown;
  border-radius: 4px;
  display: none;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
   color: #333;
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: background-color 0.2s;
}

.dropdown-menu a:hover {
 /* background-color: #f0f0f0;*/
  background-color: #00bfff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  /*display: inline;*/
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f0f2f5;
}

header {
    background: #00bfff;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
   /* justify-content: space-between;*/
    text-align: center;
    justify-content: center;

}
 .h1{
    text-align: center;
}
 
header img {
    height: 40px;
}

.footer {
  background-color: #1a1a1a;
  color: white;
  min-height: 75vh;
  padding: 20px 40px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.top-nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
   /*min-height: 60vh;*/
   align-items: center;
   padding-top: 50px;

}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.social-icons span {
  font-size: 24px;
  margin-right: 10px;
}
.social-icons a {
  font-size: 24px;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.3s;
  text-decoration: none;
}
.fa-instagram{
   color: #1877f2;
}


.fa-tiktok{
  color:white;
}

.fa-whatsapp{
  color: #25d366;
}

/* Optional hover effect */
.social-icons i:hover {
  opacity: 0.8;
}

.social-icons a:hover {
  color: #fff;
}


.bottom-bar {
  border-top: 1px solid #444;
  margin-top: 100px;
  padding-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #ccc;
}

.payment-icons span {
  margin-right: 10px;
}

