* {
    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;
}

.hero {
    background: #e0e0e0;
    text-align: center;
    padding: 40px 20px;
   /* background-image: url('F pit2.png'); 
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    min-height: 50vh;*/
   
}
    

.hero img {
    width: 100%;
    max-width: 600px;
}


/* Navbar */
.navbar {
  /*position: sticky;*/
  position: fixed;
  top: 0;
   left: 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: 60%;
  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;*/
}

/* Hero Section */
.hero {
  padding: 100px;
  text-align: left;
  display: flex;
  flex-direction: column;
 /* align-items: center;*/
  background-image: url('F pit.png'); 
  background-size: cover;
   /* background-attachment: fixed;*/
    background-position: center;
    min-height: 100vh;
   /* margin-bottom: 100px;*/
    border-color: white;

    
    
    
}


.hero-text {
  margin-top: 100px;
 /* text-align: centre;*/
   text-align: left;
}

.hero-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: hsl(0, 14%, 93%);
  text-align: left;
  
}

.hero-text p {
  font-size: 1.1rem;
  color: hsl(0, 29%, 97%);
  font-style: italic;
 /* max-width: 600px;*/
 /* margin: 0 auto;*/
  text-align: left;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /*height: 100vh;
  display: flex;*/
   display: block; /* or flex-direction: column */
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers boxes */
  width: 100%;
  border: 2px solid white;
  margin-bottom: 40px;
  align-items: flex-start;
}

.box {
  flex: 1 1 300px;   /* each box takes at least 300px */
  max-width: 400px;  /* prevents overly wide boxes */
  min-height: 200px;
  height: auto;
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  font-size: 1.2rem;
  font-style: italic;
  padding: 15px;
}

.box img {
  width: 100%;
  height: auto;      /* 🔑 let image keep aspect ratio */
  object-fit: cover; /* fills box without distortion */
  display: block;
}

/* Mobile-friendly stacking */
@media (max-width: 768px) {
  .box {
    flex: 1 1 100%;   /* full width on small screens */
    max-width: 100%;
  }
}

.section-header {
    margin-top: 10px; /* ensures space from content above */
    text-align: left;
      /*/display: flex;
  flex-direction: column;*/
}

.container2 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;        /* ✅ allow wrapping */
  gap: 15px;              /* spacing between boxes */
  width: 100%;
  border: 2px solid white;
  background-image: url('freepik__candid-image-photography-natural-textures-highly-r__82755.jpg'); 
  background-size: cover; 
  background-position: center;
  justify-content: center; /* center align boxes */
}

.box2 {
  flex: 1 1 300px;        /* ✅ flexible but minimum width */
  max-width: 400px;       /* don’t let boxes get too wide */
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  height: auto;           /* ✅ remove fixed vh height */
}

.box2 img {
  width: 100%;
  height: auto;           /* ✅ keep aspect ratio */
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ddd; /* optional styling */
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
  .box2 {
    flex: 1 1 100%;   /* full width per box on small screens */
    max-width: 100%;
  }
}

.box2 button{
  color: white;
  align-items: center;
  display: block;
  margin: 10px auto;
 /* border: none;*/
   border-radius: 5px
  
  
}
button, .your-button-class {
  display: block;
  margin: 10px auto; /* auto centers horizontally */
  background-color: #0091ea;
  outline: none;
}
.container3 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;         /* ✅ allow wrapping */
  gap: 15px;               /* spacing between boxes */
  width: 100%;
  border: 2px solid white;
  background-image: url('freepik__candid-image-photography-natural-textures-highly-r__82755.jpg'); 
  background-size: cover; 
  background-position: center;
  justify-content: center; /* center boxes nicely */
}

.box3 {
  flex: 1 1 300px;         /* ✅ responsive sizing */
  max-width: 400px;        /* limit max width */
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;            /* ✅ no forced 75vh */
}

.box3 img {
  width: 100%;
  height: auto;            /* ✅ keep natural aspect ratio */
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ddd; /* optional */
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .box3 {
    flex: 1 1 100%;        /* full width on small screens */
    max-width: 100%;
  }
}

.box3 button{
  color:white;
  align-items: center;
   border-radius: 5px
  
}
.container4 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;         /* ✅ allow wrapping */
  gap: 15px;               /* spacing between boxes */
  width: 100%;
  border: 2px solid white;
    background-image: url('freepik__candid-image-photography-natural-textures-highly-r__82755.jpg'); 
  background-size: cover; 
  background-position: center;
  justify-content: center; /* center boxes nicely */
}

.box4 {
  flex: 1 1 300px;         /* ✅ responsive sizing */
  max-width: 400px;        /* limit max width */
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;            /* ✅ no forced 75vh */
}

.box4 img {
  width: 100%;
  height: auto;            /* ✅ keep natural aspect ratio */
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ddd; /* optional */
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .box4 {
    flex: 1 1 100%;        /* full width on small screens */
    max-width: 100%;
  }
}



.box4 button{
  color: white;
  align-items: center;
   border-radius: 5px
  
}
.container5 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;         /* ✅ allow wrapping */
  gap: 15px;               /* spacing between boxes */
  width: 100%;
  border: 2px solid white;
  background-image: url('freepik__candid-image-photography-natural-textures-highly-r__82755.jpg'); 
  background-size: cover; 
  background-position: center;
  justify-content: center; /* center boxes nicely */
}

.box5 {
  flex: 1 1 300px;         /* ✅ responsive sizing */
  max-width: 400px;        /* limit max width */
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;            /* ✅ no forced 75vh */
}

.box5 img {
  width: 100%;
  height: auto;            /* ✅ keep natural aspect ratio */
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ddd; /* optional */
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .box5 {
    flex: 1 1 100%;        /* full width on small screens */
    max-width: 100%;
  }
}



.box5-p{
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: hsl(0, 14%, 93%);
  text-align: center;
}

.box5 button{
  color: white;
  align-items: center;
   border-radius: 5px
  
}

.container6 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;        /* ✅ allow wrapping on small screens */
  gap: 15px;              /* spacing between boxes */
  width: 100%;
  border: 2px solid white;
  justify-content: center; /* center boxes horizontally */
}

.box6 {
  flex: 1 1 300px;        /* ✅ flexible width but min 300px */
  max-width: 400px;       /* prevent boxes from getting too wide */
  border: 2px solid white;
  background-color: white;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;           /* ✅ remove forced 75vh */
}

.box6 img {
  width: 100%;
  height: auto;           /* ✅ keep natural aspect ratio */
  object-fit: cover;
  display: block;
  border-bottom: 2px solid #ddd; /* optional styling */
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
  .box6 {
    flex: 1 1 100%;       /* ✅ take full width on small screens */
    max-width: 100%;
  }
}


.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;
}


.container, .container2, .container3, .container6 {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;          /* ✅ allows wrapping on smaller screens */
  gap: 20px;                /* spacing between boxes */
  width: 100%;
  justify-content: center;  /* center align items */
  align-items: stretch;     /* ✅ makes all boxes the same height */
}

.box, .box2, .box3,.box4,.box5, .box6 {
  flex: 1 1 300px;          /* responsive width with min 300px */
  max-width: 350px;         /* prevent overly wide boxes */
  border: 2px solid white;
  background-color: white;
  display: flex;
  flex-direction: column;   /* stack image + text */
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.box img, .box2 img, .box3 img,.box4 img,.box5 img, .box6 img {
  width: 100%;
  height: 250px;            /* ✅ fixed uniform image height */
  object-fit: cover;        /* keeps aspect ratio while filling space */
  display: block;
}

/* 📱 Mobile: full width cards */
@media (max-width: 768px) {
  .box, .box2, .box3,.box4,.box5 .box6 {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
