* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Tinos', serif;

}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

nav {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.brand {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}

.menu {
  display: flex;
  gap: 15px;
}

.menu a {
  color: #fff;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

header {
  height: 100vh;
  background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 0 20px;
}


.banner {
  position: relative;
  background-image: url('WhatsApp\ Image\ 2024-07-25\ at\ 12.34.38_8fd92888.jpg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  /* Adjust the height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  width: 50%;
  position: absolute;
  color: white;
  margin-top: 10%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  /* Adds a semi-transparent background to the text */
  padding: 20px;
  border-radius: 10px;
  animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner-text h1 {
  margin: 0;
  font-size: 2em;
  font-family: fantasy;
}

.banner-text p {

  margin: 10px 0 0;
  font-size: 1.2em;
}

main {
  padding: 20px;
}

main section {
  padding: 60px 0;
}

main section h2 {
  margin-top: -2%;
  font-size: 32px;
  width: 70%;
  text-align: center;
  margin-left: 16%;
}

.texti h3 {
  font-size: 32px;
  width: 70%;
  text-align: center;
  margin-left: 16%;
  margin-top: -2%;
  font-family: fantasy;
}

main section p {
  width: 40%;
  font-size: 1.2em;
  margin-left: 5%;
  margin-top: 3%;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background-color: black;
  }

  .menu a {
    padding: 15px;
    border-top: 1px solid black;
  }

  .hamburger {
    display: flex;
  }

  .menu.active {
    display: flex;
  }
}
.menu li{
  color: white;
}

.transparent {
  background-color: transparent;
}

.solid {
  background-color: rgba(0, 0, 0, 10);
}


.dropdown .dropbtn {
  cursor: pointer;

}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 10);
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.dropdown-content li{
  color: white;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* gallery */
.gallery {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.gallery-item {
  margin-left: 52%;
  width: 45%; 
  margin-top: -30%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .gallery-item {
    width: 250px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: 100%;
  }
}

/* parallex */
#box-1 {
  height: 100vh;
  width: 100%;
  background-image: url('pre.jpg');
  background-size: cover;
  display: table;
  background-attachment: fixed;
}

#box-1 h1 {
  color: white;
  font-family: Arial;
  font-weight: bold;
  text-align: center;
  margin: 0;
  font-size: 40px;
  display: table-cell;
  vertical-align: middle;
}

#box-2 h2 {
  margin-top: 5%;
  text-align: center;
  font-family: fantasy;
}

#box-2 p {
  width: 40%;
  font-size: 1.2em;
  margin-left: 32%;
  margin-top: 3%;
}

/* b/w */
.container {
  position: relative;
  width: 80%;
  max-width: 600px;

}

.conti {
  display: grid;
  grid-template-columns: auto auto auto;
}

.image {
  display: block;
  width: 110%;
  height: 60vh;
  transition: filter 0.5s ease;
  margin-left: 1%;
  margin-top: 6%;
}

.container:hover .image {
  filter: grayscale(100%);
}

.text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.container:hover .text {
  opacity: 1;
}

/* normal text */
#box-3 h2 {
  margin-top: 5%;
  margin-left: 25%;
  font-family: fantasy;
}

#box-3 p {
  width: 50%;
  font-size: 1.2em;
  margin-left: 30%;
  margin-top: 3%;
}

/* box text */
.card-title {
  text-align: center;
 
}

.col-md-3 {
  margin-left: 7%;
  padding-top: 5%;
}
.card-body{
  width: 100%;
 
}


/* 2nd parallex */
#box-4 {
  height: 120vh;
  width: 100%;
  background-image: url('bride.jpg');
  background-size: cover;
  display: table;
  background-attachment: fixed;
}

#box-4 h1 {
  color: white;
  font-family: Arial;
  font-weight: bold;
  text-align: center;
  margin: 0;
  font-size: 40px;
  display: table-cell;
  vertical-align: middle;
}

/* text */
.text2 h2 {
  text-align: center;
  margin-top: 3%;
}

.text2 p {
  font-size: 1.2em;
  width: 50%;
  margin-left: 29%;
  margin-top: 3%;
}


/* info card */
.container {
  display: grid;
  grid-template-columns: auto auto;
  /* flex-wrap: wrap; */
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  max-width: 300px;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card .icon {
  margin-bottom: 15px;
}

.card .icon img {
  width: 50px;
  height: 50px;
}

.card h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
}

.card p {
  font-size: 1em;
  color: #666;
}

@media (max-width: 600px) {
  .card {
    max-width: 100%;
  }
}


/* 3rd parallex */
#box-5{
  height:120vh;
  width:100%;
  background-image:url('m.jpg');
  background-size:cover;
  display:table;
    background-attachment:fixed;
}
#box-5 h1{
  color: white;
  font-family: Arial;
  font-weight: bold;
  text-align:center;
  margin:0;
  font-size:40px;
  display:table-cell;
  vertical-align:middle;
}




/* info card2 */
.container {
  display: grid;
  grid-template-columns: auto auto;
  /* flex-wrap: wrap; */
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.card2 {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.card2 h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
}

.card2 p {
  font-size: 1em;
  color: #666;
}

@media (max-width: 600px) {
  .card2 {
    max-width: 100%;
  }
}


/* for card 3 */
.card3 {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-left: 53%;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}



.card3 h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  color: #333;
}

.card3 p {
  font-size: 1em;
  color: #666;
}

@media (max-width: 600px) {
  .card3 {
    max-width: 100%;
  }
}


/* blog */
.container {
  max-width: 1200px;
  margin: 0 auto;
  flex: 1;
}

.blog-row {
 display: grid;
 grid-template-columns: auto auto auto;
  gap: 20px;
  margin-bottom: 20px;
}

.blog {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  flex: 1 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.blog-image img:hover {
  transform: scale(1.05);
}

.blog-image .date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}



.blog-content p {
  flex-grow: 1;
  color: black;
  margin-bottom: 20px;
}

.blog-content a {
  align-self: flex-start;
  background-color: lightcoral;
  color: black;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.blog-content a:hover {
  background-color: lightsalmon;
}




/* footer */

.footer {
  background-color: white;
  color: black;
  padding: 20px 0;
  text-align: left;
  border-top: 1px solid grey;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-section {
  flex: 1;
  margin: 10px;
  min-width: 250px;
}

.footer-section h2 {
  margin-left: 13%;
  font-size: 1.5em;
  margin-bottom: 14px;
}

.footer-section p {
  margin-bottom: 20px;
}

.footer-section form input {
  background-color: lightgray;
  border: none;
  color:black;
  margin-bottom: 10px;
  padding: 10px;
  width: 100%;
  border-radius: 20px;
}

.footer-section ul {
  list-style: none;
  margin-left: 5%;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: black;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
  }

  .footer-section {
      margin: 10px 0;
  }
}



