@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}
.container {
    background-color: white;
    width: 100%;
    padding-top: 80px; /* Added padding to account for fixed nav */
    background-color: none;
    
}.top-bar {
  width: 100%;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 64px;
  margin-right: 20px;
}

.social-media {
  display: flex;
  align-items: center;
  padding-right: 20px;
}

.social-media a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-size: 1.5em;
  padding-right: 0px;
}
.social-media a:hover{
  color:blue;
}

@media (max-width: 1024px) {
  .contact-info {
      display: block;
      text-align: end;
  }

  .top-bar {
      flex-direction: column;
      align-items: center;
      padding-left: 10px;
      padding-right: 5px;
  }

  .social-media {
      display: none;
  }

  .contact-info span {
      display: block;
      margin: 5px 0;
  }

  .logo img {
      height: 80px;
      padding-right: 30px;
  }
}

nav {
  display: flex;
  height: 40px;
  width: 100%;
  background: #1b1b1b;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
  position: fixed;
  top: 80px; /* Adjusted top position */
  left: 0;
  z-index: 1000;
}

nav .logo {
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #f2f2f2;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav ul li a.active,
nav ul li a:hover {
  color: #111;
  background: #fff;
}

nav .menu-btn i {
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: none;
}

input[type="checkbox"] {
  display: none;
}

@media (max-width: 1000px) {
  nav {
      padding: 0 40px;
      top: 100px; /* Adjusted top position */
      align-items: center;
  }
}

@media (max-width: 920px) {
  nav .menu-btn i {
      display: block;
  }

  #click:checked ~ .menu-btn i:before {
      content: "\f00d";
  }

  nav ul {
      position: fixed;
      top: 100px; /* Adjusted top position */
      left: -100%;
      background: black;
      color: white;
      height: 100vh;
      width: 70%;
      text-align: center;
      display: block;
      transition: all 0.3s ease;
  }

  #click:checked ~ ul {
      left: 0;
  }

  nav ul li {
      width: 100%;
      margin: 12px 0;
  }

  nav ul li a {
      width: 100%;
      margin-left: -100%;
      display: block;
      font-size: 20px;
      transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  #click:checked ~ ul li a {
      margin-left: 0;
  }

  nav ul li a.active,
  nav ul li a:hover {
      background: none;
      color: cyan;
  }
}
.images{
  width: 100%;
}
 .hero-section {
  width: 90%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  background-color: none;
  margin-top: 30px;
}

.hero-section img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  height:460px;
  margin-top:38px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

.hero-text h1 {
  font-size: 2em;
  margin-bottom: 20px;
}

.hero-text button {
  padding: 10px 20px;
  font-size: 1em;
  color: white;
  background-color: rgb(44, 44, 172);
  border: none;
  border-radius: 15px;
  cursor: pointer;
}
.hero-text button:hover{
color:black;
background-color: white;
}

@media (min-width: 768px) {
  .hero-text h1 {
      font-size: 2.5em;
  }
  .hero-section img{
    margin-top: 20px;
  }
 

  .hero-text button {
      font-size: 1.2em;
  }
}
.about {
  width: 90%;
  
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}

.inside h1 {
  margin-bottom: 20px;
  font-size: 2em;
}

.images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.images img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .images img {
      width: calc(50% - 20px); /* Adjust width to fit two images per row with gap */
  }
}
.con {
  width: 90%;
  margin: 0 auto;
  margin-top:20px;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
}

.content p {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 1em;
  line-height: 1.6;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .con {
      display: flex;
      justify-content: space-between;
      text-align: left;
  }

  .content, .image {
      width: 48%;
  }
}
.conn {
    display: flex;
    margin-top: 20px;
    height: 100px;
    width: 90%;
    background-color: whitesmoke;
    text-align: center;
    padding: 50px 20px;
    margin-left: 75px;
    text-align: center;
}
.conn h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    
}
.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.image {
    flex: 1 1 calc(50% - 40px);
    max-width: calc(50% - 40px);
    margin: 10px;
}
.image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
    .image {
        flex: 1 1 calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
}

.main-body-1 {
    height: auto;
    width: 90%;
    background-color: white;
    border-radius: 5px;
    border: 1px solid black;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-content: center;
    margin-left: 30px;
}
.left, .right, .top, .bottom {
    width: 100%;
    height: auto;
}
.right img, .top img {
    width: 100%;
    height: 250px;
}
.block-0, .block-1 {
    width: 90%;
    text-align: center;
    justify-content: center;
    position: relative;
    top: 25%;
}
@media (min-width: 768px) {
    .left, .right, .top, .bottom {
        width: 50%;
        margin-bottom: 0;
    }
    .left, .top {
        float: left;
    }
    .right, .bottom {
        float: right;
    }
    .main-body-1 {
        height: auto;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
    .left, .right, .top, .bottom {
        width: 100%;
    }
    .main-body-1 {
        flex-direction: column-reverse;
    }
}
.inside {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.inside h1 {
    text-align: center;
    margin-bottom: 20px;
}
.images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.images img {
    max-height: 400px;
    width: 100%;
    max-width: 45%;
}
@media (max-width: 768px) {
    .images img {
        max-width: 100%;
    }
    .inside h1 {
        font-size: 22px;
    }
}
/* images section */
.cont {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
  margin-top: 20px;
}
.main {
  width: 90%;   
  background-color: white;
  text-align: center;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  
}
.main img {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}

.ins {
  text-align: center;
  
}
 .ins h1 {
  font-size: 25px;
  margin: 0;
  color: black;
  text-align: center;
  padding-bottom: 15px;
}
p {
  font-size: 16px;
  margin: 0;
  color: #333;
  text-align: center;
}
@media (min-width: 768px) {
   
  .sec-1, .sec-2 {
      display: flex;
      justify-content: space-between;
      align-items: center;    
  }
  .sec-1 img, .sec-2 img {
      width: 50%;
      margin: 0;
  }
  .sec-1 .ins, .sec-2 .ins {
      width: 50%;
      text-align: left;
      padding: 0 20px;
      box-sizing: border-box;
  }
  
}
@media (max-width: 767px) {
   h1{
    font-size: 22px;
  }
  .sec-2 {
      display: flex;
      flex-direction: column-reverse;
      align-items: center;
      
  }
  .sec-2 img {
      width: 100%;
      margin: 0;
      height:200px;
  }
  .sec-1 img {
      width: 100%;
      margin: 0;
      height:200px;
      padding: 0px;
  }
  .sec-2 .ins {
      margin: 0px 0;
      text-align: center;
      width: 100%;
  }
  .ins h1{
    font-size: 18px;
    color:black;
    padding-top: 10px;
  }
  .sec-1, .sec-2 p{
      margin-bottom: 25px;
  }
}

.go-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--bittersweet);
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  border: 4px solid var(--white);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  z-index: 2;
}

.go-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.go-top-btn:is(:hover, :focus) { background: var(--salmon);
 }
.cntainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  background-color: whitesmoke;
  margin-top: 10px;
  width: 100%;
  margin: auto;
}

.form-container, .map-container {
  flex: 1;
  
  width: 90%;
  height: 440px;
  margin: 10px;
}

.form-container {
  background-color: #2c3e50;
  padding: 20px;
  border-radius: 5px;
  color: white;
}

.form-container h1, .form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-container input, .form-container textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 3px;
}

.form-container input[type="text"], .form-container input[type="email"] {
  height: 40px;
}

.form-container textarea {
  height: 100px;
  resize: none;
}

.form-container button {
  width: 30%;
  padding: 10px;
  background-color: #1abc9c;
  border: none;
  border-radius: 3px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
border-radius: 15px;
}

.form-container button:hover {
  background-color: #16a085;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 5px;
}

.why-us-section {
  background-image: url('background-image-url.jpg'); /* Replace with the actual image URL */
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  color: white;
  text-align: center;
  width: 90%;
  
  margin: auto;
  background-image: url('./images/image-02.webp');

  border-radius: 10px;
}

.why-us-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.why-us-item {
  flex: 1 1 22%;
  margin: 10px;
  padding: 20px;
  border-radius: 10px;
}

.why-us-item p {
  margin: 0;
  font-size: 16px;
  color:white;
}

@media (max-width: 768px) {
  .why-us-item {
      flex: 1 1 45%;
  }
}

@media (max-width: 480px) {
  .why-us-item {
      flex: 1 1 100%;
  }
}


.zzz {
  width: 90%;
  margin-top: 20px;
  
  margin: 0 auto;
background-color: rgb(228, 221, 221);
}
.zzz h1{
text-align: center;
color:black;
padding-top:20px;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
margin: 10px;
}
.gallery .image-large {
  flex: 1 1 50%;
  padding: 5px;
}
.gallery .image-small {
  flex: 1 1 50%;
  padding: 5px;
}
.gallery .image-small img,
.gallery .image-large img {
  width: 100%;
  height: auto;
}
.image-small-container {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 50%;
}
.image-small-container .image-small {
  flex: 1 1 50%;
}
@media (max-width: 768px) {
  .gallery .image-large, 
  .image-small-container {
      flex: 1 1 100%;
  }
  .image-small-container .image-small {
      flex: 1 1 50%;
  }
}
@media (max-width: 480px) {
  .image-small-container .image-small {
      flex: 1 1 100%;
  }
}
.mai{
  background-image: url(./images/image-27.webp);
  margin: 0 auto;
  color:white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
  width: 90%;
  padding: 100px 20px;
  margin-top: 20px;

 
}
.mai p{
  color: white;
}
.mai-2 {
  width: 90%;
  margin: 0 auto;
  background-color: rgb(242, 238, 238);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}

.about-1 h1 {
  margin-bottom: 20px;
  font-size: 1.8em;
text-align: center;
}

.about-1 p {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.6;
text-align: center;
}

@media (min-width: 768px) {
   .mai-2 {
      text-align: center;
  }

  .about-1 h1 {
      font-size: 2.3em;
  }

  .about-1 p {
      font-size: 1.1em;
  }
  
}

.cntainer {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 20px;
background-color: white;
margin-top: 10px;
width: 90%;
margin: 10px auto;
box-sizing: border-box;
}

.form-container, .map-container {
flex: 1;
min-width: 48%;
max-width: 48%;
height: 420px;
margin: 10px 0;
}

.form-container {
background-color: #2c3e50;
padding: 20px;
border-radius: 5px;
color: white;
}

.form-container h2 {
text-align: center;
margin-bottom: 20px;
}

.form-container input, .form-container textarea {
width: 90%;
padding: 10px;
margin: 10px 0;
border: none;
border-radius: 3px;
}

.form-container input[type="text"], .form-container input[type="email"], .form-container input[type="number"] {
height: 25px;
}

.form-container textarea {
height: 80px;
resize: none;
}

.form-container button {
width: 30%;
padding: 10px;
background-color: #1abc9c;
border: none;
border-radius: 3px;
color: white;
font-size: 16px;
cursor: pointer;
display: block;
margin: 20px auto 0;
border-radius: 15px;
}

.form-container button:hover {
background-color: #154a40;
color:white;
}

.map-container iframe {
width: 100%;
height: 100%;
border: none;
border-radius: 5px;
}

@media (max-width: 768px) {
.form-container, .map-container {
  max-width:100%;
  min-width: 90%;
}
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  background-color: white;
  color:black;
  
}
.footer .column {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
}
.footer h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin: 5px 0;
}
.footer ul li a {
  color: black;
  text-decoration: none;
}
.footer ul li a:hover {
  text-decoration: underline;
}
.footer .social-icons {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.footer .social-icons a{
  padding:10px;
}
.footer .social-icons a:hover{
  color:black;
}
.footer .social-icons li {
  margin: 0 10px;
  padding:20px;
}
.footer .social-icons li a img {
  width: 50px;
  height: 50px;
  padding:20px;
}
.footer .contat-info {
  text-align: center;
}
.footer .contat-info p {
  margin: 5px 0;
}
.footer .contat-info a {
  color: #00aaff;
  text-decoration: none;
}
.footer .contat-info a:hover {
  text-decoration: underline;
}
.social-icons a{
font-size: 1.5em;
}
.aww{
text-align: center;
}
.bottm{
padding:24px;
width:100%;
background-color: black;
color:white;

}
.bottm p{
  color:white;
}
@media (max-width: 768px) {
  .footer {
      flex-direction: column;
      text-align: center;
  }
}

/* gallery page-start */

.container-1{
	max-width: 1170px;
	margin:auto;
  
}
.row{
	display: flex;
	flex-wrap: wrap;
  background-color: rgb(237, 241, 232);
  padding:5px;
  border-radius: 10px;
  
}
img{
 
	max-width: 100%;
	vertical-align: middle;
}
/*.gallery*/
.gallery{
	width: 100%;
	display: block;
	
	
	padding-top: 50px;
}
.gallery .gallery-filter{
	padding: 0 15px;
	width: 100%;
	text-align: center;
	margin-bottom: 20px;
}
.gallery .gallery-filter .filter-item{
	color: #ffffff;
	font-size: 18px;
	text-transform: uppercase;
	display: inline-block;
	margin:0 10px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	line-height: 1.2;
	transition: all 0.3s ease;
}
.gallery .gallery-filter .filter-item.active{
	color: #ff9800;
	border-color : #ff9800;
}
.gallery .gallery-item{
	width: calc(100% / 3);
	padding: 15px;
}
.gallery .gallery-item-inner img{
	width: 100%;
}
.gallery .gallery-item.show{
	animation: fadeIn 0.5s ease;
}
@keyframes fadeIn{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
.gallery .gallery-item.hide{
	display: none;
}

/*responsive*/
@media(max-width: 991px){
	.gallery .gallery-item{
		width: 50%;
	}
}
@media(max-width: 767px){
    .gallery .gallery-item{
		width: 100%;
	}	
	.gallery .gallery-filter .filter-item{
		margin-bottom: 10px;
	}
  .row{
    
    margin-left: -5px;
    margin-right: 5px;
    
  }
}
.footer{
  width: 100%;
}

/* gallery page-end */
