/* Standalone Landing Page Styles */

/* Global Responsive Fixes */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.container {
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding: 40px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 46, 135, 0.8) 0%, rgba(0, 39, 114, 0.9) 100%);
  z-index: -1;
}

.hero-content {
  color: white;
  width: 100%;
}

.hero-logo .logo-img {
  width: 150px;
  height: auto;
  max-width: 100%;
  margin-bottom: 15px;
}

.hero-title {
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 10px;
  font-size: 42px !important;
}

.text-yellow {
  color: var(--theme-yellow) !important;
}

.hero-subtitle {
  margin-bottom: 15px;
  font-size: 18px !important;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-item i {
  font-size: 16px;
  flex-shrink: 0;
}

.feature-item span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 14px;
}

/* Hero Stats - Fixed Visibility */
.hero-stats {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  overflow-x: auto;
  padding-bottom: 10px;
}

.stat-item {
  text-align: center;
  min-width: 90px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 10px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.stat-number {
  line-height: 1;
  margin-bottom: 2px;
  word-wrap: break-word;
  font-size: 28px !important;
  font-weight: 700;
  color: var(--theme-yellow);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 12px !important;
  color: white;
  font-weight: 400;
  line-height: 1.2;
}

/* Hero Banner Video */
.hero-banner-video {
  position: relative;
  z-index: 2;
  width: 100%;
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.hero-video {
  width: 100%;
  border-radius: 12px;
  transition: all 0.3s ease;
  /* Hide video controls */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.video-play-overlay:hover {
  background: rgba(0, 0, 0, 0.7);
}

.play-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-button i {
  font-size: 24px;
  color: var(--theme-blue);
  margin-left: 4px; /* Slight offset for play icon */
}

.video-play-overlay:hover .play-button {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.play-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Pause Overlay Styles */
.pause-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  opacity: 1;
}

.pause-overlay:hover {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}

.pause-button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pause-button i {
  font-size: 24px;
  color: var(--theme-blue);
}

.pause-overlay:hover .pause-button {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.pause-text {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Video Controls Container */
.video-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Volume Controls */
.volume-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.volume-btn {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.volume-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.volume-slider-container {
  width: 80px;
}

.volume-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-video:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Hero Form */
.hero-form-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-form-box {
  background: white;
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.form-title {
  color: var(--theme-dark);
  word-wrap: break-word;
  font-size: 22px !important;
  margin-bottom: 6px;
}

.form-subtitle {
  color: var(--text-light);
  word-wrap: break-word;
  font-size: 14px !important;
  margin-bottom: 15px;
}

.hero-contact-form {
  width: 100%;
}

.hero-contact-form .row {
  --bs-gutter-x: 0.8rem;
}

.hero-contact-form .form-field {
  margin-bottom: 12px;
  width: 100%;
}

.hero-contact-form .form-label {
  margin-bottom: 4px;
  display: block;
  color: var(--text-color);
  word-wrap: break-word;
  font-size: 13px !important;
  font-weight: 600;
}

.hero-contact-form .input-field,
.hero-contact-form .select-field {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--text-color);
  font-size: 13px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-contact-form .input-field::placeholder {
  color: #6c757d;
  font-size: 12px;
}

.hero-contact-form .input-field:focus,
.hero-contact-form .select-field:focus {
  background: white;
  border-color: var(--theme-yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 202, 65, 0.1);
}

.submit-form-btn {
  margin-top: 5px;
}

.submit-form-btn .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.hero-contact-form .checkbox-label {
  color: var(--text-color) !important;
  font-size: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.hero-contact-form .checkbox-label a {
  color: var(--theme-blue);
  text-decoration: none;
}

.hero-contact-form .checkbox-label a:hover {
  text-decoration: underline;
}

/* Why SuperKirana Section */
.why-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: var(--theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--theme-yellow);
  transform: scale(1.1);
}

.why-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.why-card:hover .why-icon img {
  filter: brightness(0) invert(1);
}

.why-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.why-text {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* About Section */
.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);*/
  width: 100%;
}

.about-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

.about-stats {
  position: absolute;
  bottom: -30px;
  right: -30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  background: var(--theme-blue);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 100px;
  max-width: 100%;
}

/* Benefits Section */
.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--theme-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: white;
}

.benefit-icon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.benefit-card:hover .benefit-icon img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.benefit-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-text {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Supermarket Advantages Section */
.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  background: var(--theme-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
  background: var(--theme-yellow);
  transform: scale(1.1);
}

.advantage-icon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.advantage-card:hover .advantage-icon img {
  filter: brightness(0) invert(1);
}

.advantage-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.advantage-text {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Action Now Section */
.action-card {
  background: white;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.action-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 202, 65, 0.1), transparent);
  transition: left 0.5s;
}

.action-card:hover::before {
  left: 100%;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.action-icon {
  width: 60px;
  height: 60px;
  background: var(--theme-bg-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.action-card:hover .action-icon {
  background: var(--theme-yellow);
  transform: scale(1.1);
}

.action-icon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.action-card:hover .action-icon img {
  filter: brightness(0) invert(1);
}

.action-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.action-text {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Gallery Section */
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
  max-width: 100%;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 46, 135, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 30px;
  transform: scale(0);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Features Section */
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--theme-bg-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--theme-yellow);
  transform: scale(1.1);
}

.feature-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.feature-card:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.feature-text {
  line-height: 1.6;
  color: var(--text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Process Section */
.process-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--theme-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.process-icon {
  width: 60px;
  height: 60px;
  background: var(--theme-bg-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon {
  background: var(--theme-yellow);
  transform: scale(1.1);
}

.process-icon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  max-width: 100%;
}

.process-card:hover .process-icon img {
  filter: brightness(0) invert(1);
}

.process-title {
  margin-bottom: 15px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.process-text {
  line-height: 1.6;
  color: var(--text-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--theme-blue) 0%, var(--theme-blue-dark) 100%);
  width: 100%;
  overflow: hidden;
}

.cta-title {
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text {
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Contact Section */
.contact-info-wrapper {
  padding-right: 40px;
  width: 100%;
}

.contact-details {
  /*margin-top: 40px;*/
  width: 100%;
  position: relative;
}


@media (min-width: 1400px) {
    .contact-details {
        padding:43px 42px !important;
    }
}



.contact-details::before {
  display: none;
  width: 188px;
  height: 171px;
  background: linear-gradient(106deg, #FFE090, #FDB700 100%);
  content: "";
  position: absolute;
  bottom: -16px;
  right: -22px;
  border-radius: 50%;
  z-index: 0;
}

.contact-single-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--theme-bg-yellow);
  border-radius: 15px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/*.contact-single-info:hover {*/
/*  background: var(--theme-yellow);*/
/*  transform: translateX(10px);*/
/*}*/

.contact-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon img {
  width: 25px;
  height: 25px;
  max-width: 100%;
}

.contact-info {
  flex: 1;
  min-width: 0;
}

.contact-title {
  margin-bottom: 5px;
  word-wrap: break-word;
}

.contact-link {
  text-decoration: none;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-link:hover {
  color: var(--theme-blue) !important;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
}

.contact-form {
  width: 100%;
}

.contact-form .form-field {
  margin-bottom: 20px;
  width: 100%;
}

.contact-form .form-label {
  margin-bottom: 8px;
  display: block;
  color: var(--text-color);
  word-wrap: break-word;
}

.contact-form .input-field,
.contact-form .select-field {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-color);
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form .input-field:focus,
.contact-form .select-field:focus {
  background: white;
  border-color: var(--theme-yellow);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 202, 65, 0.1);
}

.contact-form .checkbox-label {
  color: var(--text-color) !important;
  font-size: 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Simple Footer */
.simple-footer {
  background: #272727;
  padding: 30px 0 20px;
  border-top: 1px solid #e9ecef;
  width: 100%;
  overflow: hidden;
}

.footer-logo .logo-img {
  width: 120px;
  height: auto;
  max-width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--theme-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--theme-yellow);
  color: var(--text-color);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: #e9ecef;
  margin: 20px 0;
  width: 100%;
}

.footer-copyright {
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-copyright a {
  color: var(--theme-blue);
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
    text-align: center;
  }
  .hero-content {
    margin-bottom: 40px;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .hero-form-box {
    margin: 0 auto;
    max-width: 500px;
  }
  .contact-info-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .cta-section .row {
    text-align: center;
  }
  .cta-button {
    margin-top: 20px;
  }
  .footer-social {
    justify-content: center;
    margin-top: 20px;
  }
  .about-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
    justify-content: center;
  }
  .section-title {
    font-size: 42px !important;
  }
  
  .youtube-short-card {
    padding: 12px;
  }
  
  .short-title {
    font-size: 16px !important;
  }
  
  .short-description {
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 32px !important;
  }
  .hero-subtitle {
    font-size: 16px !important;
  }
  .video-container {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 20px;
  }
  
  .play-text {
    font-size: 14px;
  }
  
  .pause-button {
    width: 50px;
    height: 50px;
  }
  
  .pause-button i {
    font-size: 20px;
  }
  
  .pause-text {
    font-size: 14px;
  }
  
  .volume-controls {
    padding: 6px 10px;
  }
  
  .volume-btn {
    font-size: 14px;
    width: 28px;
    height: 28px;
  }
  
  .volume-slider-container {
    width: 70px;
  }
  
  .hero-stats {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    gap: 10px;
  }
  .stat-item {
    min-width: 85px;
    padding: 10px 5px;
  }
  .stat-number {
    font-size: 24px !important;
  }
  .stat-label {
    font-size: 11px !important;
  }
  .hero-form-box {
    padding: 25px 15px;
    max-width: 95%;
  }
  .hero-contact-form .form-label {
    font-size: 12px !important;
  }
  .form-title {
    font-size: 20px !important;
  }
  .form-subtitle {
    font-size: 13px !important;
  }
  .why-card,
  .advantage-card,
  .action-card {
    padding: 25px 20px;
  }
  .benefit-card {
    padding: 25px 20px;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  .cta-title {
    font-size: 32px !important;
  }
  .section-title {
    font-size: 36px !important;
  }
  
  .youtube-short-card {
    padding: 10px;
  }
  
  .short-title {
    font-size: 14px !important;
  }
  
  .short-description {
    font-size: 11px !important;
  }
  .contact-single-info {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .hero-section {
    min-height: 100vh;
    padding: 40px 0;
  }
  .hero-content {
    margin-bottom: 30px;
  }
  .hero-title {
    font-size: 28px !important;
  }
  .hero-subtitle {
    font-size: 14px !important;
  }
  .video-container {
    max-width: 250px;
    margin: 0 auto;
  }
  
  .play-button {
    width: 40px;
    height: 40px;
  }
  
  .play-button i {
    font-size: 16px;
  }
  
  .play-text {
    font-size: 12px;
  }
  
  .pause-button {
    width: 40px;
    height: 40px;
  }
  
  .pause-button i {
    font-size: 16px;
  }
  
  .pause-text {
    font-size: 12px;
  }
  
  .volume-controls {
    padding: 5px 8px;
  }
  
  .volume-btn {
    font-size: 12px;
    width: 24px;
    height: 24px;
  }
  
  .volume-slider-container {
    width: 60px;
  }
  
  .hero-form-box {
    padding: 20px 15px;
  }
  .hero-contact-form .row {
    --bs-gutter-x: 0.5rem;
  }
  .hero-contact-form .form-label {
    font-size: 11px !important;
  }
  .stat-item {
    min-width: 80px;
    padding: 8px 5px;
  }
  .stat-number {
    font-size: 20px !important;
  }
  .stat-label {
    font-size: 10px !important;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .section-title {
    font-size: 28px !important;
  }
  
  .youtube-short-card {
    padding: 10px;
  }
  
  .short-title {
    font-size: 14px !important;
  }
  
  .short-description {
    font-size: 11px !important;
  }
  .about-stats {
    gap: 10px;
  }
}

/* Utility Classes */
.text-theme-blue {
  color: var(--theme-blue) !important;
}

.text-theme-dark {
  color: var(--text-color) !important;
}

.text-theme-light {
  color: var(--text-light) !important;
}

/* Animation Enhancements */
.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

/* YouTube Shorts Section */
.youtube-short-card {
  background: linear-gradient(135deg, rgba(0, 46, 135, 0.9) 0%, rgba(0, 39, 114, 0.95) 100%);
  border-radius: 15px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 100%;
  box-shadow: 0 8px 32px rgba(0, 46, 135, 0.3);
}

.youtube-short-card:hover {
  background: linear-gradient(135deg, rgba(0, 46, 135, 1) 0%, rgba(0, 39, 114, 1) 100%);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 46, 135, 0.4);
  backdrop-filter: blur(20px);
}

.short-video-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 9/16; /* YouTube Shorts aspect ratio */
  max-height: 300px; /* Limit maximum height */
}

.short-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.short-content {
  padding: 0 2px;
}

.short-title {
  margin-bottom: 5px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.short-description {
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0.9;
}

/* CTA Button After Section */
.cta-btn-after-section {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.bg-blue .cta-btn-after-section {
    background-color: var(--theme-yellow);
    color: var(--theme-dark);
}

/* YouTube CTA Button */
.youtube-cta-btn {
    background: linear-gradient(135deg, var(--theme-blue) 0%, var(--theme-blue-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 46, 135, 0.3);
    transition: all 0.3s ease;
}

.youtube-cta-btn:hover {
    background: linear-gradient(135deg, var(--theme-blue-dark) 0%, var(--theme-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 46, 135, 0.4);
    color: white;
}

