* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    /* background-color: rgba(245, 245, 245, 0.741); */
    /* overflow-x: hidden; */
    
}


/* navigation */
.navbar {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 20px;
    transition: all 0.3s;
    /* position: sticky;
    top: 0;
    z-index: 1000; */
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #c79a63 !important;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c79a63;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: #c79a63 !important;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.nav-icon-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin-left: 20px;
    transition: color 0.3s, transform 0.3s;
}

.nav-icon-link:hover {
    color: #c79a63;
}

.nav-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}
















.container {
  text-align: center;
  margin-top: 10%;
  
 
}

.image-container {
  margin-top: 20px;
}

.perfume-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: filter 0.3s ease-in-out;
  filter: grayscale(100%);
}

.perfume-image:hover {
  filter: grayscale(0%);
}

.about-section {
  max-width: 1200px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  padding: 0 20px;
}

@media (max-width: 768px) {
  .about-section {
      font-size: 16px;
      padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-section {
      font-size: 14px;
      padding: 0 5px;
  }
}



/* timeline */
.about-heading {
  font-family: 'Pacifico';
  font-size: 40px;
  margin: 40px 0 20px;
  color: #c79a63;
  padding-top: 5%;
  text-decoration: underline;
}
.timeline {
  position: relative;
  margin: 50px auto;
  padding: 40px 0;
  width: 100%;
  max-width: 1000px;
}

.timeline:before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #c5c5c5;
}

.timeline ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline ul li {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.content {
  padding-bottom: 20px;
}

.timeline ul li:nth-child(odd):before,
.timeline ul li:nth-child(even):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 24px;
  background: orange;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(233,33,99,0.2);
}

.timeline ul li:nth-child(odd):before {
  right: -6px;
}

.timeline ul li:nth-child(even):before {
  left: -6px;
}

.timeline ul li h3 {
  margin: 0;
  color: #c79a63;
  font-weight: 600;
}

.timeline ul li p {
  margin: 10px 0 0;
}

.timeline ul li .time h4 {
  margin: 0;
  font-size: 14px;
}

.timeline ul li:nth-child(odd) .time,
.timeline ul li:nth-child(even) .time {
  position: absolute;
  top: 12px;
  margin: 0;
  padding: 8px 16px;
  background: #c79a63;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 0 3px rgba(233,33,99,0.3);
}

.timeline ul li:nth-child(odd) .time {
  right: -165px;
}

.timeline ul li:nth-child(even) .time {
  left: -165px;
}

@media (max-width: 1000px) {
  .timeline {
      width: 100%;
  }
}

@media (max-width: 767px) {
  .timeline {
      width: 100%;
      padding-bottom: 0;
  }

  .timeline:before {
      left: 20px;
      height: 100%;
  }

  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
      width: 100%;
      text-align: left;
      padding-left: 50px;
      padding-bottom: 50px;
  }

  .timeline ul li:nth-child(odd):before,
  .timeline ul li:nth-child(even):before {
      top: -18px;
      left: 16px;
  }

  .timeline ul li:nth-child(odd) .time,
  .timeline ul li:nth-child(even) .time {
      top: -30px;
      left: 50px;
      right: inherit;
  }
}
.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto; 
  /* margin-left: 20%; */
}

/* Ensure image doesn’t overflow in small screens */
@media (max-width: 768px) {
  .responsive-img {
      margin-left: 0;
  }
}














/* about us  */
.texttcont {
  width: 90%;
  margin: auto;
  padding: 20px;
}

.textt-about h1,h2 {
  color: #c79a63;
  margin-bottom: 15px;
}

h1 {
  font-size: 36px;
  margin-top: 20px;
  text-align: center;
}

h2 {
  font-size: 28px;
}

.textt-about, .textt-mission, .textt-vision, .textt-promise {
  margin-bottom: 30px;
}

.textt-about p, .textt-mission p, .textt-vision p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.textt-promise ul {
  list-style-type: none;
  padding: 0;
}

.textt-promise li {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
}

.textt-promise strong {
  color: #2d2010;
}

@media (max-width: 768px) {
  h1 {
      font-size: 28px;
  }

  h2 {
      font-size: 24px;
  }

  .textt-about p, .textt-mission p, .textt-vision p, .textt-promise li {
      font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 24px;
  }

  h2 {
      font-size: 20px;
  }

  .textt-about p, .textt-mission p, .textt-vision p, .textt-promise li {
      font-size: 14px;
  }
}





/* reels */

.textt-reels {
  text-align: center;
  margin: 40px 0;
}

.textt-reels h2 {
  font-size: 28px;
  color: #c79a63;
  margin-bottom: 20px;
}

.reels-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.reel-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4; /* Optional background */
}

video {
  width: 100%;
  height: auto;
  border: none; /* Optional styling */
}

@media (max-width: 768px) {
  .textt-reels h2 {
      font-size: 24px;
  }
}

@media (max-width: 480px) {
  .textt-reels h2 {
      font-size: 20px;
  }

  .reels-container {
      grid-template-columns: 1fr;
  }
}













/* footer */
.footer {
  background-color: #f3f3f3;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer .column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}
.footer h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.footer .social {
  display: flex;
  align-items: center;
}
.footer .social a {
  margin-right: 10px;
  font-size: 22px;
  color: #000;
}
.footer .contact-info {
  font-size: 12px;
}
.footer .contact-info a {
  text-decoration: none;
  color: #000;
}
.footer .contact-info .timing {
  margin-top: 10px;
}
.footer .copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #999;
  width: 100%;
}