.celebi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  text-align: center;
  gap: 10px;
}
.celebi img {
  width: 250px;
}
.celebi img:nth-child(4) {
  transform: rotateX(180deg);
}
.tvs {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tvs img {
  width: 800px;
}
.tvs .img-one {
  position: absolute;
  width: 200px;
  top: 10px;
  left: 10px;
}
.jhalar .stand {
  display: flex;
  justify-content: center;
}
.jhalar .last {
  width: 200px;
}

.cds {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
  width: 100%;
}
.cds img {
  width: 500px;
}
.cds .pehla {
  position: absolute;
  top: 20px;
  left: 0;
  width: 300px;
}

.menu-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.menu-inner img {
  width: 150px;
}
.menu-inner-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-inner-2 img {
  width: 200px;
}
.menu-inner-2 img:nth-child(3) {
  transform: rotateX(180deg);
}
.menu-card img {
  width: 100%;
}

.contact-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contact-title img {
  width: 100px;
}
.contact-title img:nth-child(3) {
  transform: rotateY(180deg);
}
.contact-us {
  padding: 40px;
  display: flex;
  justify-content: space-around;
  gap: 40px;
  font-size: 30px;
  align-items: top;
}

.contact-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.side-img {
  width: 90px;
  opacity: 0.7;
}

/* Card Style */
.form-card {
  padding: 30px 25px;
  width: 100%;
  max-width: 480px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-card h3 {
  font-size: 30px;
  margin: 0;
  text-align: center;
}

.form-card p {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.form-group textarea {
  resize: none;
  height: 90px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(134, 66, 2, 0.15);
}

.form-card button {
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
}

.form-card button:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form {
    flex-direction: column;
    gap: 20px;
  }

  .side-img {
    display: none;
  }
}

.loco-img {
  padding: 0 100px;
}
.loco-last {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  margin: 10px;
}
.loco-last img {
  width: 100px;
  height: 100%;
}
.loco-details {
  border: 1px solid var(--primary-color);
  padding: 10px;
  margin: 10px;
}

/* ===============================
   GLOBAL SAFETY
================================ */
img {
  max-width: 100%;
  height: auto;
}

/* ===============================
   CELEBRITY SECTION
================================ */
@media (max-width: 992px) {
  .celebi {
    padding: 30px 20px;
  }

  .celebi img {
    width: 180px;
  }

  .celebi h2 {
    font-size: 28px;
  }

  .celebi p {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .celebi img {
    width: 140px;
  }

  .celebi h2 {
    font-size: 24px;
  }

  .celebi p {
    font-size: 16px;
  }
}

/* ===============================
   TV / MEDIA BANNER
================================ */
@media (max-width: 992px) {
  .tvs img {
    width: 90%;
  }

  .tvs .img-one {
    width: 120px;
    top: 0;
    left: 0;
  }
}

@media (max-width: 576px) {
  .tvs {
    padding: 20px 0;
  }

  .tvs .img-one {
    width: 90px;
  }
}

/* ===============================
   JHALAR DECORATION
================================ */
@media (max-width: 768px) {
  .jhalar img {
    width: 90%;
    margin: auto;
    display: block;
  }

  .jhalar .stand {
    gap: 10px;
  }

  .jhalar .stand img {
    width: 70px;
  }

  .jhalar .last {
    width: 120px;
    margin: auto;
    display: block;
  }
}

/* ===============================
   CDS SECTION
================================ */
@media (max-width: 992px) {
  .cds img {
    width: 80%;
  }

  .cds .pehla {
    width: 180px;
    top: 0;
  }
}

@media (max-width: 576px) {
  .cds {
    padding: 20px 0;
  }
  .cds .pehla {
    display: none;
  }
}

/* ===============================
   MENU INNER
================================ */
@media (max-width: 768px) {
  .menu-inner {
    /*flex-direction: column;*/
    /*gap: 20px;*/
  }

  .menu-inner img {
    width: 80px;
  }
}

@media (max-width: 576px) {
  .menu-inner-2 img {
    width: 150px;
  }
}

/* ===============================
   CONTACT TITLE
================================ */
@media (max-width: 576px) {
  .contact-title img {
    width: 70px;
  }

  .contact-title h2 {
    font-size: 26px;
  }
}

/* ===============================
   CONTACT DETAILS
================================ */
@media (max-width: 992px) {
  .contact-us {
    flex-direction: column;
    text-align: center;
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .contact-us {
    font-size: 18px;
    padding: 20px;
  }
}

/* ===============================
   CONTACT FORM
================================ */
@media (max-width: 768px) {
  .contact-form {
    flex-direction: column;
    padding: 20px;
  }

  .side-img {
    display: none;
  }

  .form-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .form-card h3 {
    font-size: 22px;
  }

  .form-card p {
    font-size: 13px;
  }
}

/* ===============================
   LOCO SECTION
================================ */
@media (max-width: 992px) {
  .loco-img {
    padding: 0 30px;
  }

  .loco-last {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .loco-last img {
    width: 40px;
  }

  .loco-details {
    font-size: 15px;
  }
}

.award-section {
  /* background: #d9a84f; */
  background-image: url("./assets/imgs/elements/about/pattern.png");
  padding: 80px 40px;
}

.award-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */

.award-left h2 {
  font-size: 48px;
  color: #7a2c1c;
  font-weight: 700;
}

.award-left h3 {
  font-size: 36px;
  margin-top: 10px;
  color: #7a2c1c;
}

.award-left h4 {
  font-size: 22px;
  margin: 20px 0;
  color: #6b2a18;
  font-style: italic;
}

.award-left p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #4b2a17;
  text-align: justify;
}

.award-left .highlight {
  font-weight: bold;
  font-size: 20px;
  color: #7a2c1c;
}

/* RIGHT IMAGES */

.award-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.award-right img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .award-container {
    grid-template-columns: 1fr;
  }

  .award-left h2 {
    font-size: 36px;
  }
}
