* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.Cormorant-Garamond-font {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
  font-weight: 600;
}

.text-white {
    color: white;
  background-color: white;
  width: 100%;
  margin: 20px 10px;
  opacity: 0.3;
}

.Josefin-Sans-font {
  font-family: "Josefin Sans", sans-serif;
}
.common-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 3px;
  font-size: 60px;
  font-weight: 600;
}

/* common arrow icon */
.arrow-title {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.arrow-title-text {
  font-size: 25px !important;
}

@media (max-width: 768px) {
  .arrow-title {
    gap: 10px;
    align-items: center !important;
  }
  .arrow-image {
    width: 30%;
    height: auto;
margin-bottom: 12px;
  }
  .arrow-title-text {
    font-size: 14px !important;
  }
}

/* about us landing */
/* section 1 landing */
/* Add this CSS */

.custom-wrapper {
  background: url(../assets/images/contact-header.png) no-repeat center center /
    cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 20px 0;
}

.custom-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 25px;
}

.custom-logo {
  width: 100px;
}

.custom-nav {
  display: flex;
  gap: 60px;
  align-items: center;
}

.contact-us {
  font-weight: 500;
  cursor: pointer;
}

.home {
  font-weight: 200;
  opacity: 0.7;
  cursor: pointer;
}

.custom-nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}

.contact-us-button {
  padding: 10px 10px;
  border: 1px solid #fff;
}

.mobile-menu-icon {
  display: none;
}

.custom-hero-content {
  padding: 20px;
  margin-left: 80px;
	margin-top: 80px;
}

.custom-title {
  font-size: 48px;
  margin: 0;
}

.custom-breadcrumb {
  font-size: 16px;
  margin-top: 20px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .custom-header {
    justify-content: space-between;
  }

  .custom-hero-content {
    padding: 20px;
    margin-left: 20px;
    margin-top: 80px;
  }

  .common-title {
    letter-spacing: 2px;
    font-size: 40px;
  }

  .custom-nav {
    display: none;
    flex-direction: column;
    gap: 42px;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100px;
    right: 20px;
    padding: 20px;
z-index: 999;
  }

.custom-wrapper {
  background: url(../assets/images/contact-header.png) no-repeat center center /
    cover;
  height: 45vh;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 20px 0;
}

  .mobile-menu-icon {
    display: block;
    cursor: pointer;
  }

  .custom-title {
    font-size: 32px;
  }
}

.menu-icon {
  width: 30px;
  height: 2px;
  background: white;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  width: 30px;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -8px;
}

.menu-icon::after {
  top: 8px;
}

/* about info css */
.about-info {
  background-color: #ffeed0;
  padding: 40px 20px;
  color: #170809;
  text-align: center;
  position: relative;
}

.about-info::before {
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/images/Isolation_Mode.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.about-info-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
}
.about-info-content {
  font-size: 18px;
  padding: 10px 100px;
  margin-top: 20px;
}
.explore-more-btn {
  padding: 10px 20px;
  border: 1px solid #170809;
  background-color: #ffeed0;
  margin-top: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .about-info-content {
    font-size: 18px;
    padding: 10px 20px;
    margin-top: 20px;
  }
}

/* section 3  */

.accordion-container-main {
  background-color: #170809;
}
.accordion-container {
  width: 80%;
  padding: 20px;
  margin: auto;
  border-radius: 8px;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 4px;
}

.accordion-title {
  width: 100%;
  padding: 10px;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #170809;
  font-size: 35px;
  color: #efe6d6;
}

.accordion-title::after {
  content: "\25bc";
  font-size: 12px;
  float: right;
  border: 1px solid #efe6d6;
  padding: 10px;
}
.according-title-line {
  width: 100%;
  opacity: 0.4;
  margin: 10px 0;
}

.accordion-title.active::after {
  content: "\25b2";
  border: 1px solid #efe6d6;
  padding: 10px;
}

.accordion-content {
  display: block; /* All accordions open by default for web view */
  padding: 10px;
  color: #efe6d6;
  word-spacing: 1px;
}

.accordion-content p {
  margin: 0;
  font-size: 16px;
}

@media (max-width: 768px) {
  .accordion-title {
    font-size: 18px;
  }
  .accordion-title::after {
    padding: 5px;
  }

  .accordion-title.active::after {
    padding: 5px;
  }
  .accordion-content {
    display: none; /* All accordions closed by default for mobile view */
  }

  .accordion-title.active + .accordion-content {
    display: block;
  }
}

/* section about-images */

.container {
  padding: 20px;
  background-color: #f8f0e3;
}

.header {
  text-align: center;
  margin: 30px;
}

.main-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
}

.image-box {
  text-align: center;
}

.image {
  width: 100%;
  height: auto;
}

.image-box p {
  margin: 10px 0 0;
  font-size: 18px;
}

@media (min-width: 768px) {
  .main-content {
    grid-template-columns: repeat(4, 1fr);
  }
  .header {
    margin: 15px;
  }
}

/* footer section */
/* footer section  */
.custom-footer-bg {
  background: url("../assets/images/footer-home.png") no-repeat center center
    fixed;
  background-size: cover;
  color: white;
  padding: 40px;
}

.custom-footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.custom-header .custom-logo {
  width: 120px;
  margin-bottom: 35px;
}

.footer-custom-logo {
	width: 130px !important;
}

.custom-main-content .custom-description {
  max-width: 546px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.custom-social-media .custom-social-link img {
  width: 40px;
  margin: 20px 10px;
}

.custom-footer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 86px;
}

.custom-footer .custom-nav-footer {
  margin-bottom: 10px;
}

.custom-footer .custom-nav-link {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 768px) {
  .custom-main-content .custom-description {
    max-width: 100%;
    text-align: center;
    padding: 0 15px;
  }
  .custom-header .custom-logo {
    width: 80px;
    margin-bottom: 15px;
  }

  .custom-social-media .custom-social-link img {
    width: 30px;
    margin: 20px 5px;
  }
  .custom-nav-footer {
    display: flex;
    flex-direction: column;
  }
  .custom-footer {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .custom-footer .custom-nav-link {
    margin: 20px 10px;
  }

   .image-box p {
        margin: 10px 0 0;
        font-size: 10px;
    }
}
