@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap');

/*gernal styling*/
a {
  text-decoration: none;

  font-size: 1rem;
}

li {
  list-style: none;
  font-family: "Playfair Display", sans-serif;
  font-size: 1rem;

}

h1 {
  font-size: 2.8rem;
  font-family: "Playfair Display", sans-serif;
font-weight: 580;
  text-align: left;
  color: rgb(117, 109, 109);
}

h2 {
  font-size: 2.2rem;
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: italic;
}
h3{
  font-size: 20px;
 font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: 500;
}

p {
    font-family: "Arvo", serif;
    font-weight: 400;
    font-style: normal;
  color: #575656;
  font-size: 20px;
}
 /* Animation keyframes */
 @keyframes bottomToTop {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

h1, h2, p {
  animation: bottomToTop 1s ease-out;
}


h1 {
  animation-delay: 0s;
}
h2 {
  animation-delay: 0.3s;
}
p {
  animation-delay: 0.6s;
} 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

nav {
  background-color: #F3EEEA;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center; /* Ensure items are vertically centered */
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: #010101;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bfff;
}

.logo img {
  width: 150px;
  height: auto;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: #010101;
  position: absolute;
  right: 20px;
}

/* Media queries for tablet and mobile */
@media (max-width: 768px) {
  nav {
      flex-direction: row; /* Keep the hamburger and logo on the same row */
      justify-content: space-between;
      height: 80px; /* Ensure the nav bar height is consistent */
  }

  .nav-links {
      position: absolute;
      top: 80px;
      right: 0;
      background-color: #F3EEEA;
      width: 100%;
      height: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      transition: height 0.3s ease;
  }

  .nav-links.active {
      height: 250px; /* Adjust the height when the menu is open */
  }

  .nav-links li {
      margin: 10px 0;
  }

  .hamburger {
      display: block;
      top: 20px;
  }

  .dropdown:hover .dropdown-content {
      display: none;
  }

  .dropdown .dropbtn:after {
      content: '\25BC';
      padding-left: 5px;
  }

  .dropdown-content {
      position: relative;
      background-color: inherit;
      box-shadow: none;
      min-width: 0;
      width: 100%;
  }

  .dropdown-content a {
      padding: 10px 0;
      text-align: center;
  }
}

.hero-section {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  animation: fadeIn 2s ease-out; /* Add animation here */
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.containt {
  margin-top: 5rem;
}

.containt h1, h2 {
  margin-left: 50px;
  text-shadow: 1px 1px #686464;
}

.containt img {
  width: 50%;
  margin-bottom: 30px;
  height: auto;
  margin-left: 30px;
}

button {
  padding: 17px 40px;
  margin-left: 60px;
  margin-top: 40px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: white;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

button:hover {
  letter-spacing: 3px;
  background-color: hsl(261deg 80% 48%);
  color: hsl(0, 0%, 100%);
  box-shadow: rgb(93 24 220) 0px 7px 29px 0px;
}

button:active {
  letter-spacing: 3px;
  background-color: hsl(261deg 80% 48%);
  color: hsl(0, 0%, 100%);
  box-shadow: rgb(93 24 220) 0px 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
}

.containt-1 {
  margin-left: 15rem;
  margin-right: 0px;
  margin-top: 5rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-section {
      flex-direction: column;
      height: auto;
      align-items: center;
  }

  .containt, .containt-1 {
      margin: 1rem;
      text-align: center;
  }

  .containt img {
      width: 50%;
      margin-left: 0;
  }

  .containt-1 {
      margin: 1rem;
  }

  button {
      margin-left: 0;
  }
}

@media (max-width: 480px) {
  .containt h1, h2 {
      margin-left: 0;
      font-size: 1.2rem;
  }

  .containt img {
      width: 50%;
  }

  button {
      padding: 12px 30px;
      font-size: 14px;
  }
}

  .containter-1 {
    width: 100%;
    height: 80vh;
  margin: 0px;
   background-image: url("image/background.webp");
   background-repeat: no-repeat;
  background-size: cover;
  animation: fadeIn 2s ease-out; /* Add animation here */
   
  }
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.scroll-in {
    opacity: 1;
    transform: translateY(0);
}
  .containter-1 h1 {
    text-align: center;
    color: black;
    margin: auto;
}

.parent {
    width: 95%;
    margin-left: 2.5%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(1, auto);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 30px;
}

.parent h1 {
    text-align: center;
    font-size: 25px;
}

.parent p {
    text-align: center;
    margin: 20px;
    font-size: 16px;
}

.div1, .div2, .div3, .div4, .div5 {
    background-color: white;
    border: 2px solid black;
    border-radius: 20px;
    border: none;
    height: 28rem;
}

.div1 img, .div2 img, .div3 img, .div4 img, .div5 img {
    width: 100%;
    height: 40%;
    border-radius: 20px 20px 0px 0px;
}

.button-34 {
    margin-left: auto;
    margin-right: auto;
    background: #5E5DF0;
    border-radius: 999px;
    box-shadow: #5E5DF0 0 10px 20px -10px;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji", EmojiSymbols, -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 8px 18px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    border: 0;
    display: block;
}

.button-34:hover {
    background-color: #f1f1f1;
}

/* Media Queries */
@media (max-width: 1024px) {
  .containter-1{
    height: 90%;
  }
    .parent {
        grid-template-columns: repeat(3, 1fr);
    }

    .div1, .div2, .div3, .div4, .div5 {
        height:auto;
    }
}

@media (max-width: 768px) {
    .parent {
        grid-template-columns: repeat(2, 1fr);
    }

    .div1, .div2, .div3, .div4, .div5 {
        height: auto;
    }
}

@media (max-width: 480px) {
    .parent {
        grid-template-columns: 1fr;
    }

    .div1, .div2, .div3, .div4, .div5 {
        height: auto;
    }

    .parent h1, .parent p {
        font-size: 14px;
    }

    .button-34 {
        padding: 6px 12px;
        font-size: 14px;
    }
}

.about-us-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-us-section.visible {
  opacity: 1;
  transform: translateY(0);
}
.containter-2 {
  width: 100%;
  min-height: 75vh;
  background-color: #fff9f9;
  padding: 20px;
  box-sizing: border-box;
}

.containter-2 h1 {
  text-align: center;
  color: black;
  margin-bottom: 20px;
}

.parents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.parent_1, .parent-2 {
  flex: 0 0 48%;
  background-color: #ffffff;
  box-sizing: border-box;
  border-radius: 30px 30px 50% 50%;
  overflow: hidden;
}

.parent_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.parent_1 img {
  max-width: 100%;
  height: auto;
}

.parent-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #9e9ef6;
  padding: 20px;
  text-align: center;
}

.parent-2 p {
  margin: 0;
}

/* Media Queries for Tablet Devices */
@media (max-width: 768px) {
  .parent_1, .parent-2 {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
  
  .parent-2 {
    margin-top: 0;
    border-radius: 10px;
  }
}

/* Media Queries for Mobile Devices */
@media (max-width: 480px) {
  .parent_1 img {
    width: 80%;
    margin-left: 0;
  }

  .parent-2 {
    padding: 10px;
    border-radius: 10px;
  }

  .parent-2 p {
    margin: 10px 0;
  }
}

.container-3 {
  width: 100%;
  height: 50vh;
  background-color: oldlace;
  opacity: 0; 
  transform: translateY(20px); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.container-3.visible {
  opacity: 1; 
  transform: translateY(0);
}

.container-3 h1 {
  text-align: center;
  color: #000000;
}

.parent_2 {
  margin-left: 6rem;
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 40px;
}

.div01 {
  grid-area: 1 / 1 / 2 / 2;
}

.div01 img {
  width: 40%;
}

.div02 {
  grid-area: 1 / 2 / 2 / 3;
}

.div02 img {
  width: 40%;
}

.div03 {
  grid-area: 1 / 3 / 2 / 4;
}

.div03 img {
  width: 40%;
}

.div04 {
  grid-area: 1 / 4 / 2 / 5;
}

.div04 img {
  width: 40%;
}

.parent_2 h3 {
  text-align: center;
  margin-right: 10.5rem;
}

/* Media Queries for Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .parent_2 {
    margin-left: 1rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .parent_2 h3 {
    margin-right: 0;
  }

  .div01 img, .div02 img, .div03 img, .div04 img {
    width: 60%;
  }
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .container-3 {
    width: 100%;
    height: auto;
    background-color: oldlace;
  }
  .parent_2 {
    margin-left: 1rem;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, auto);
    grid-column-gap: 20px;
  }

  .div01, .div02, .div03, .div04 {
    grid-area: auto;
    text-align: center;
  }

  .div01 img, .div02 img, .div03 img, .div04 img {
    width: 40%;
  }

  .parent_2 h3 {
    margin-right: 0;
    margin-top: 10px;
  }
}



.container-4 {
  width: 100%;
  height: auto;
  background-image: url("image/background.webp");
  background-repeat: no-repeat;
  background-size: cover;
  color: black;
  text-align: center;
}

.container-4 h1 {
  color: black;
  text-align: center;
}

.parent_04 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  grid-column-gap: 80px;
  grid-row-gap: 0px;
}

.div0-1 {
  grid-area: 1 / 2 / 2 / 3;
  border-radius: 60px;
  height: auto;
}

.div0-2 {
  grid-area: 1 / 3 / 2 / 4;
  height: auto;
}

.div0-3 {
  grid-area: 1 / 4 / 2 / 5;
  height: auto;
}

.div0-1 img,
.div0-2 img,
.div0-3 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  margin-top: 30px;
}







/* Media Queries for Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .container-4 {
      height: auto;
  }

  .parent_04 {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, auto);
      grid-column-gap: 0;
      grid-row-gap: 20px;
  }

  .div0-1,
  .div0-2,
  .div0-3 {
      grid-area: auto;
      text-align: center;
  }

  .div0-1 img,
  .div0-2 img,
  .div0-3 img {
      width: 80%;
      height: auto;
      margin: 0 auto;
  }
}

.div0-1,
.div0-2,
.div0-3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.div0-1.show,
.div0-2.show,
.div0-3.show {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries for Tablet (min-width: 481px and max-width: 1024px) */
@media (min-width: 481px) and (max-width: 1024px) {
  .container-4 {
    height: auto;
  }

  .parent_04 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div0-1, 
  .div0-2, 
  .div0-3 {
    grid-area: auto;
    text-align: center;
  }

  .div0-1 img,
  .div0-2 img,
  .div0-3 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
  }
}


  .counter-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
    background-color: oldlace;
    color: #2e2a2a;
  
  }
  
  .counter {
    text-align: center;
    margin: 20px;
  }
  
  .counter h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .count {
    font-size: 40px;
    font-weight: bold;
    color: #00d1b2;
    transition: all 0.3s ease-in-out;
  }
  
  @media (max-width: 768px) {
    .counter-section {
      flex-direction: column;
    }
  }



  .testimonials {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.testimonials h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.slider {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slide {
    min-width: 100%;
    transition: 0.5s;
}

.profile {
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.profile h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #555;
}

.profile p {
    font-size: 1em;
    color: #888;
    margin-bottom: 20px;
}

.profile blockquote {
    font-style: italic;
    color: #666;
}

.slider-controls {
    margin-top: 20px;
}

.slider-controls button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
}

.slider-controls button:hover {
    background-color: #555;
}


.footer {
  background-color: #222;
  color: #eee;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  
}

.footer-logo {
  max-width: 300px;

}

.footer-logo img {
  max-width: 70%;
  margin-top: 0%;
  
}

.footer-logo p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-map iframe {
  border-radius: 10px;
  margin-top: 15px;
  border: 0;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
 
  margin-bottom: 25px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact ul li span {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-contact ul li span:hover {
  color: #fff;
}

.footer-contact ul li span {
  display: inline-block;
  width: 70px;
  font-weight: bold;
}

.footer-social ul {
column-gap: 40px;
  padding: 0px;
 
}

.footer-social ul li {
  margin-right: 15px;
}

.footer-social ul li img {
  width: 35px;
  height: 35px;
 
}



.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 13px;
  color: #bbb;
}

.footer-bottom span {
  font-size: 16px;
  color: red;
}

/* Default (Desktop) */


/* Tablet View */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-logo {
      text-align: center;
      margin-bottom: 20px;
  }

  .footer-links,
  .footer-contact,
  .footer-social {
  
      text-align: center;
      margin-bottom: 20px;
      width: 100%;
  }

  .footer-social ul {
      justify-content: center;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-logo {
      text-align: center;
      margin-bottom: 15px;
  }

  .footer-links,
  .footer-contact,
  .footer-social {
      text-align: center;
      margin-bottom: 15px;
      width: 100%;
  }

  .footer-social ul {
      justify-content: center;
  }

  .footer-map iframe {
      width: 100%;
      height: 150px;
  }
}


