:root {
    --primary-color: #2563eb;
    --secondary-color: #1d4ed8;
    --accent-color: #10b981;
    --text-color: #1e293b;
    --light-text: #64748b;
    --background-color: #f8fafc;
    --card-background: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
    --dark-bg: #0f172a;
    --dark-text: #f1f5f9;
    --dark-border: #334155;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}
/*vedio section style*/

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.video-box {
  width: 70%;
  max-width: 900px;
  height: 500px;
  background: #000;
  position: relative;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* Section */
.product-video {
  padding: 120px 24px;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.product-video__container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Content */
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  color: #2563eb;
  font-weight: 600;
}

.product-video__content h2 {
  font-size: 40px;
  line-height: 1.2;
  margin: 16px 0;
  color: #0f172a;
}

.description {
  font-size: 16px;
  color: #475569;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Media */
.product-video__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.2);
  transition: transform .4s ease;
}

.product-video__media:hover {
  transform: translateY(-6px);
}

.product-video__media img {
  width: 100%;
  display: block;
}

/* Play overlay */
.play-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 3000;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
}

.video-modal__dialog {
  position: relative;
  max-width: 960px;
  width: 90%;
  aspect-ratio: 16 / 9;
  margin: auto;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.video-modal__dialog iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-video__container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .description {
    margin-inline: auto;
  }
}




      /* Base */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 80px;
  height: auto;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link.secondary {
  color: #6b7280;
}

/* Button */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}

/* Language */
.lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-select select {
  border: none;
  background: transparent;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
}

/* CSS */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Segoe UI', sans-serif;
    margin: 20px;
}

.lang-switch label {
    font-weight: 600;
    color: #333;
}

.lang-switch select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lang-switch select:hover {
    border-color: #0078D4;
    background-color: #fff;
}

.lang-switch select:focus {
    outline: none;
    border-color: #0078D4;
    box-shadow: 0 0 0 2px rgba(0, 120, 212, 0.3);
}

/*--lang switcher--*/

.lang-switch {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-switch button {
    background-color: #f5f5f5;
    border: 1px solid #b90707;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 40px;
    text-align: center;
    color: #333;
    font-size: 14px;
}

.lang-switch button:hover {
    background-color: #e8f0fe;
    border-color: #4285f4;
}

.lang-switch button.active {
    background-color: #4285f4;
    color: white;
    border-color: #4285f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-switch button:focus {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('../image/head_image.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top: 150px;
    font-size: larger;
}

.version-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.version-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-size: 65px;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-button {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.primary-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.secondary-button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Actors Section */
.actors-section {
    padding: 4rem 2rem;
    background-color: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.actors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.actor-card {
    background-color: #f1f5f9;
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.actor-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.actor-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.actor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.actor-card p {
    color: rgb(57, 56, 56);
    font-size: 15px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    background-color: #f8fafc;
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.features-header h2 {
    font-size: 2rem;
    color: var(--text-color);
}

.features-header .view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-header .view-all:hover {
    text-decoration: underline;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon-blue {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.feature-icon-orange {
    background-color: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.feature-icon-purple {
    background-color: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.feature-icon-green {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.feature-card p {
    color: rgb(57, 56, 56);
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.feature-tag {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 15px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(57, 56, 56);
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 2rem;
    background-color: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.why-choose-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 0.75rem;
    background-color: #f1f5f9;
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: black;
}

.why-choose-card p {
    color: var(--light-text);
    font-size: 16.2px;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(57, 56, 56);
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-white {
    background-color: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.cta-button-white:hover {
    background-color: #f1f5f9;
    transform: translateY(-2px);
}

/* Footer */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e293b;
    color: white;
}

.footer {
    background-color: #0f172a;
    padding: 48px 24px 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    background-color: #3b82f6;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 700;
}

.footer-description {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.footer-social a.facebook {
    background-color: #3b82f6;
}

.footer-social a.facebook:hover {
    background-color: #2563eb;
}

.footer-social a.instagram {
    background-color: #8b5cf6;
}

.footer-social a.instagram:hover {
    background-color: #7c3aed;
}

.footer-social a.snapchat {
    background-color: #facc15;
    color: #0f172a;
}

.footer-social a.snapchat:hover {
    background-color: #eab308;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    max-width: 1280px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #334155;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.footer-bottom-text {
    color: #64748b;
    font-size: 14px;
    text-align: center;
}

/*footer bottom responsive*/


/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: translateY(-2px);
}




/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .actors-grid,
    .features-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .features-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .features-header h2 {
        font-size: 1.5rem;
    }

    .why-choose-header h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}