body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: white;
}

/* HEADER */
.main-header
{
  background: black;
  height: 80px;
  padding: 0 0px; /* moves logo more to the left */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.logo
{
  height: 200px; /* keep this much smaller than 190px */
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.logo:hover 
{
  transform: scale(1.04);
  opacity: 0.95;
}
/* FULL IMAGE */
.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* DESIGNS */
.designs {
  text-align: center;
  padding: 50px;
}

/* SLIDER */
.full-slider {
  position: relative;
  width: 100%;
  height: 650px;   /* was 500px */
  overflow: hidden;
  background: #000;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.slide::-webkit-media-controls {
  display: none !important;
}
.slide {
  object-fit: cover;
  pointer-events: none; /* prevents clicks */
}
.prev { left: 20px; }
.next { right: 20px; }
.contact-banner {
  background: black;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-banner h2 {
  font-size: 40px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

/* CONTACT BOX */
.contact-box {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* EACH ITEM */
.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  width: 250px;
  transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.contact-item:hover {
  background: gold;
  color: black;
  transform: translateY(-10px);
}

/* TEXT */
.contact-item h3 {
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 18px;
}
.contact-item:hover {
  background: gold;
  color: black;
  transform: translateY(-10px);
  box-shadow: 0 0 20px gold;
}
.about-premium {
  background: #000;
  color: #fff;
  padding: 90px 24px;
}

.about-top-text {
  text-align: center;
  margin-bottom: 45px;
}

.about-top-text p {
  font-size: 14px;
  color: #d4d4d4;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.about-top-text h2 {
  font-size: 34px;
  margin: 0;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid #d4af37;
  color: #fff;
}

.about-top-text h2 span {
  margin-left: 8px;
  color: #d4af37;
}

.about-layout.single-column {
  max-width: 1000px;
  margin: auto;
}

.about-right.full-width {
  width: 100%;
}

/* Accordion */
.accordion-item {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.08);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.accordion-content {
  display: none;
  padding: 0 22px 22px 22px;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #d7d7d7;
  margin: 0;
}

.icon {
  font-size: 26px;
  color: #d4af37;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 24px;
  margin-top: 34px;
}

.stat-box {
  text-align: center;
  padding: 26px 18px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(212,175,55,0.08));
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.22);
}

.stat-box h3 {
  font-size: 48px;
  margin: 0 0 10px;
  font-weight: 700;
  color: #d4af37;
}

.stat-box p {
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #f2f2f2;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .accordion-header {
    font-size: 20px;
    padding: 18px;
  }

  .stat-box h3 {
    font-size: 38px;
  }

  .about-top-text h2 {
    font-size: 28px;
  }
}
.partners-section {
  background: #f7f7f7;
  padding: 80px 0;
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.partners-header p {
  margin: 0 0 10px;
  font-size: 15px;
  color: #555;
}

.partners-header h2 {
  margin: 0;
  font-size: 38px;
  color: #111;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  width: max-content;
  gap: 24px;
  align-items: center;
  animation: partnerScroll 30s linear infinite;
}

/* 🔥 BIGGER CARDS */
.partner-card {
  width: 260px;
  height: 170px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* 🔥 FULL SIZE LOGOS */
.partner-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease;
}

/* 🔥 HOVER EFFECT */
.partner-card:hover img {
  transform: scale(1.1);
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes partnerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partners-header h2 {
    font-size: 30px;
  }

  .partner-card {
    width: 200px;
    height: 140px;
  }
}
.directors-message {
  background: linear-gradient(135deg, #0a0a0a, #161616, #0f0f0f);
  color: #fff;
  padding: 90px 20px;
}

.directors-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.directors-text {
  padding-right: 10px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 14px;
  font-weight: 700;
}

.directors-text h2 {
  font-size: 42px;
  margin: 0 0 22px;
  color: #fff;
  line-height: 1.2;
}

.directors-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #f3f3f3;
  margin-bottom: 18px;
}

.directors-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #d7d7d7;
  margin-bottom: 16px;
}

.directors-signatures {
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.director-info h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #d4af37;
}

.director-info span {
  font-size: 14px;
  color: #d0d0d0;
  letter-spacing: 0.5px;
}

.directors-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.director-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 🔥 CIRCULAR IMAGE */
.director-card img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d4af37;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.director-card img:hover {
  transform: scale(1.08);
}

/* TEXT BELOW IMAGE */
.director-overlay {
  position: static;
  background: none;
  text-align: center;
  margin-top: 15px;
}

.director-overlay h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.director-overlay p {
  margin: 5px 0 0;
  color: #d4af37;
  font-size: 14px;
}

@media (max-width: 992px) {
  .directors-container {
    grid-template-columns: 1fr;
  }

  .directors-text {
    padding-right: 0;
  }

  .directors-images {
    grid-template-columns: 1fr 1fr;
  }

  .director-card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .directors-message {
    padding: 70px 18px;
  }

  .directors-text h2 {
    font-size: 32px;
  }

  .directors-intro,
  .directors-text p {
    font-size: 15px;
  }

  .directors-images {
    grid-template-columns: 1fr;
  }

  .director-card {
    min-height: 420px;
  }

  .directors-signatures {
    flex-direction: column;
    gap: 18px;
  }
}
.coohom-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}
