*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: sans-serif;
    
}
/* .container {
  max-width: 1290px;   
  margin: 0 auto;     
} */
 .container {
  max-width: 1400px;   /* safe for large screens */
  margin: 0px auto;
  padding: 0 16px;     /* mobile breathing space */
}
/* .sticky
{
  position: sticky;
  top: 0px; 
  z-index: 1;

} */

/* Top navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background:rgb(98, 76, 64);
    padding: 5px 25px;
    width: 100%;
}

/* Logo */
.logo
{
  margin-top: 5px;
 box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.2);

  
}
.logo img
{
  width: 50px;
  height: 50px;
}

/* Desktop menu */
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.menu li a {
  color: white;
  text-decoration: none;
  padding: 6px 12px;
}

.menu li a:hover {
  background: rgb(121, 158, 189);
  border-radius: 6px;
}

/* Mobile icon */
.menu-icon {
  font-size: 30px;
  cursor: pointer;
  color: white;
  display: none;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: rgb(123, 125, 126);
  overflow-x: hidden;
  transition: 0.4s;
  padding-top: 60px;
  z-index: 1000;
}

/* Sidebar links */
.sidebar ul {
  list-style: none;
  text-align: center;
}

.sidebar ul li {
  margin: 20px 0;
}

.sidebar ul li a {
  color: white;
  font-size: 22px;
  text-decoration: none;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 35px;
  color: white;
  text-decoration: none;
}



section
{ min-height: 400px;
  width: 100%;
  background-image: url(../images/section_image_1.jpg);
 background-position:center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
section .container
{
    max-width: 1400px;
}
.btn
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    color: white;
    font-size: 15px;
    font-weight: bold;
}
.btn button
{
    position: absolute;
    top: 200%;
    left: 50%;
    padding: 10px 15px;
    transform: translate(-50% ,-50%);
    background-color: #e3dc79;
    border-radius: 10px;
    color: rgb(0, 0, 1);
    border: none;
}
.btn button:hover
{
    background-color: #f5b0b0;
}
.about_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* justify-content: center;   centers whole block horizontally */
  /* align-items: center;       centers image & text vertically */
  gap: 40px;
  padding: 40px;
  margin: 30px auto;
   max-width: 1200px;
  align-items: center;
}

/* Image */
.about_image img {
  width: 100%;              /* control size */
  /* height: 400px; */
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Text block */
.All_about_you {
  max-width: 500px;
  text-align: justify;        /* centers text */
}

.All_about_you h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.main_items
{
    display: flex;
    gap: 30px;
    padding: 50px;

}
.main_items img
{
      width: 100%;
  height: 250px;           /* SAME height for both */
  object-fit: cover; 
  border-radius: 10px;

}
.inside_text
{
    text-align: center;
}
.inside_text h2
{
    margin: 10px;
    font-weight: bold;
    color:rgb(189, 99, 47) ;
}
.inside_text p{
    text-align: center;
    padding: 10px   ;
}
.item_btn {
  text-align: center;
  margin-top: 15px;
}

.item_btn .btt {
  display: inline-block;   /* ⭐ REQUIRED for padding */
  padding: 10px 20px;
  background: rgb(123, 125, 126);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
}

.item_btn .btt:hover {
  background-color: rgb(121, 158, 189);
}
/* .item_btn a
{
  padding: 10px;

} */
/* .item_btn 
{
    text-align: center;

}.item_btn a
{
    text-decoration: none;
    padding: 30px;
    color: white;
}
   
.item_btn button
{
    color: rgb(233, 224, 224);
    background: rgb(123, 125, 126);
    padding: 5px 15px;
    text-align: center;
    border-radius: 10px;
cursor: pointer;
border: none;
}
.item_btn button:hover
{
    background-color: rgb(121, 158, 189);
} */

footer
{
    height: 200px;
    background: #000;
    color:white;
    text-align: center;
}
.privacy_policy p{
    margin: 5px;padding: 10px;
}
.footer_inside i
{
    background-color: white;
   margin : 20px 10px;
    text-align: center;
    padding: 2px;
    border-radius: 5px;
}




/* -------------------------media quary------------------------------------ */
@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .menu-icon {
    display: block;
  }

    
    
.btn{
    font-size: 10px;
}
.btn button
{
    margin-top: 10px;
}
 .about_section {
    grid-template-columns: 1fr;   /* stack vertically */
    padding: 20px;
    text-align: center;
  }

  .about_image img {
    max-height: 300px;
  }

.main_items {
    flex-direction: column;
  }

  .item1 img,
  .item2 img {
    height: 200px;
  }
  .inside_text p{
    text-align: justify;
}
.All_about_you p
{
  margin: 10px 40px;
    text-align: justify;
}
.All_about_you
{
  text-align: center;
}
.item_btn .btt:hover {
  background-color: rgb(121, 158, 189);
}
footer
{
    height: 190px;
    background: #000;
    color:white;
    text-align: center;
}
}