/* =======================
   HERO SECTION
======================= */
.hero-section {
  padding: 40px 0;
}

.hero-title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.2;
}

.hero-title span {
  color: #2c3ef0;
}

.hero-text {
  margin: 20px 0 30px;
  font-size: 16px;
  max-width: 520px;
}

.hero-btn {
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
}

/* =======================
   IMAGE
======================= */
.image-wrapper {
  position: relative;
  max-width: 480px;
  margin-left: auto;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =======================
   STAT CARD
======================= */
.stat-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #eef1f7;
  padding: 14px 16px;
  border-radius: 14px;
  max-width: 240px;
}

.stat-title {
  font-size: 13px;
  margin-bottom: 8px;
}

.stat-footer {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 700;
  font-size: 16px;
}

.stat-text {
  font-size: 12px;
  color: #6b7280;
}

/* =======================
   FEATURES
======================= */
.feature-row {
  margin-top: 80px;
}

.feature-box {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 16px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 14px;
  color: #4b5563;
}

.feature-box.highlight {
  background: #f0fddb;
}

/* Hover Effect */
.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.feature-box.highlight:hover {
  background-color: #e6fbd1;
}

/* =======================
   RESPONSIVE FIXES ONLY
======================= */

/* Tablet */
@media (max-width: 992px) {
  .image-wrapper {
    max-width: 380px;
    margin: 0 auto;
  }

  .feature-row {
    margin-top: 60px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .stat-card {
    position: static;
    margin-top: 16px;
  }

  .feature-row {
    margin-top: 48px;
  }
}

@media (max-width: 576px) {
  .image-wrapper {
    max-width: 300px;
  }

  .feature-box {
    margin-bottom: 20px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .btn {
    display: inline-block;
  }
}



/* Building Trust */
.trust-section {
  padding: 80px 0;
}

.trust-title {
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
  font-size: 32px;
}

.trust-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.trust-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* property section */
.property-section {
  padding: 40px;
}

.section-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 600;
  margin-bottom: 20px;
}

.section-text {
  line-height: 1.7;
  color: #666;
}


/* Cards */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Fixed Icon Box */
.icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #e9f7df;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 20px;
  color: #4CAF50;
}

.icon-box img {
  width: 30px;
}

.service-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Mobile Center Alignment */
@media (max-width: 991px) {
  .text-mobile-center {
    text-align: center;
  }

  .tick-list li {
    justify-content: center;
  }
}



/* amc section */


.amc-section {
  padding: 40px ;
}

.amc-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.amc-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.amc-description {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #666;
  line-height: 1.7;
}

/* AMC Cards */
.amc-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px 25px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.amc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.amc-card h4 {
  font-weight: 500;
  margin-bottom: 15px;
}

.amc-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Bullet List */
.amc-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.amc-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.amc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a86b3c;
  font-size: 20px;
  line-height: 1;
}

/* Button */
.btn-amc {
  background-color: #2e3cff;
  color: #fff;
  padding: 10px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.btn-amc:hover {
  background-color: #1f2ce6;
  color: #fff;
}

/* Mobile Center Alignment */
@media (max-width: 991px) {
  .text-mobile-center {
    text-align: center;
  }

  .amc-list li {
    padding-left: 0;
  }

  .amc-list li::before {
    position: static;
    margin-right: 6px;
  }
}


.amc-list {
  list-style: none;
  padding: 0;
  margin: 25px auto 35px;
  max-width: 260px;
  /* keeps bullets aligned like image */
  text-align: left;
  /* FORCE LEFT ALIGN */
}

.amc-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555;
}

.amc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a86b3c;
  font-size: 20px;
  line-height: 1;
}

/* contact section */


.contact-section {
  padding: 80px 0;
}

.contact-subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.contact-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-text {
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Form */
.form-card {
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #eee;
  height: 100%;
}

.form-title {
  font-weight: 600;
  margin-bottom: 25px;
}

.form-control,
.form-select,
textarea {
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.form-control::placeholder,
textarea::placeholder {
  color: #bbb;
}

.btn-submit {
  background-color: #2f3cff;
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  border: none;
}

.btn-submit:hover {
  background-color: #1f2ce6;
  color: #fff;
}

/* Mobile center */
@media (max-width: 991px) {
  .text-mobile-center {
    text-align: center;
  }

  .btn-submit {
    display: block;
    margin: 0 auto;
  }
}
.contact-section {
  padding: 60px 0;
}

/* LEFT IMAGE SIZE CONTROL */
.contact-image img {
  width: 100%;
  max-height: 280px;      /* 🔥 Reduce image size */
  object-fit: cover;
  border-radius: 12px;
}

/* FLEX ALIGNMENT */
.contact-row {
  display: flex;
  align-items: stretch;
}

/* FORM CARD HEIGHT */
.form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* FORM SPACING */
.form-card form {
  flex-grow: 1;
}

/* REDUCE GAP BETWEEN COLUMNS */
@media (min-width: 992px) {
  .contact-gap {
    gap: 30px; /* 🔥 reduced gap */
  }
}

/* MOBILE */
@media (max-width: 991px) {
  .contact-row {
    flex-direction: column;
  }
}

.form-card {
  background: #ffffff;
  border: 1.5px solid #e3e8ef;   /* ✅ Stroke */
  border-radius: 16px;
  padding: 32px;
  height: 100%;

  /* subtle highlight */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* Optional hover highlight */
.form-card:hover {
  border-color: #1e6fff;
  box-shadow: 0 12px 36px rgba(30, 111, 255, 0.12);
}

/* Form title spacing */
.form-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Input stroke consistency */
.form-control,
.form-select {
  border: 1px solid #d7dde5;
  border-radius: 10px;
  padding: 12px 14px;
}

/* Input focus highlight */
.form-control:focus,
.form-select:focus {
  border-color: #1e6fff;
  box-shadow: 0 0 0 2px rgba(30, 111, 255, 0.15);
}

/* Submit button */
.btn-submit {
  background: #1e6fff;
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
}
/* video */
.brand-video-section {
  background: #f8f9fa;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Play Button Circle */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}
.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Blue Triangle */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 24px solid #2f5bff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn span {
    border-left: 18px solid #2f5bff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}



/* Make video taller */
.video-container video {
  width: 100%;
  height: 500px;
  /* 👈 Increase height */
  object-fit: cover;
  /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
  .video-container video {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .video-container video {
    height: 260px;
  }
}
.video-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;       /* Force 1 line */
  overflow: hidden;
  text-overflow: ellipsis;   /* Add ... if too long */
  max-width: 90%;
}
@media (max-width: 768px) {
  .video-caption {
    font-size: 13px;      /* Smaller font */
    padding: 6px 12px;    /* Less padding */
    bottom: 10px;         /* Slightly closer */
  }
}


.video-container {
  position: relative;
  overflow: hidden;
}

.video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-toggle:hover {
  background: rgba(0,0,0,0.9);
}


/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}

/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

  .end-page h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .end-page p {
    font-size: 14px !important;
    margin-top: 8px;
  }

  .end-page .btn,
  .end-page button {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 6px;
  }

  .end-page {
    padding: 15px 10px !important;
    text-align: center;
  }
}