/* AC Remotes Page Styles */

/* Hero Section */
.ac-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: auto;
    overflow: hidden;
    padding: 130px 5% 80px;
    
}

/* .ac-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(147, 197, 253, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
} */

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* .video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
} */

.video-background video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    margin-top: 70px;
}

/* Add media query for large screens to make video more prominent */
@media (min-width: 1400px) {
    .ac-hero {
        min-height: 90vh;
        padding: 180px 5% 140px;
        align-items: center;
    }
    
    .video-background video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.ac-hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
    margin: 0;
    text-align: left;
    padding-left: 5%;
    padding-bottom: 30px;
}

.ac-hero .hero-badge {
    display: inline-block;
    background-color: rgba(31, 98, 204, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.ac-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ac-hero-content p {
    font-size: 18px;
    color: var(--light-text);
    max-width: 500px;
    margin: 0 0 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hero-feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.hero-feature-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

.ac-hero-image {
    position: relative;
    flex: 0 0 50%;
    max-width: 550px;
    margin-left: 50px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ac-hero-image img {
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.ac-hero-image:hover img {
    transform: translateY(-10px);
}

/* Sustainability Section */
.sustainability {
    padding: 80px 40px;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(219, 234, 254, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.sustainability-item {
    background-color: var(--background);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sustainability-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sustainability-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.sustainability-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.sustainability-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.sustainability-item p {
    font-size: 15px;
    color: var(--light-text);
    line-height: 1.6;
}

/* Media Queries */
@media (max-width: 1100px) {
    .ac-hero {
        padding: 120px 40px 70px;
    }
}

@media (max-width: 768px) {
    .ac-hero {
        padding: 120px 30px 60px;
        flex-direction: column;
        text-align: center;
    }
    
    .ac-hero-content {
        max-width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }
    
    .ac-hero-content h1 {
        font-size: 36px;
    }
    
    .ac-hero-content p {
        font-size: 16px;
    }
    
    .video-background video {
        height: 100%;
        width: auto;
        left: 115px;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ac-hero {
        padding: 100px 20px 40px;
    }
    
    .ac-hero-content h1 {
        font-size: 28px;
    }
    
    .video-background video {
        width: 100%;
        height: auto;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
    
    .hero-feature-item {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .ac-hero-content h1 {
        font-size: 28px;
    }
    
    .video-background video {
        width: 150%;
        height: auto;
    }
}

/* Overview Section */
.ac-overview {
    padding: 80px 40px;
    background-color: var(--background);
}

.overview-content {
    max-width: 900px;
    margin: 40px auto;
    text-align: center;
}

.overview-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Remote Types Section */
.remote-types {
    padding: 80px 40px;
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
}

.remote-types::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(219, 234, 254, 0.3) 100%);
    z-index: 0;
    border-radius: 30% 0 0 70%;
}

.remote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.remote-card {
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.remote-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.remote-image {
    height: 300px;
    background: linear-gradient(135deg, #dbeafe 0%, #e4ebf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.remote-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.remote-card:hover .remote-image img {
    transform: scale(1.05);
}

.remote-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.remote-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.remote-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.remote-features {
    list-style: none;
    margin-bottom: 25px;
}

.remote-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 14px;
}

.remote-features i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 16px;
}

.remote-info .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Features Section */
.features {
    padding: 3rem 2rem;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(219, 234, 254, 0.3);
    border-radius: 50%;
    z-index: 0;
}

/* Compatibility Section (now Functionality Section) */
.compatibility {
    padding: 80px 40px;
    background-color: var(--light-background);
}

.functionality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.function-item {
    background-color: var(--background);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.function-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.function-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    margin-bottom: 20px;
}

.function-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.function-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.function-item p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.5;
}

/* Additional Remotes Section */
.additional-remotes {
    padding: 80px 40px;
    background-color: var(--background);
    position: relative;
}

.specialized-grid {
    margin-top: 50px;
}

/* Animate Function Items */
.function-item.animate {
    animation: fadeInUp 0.6s forwards;
}

/* Media Queries */
@media (max-width: 1200px) {
    .remote-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .functionality-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .ac-hero-content h1 {
        font-size: 42px;
    }
    
    .remote-image {
        height: 250px;
    }
    .function-item {
        padding: 25px 20px;
    }
    
    .function-icon {
        width: 50px;
        height: 50px;
    }
    
    .function-icon i {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .ac-hero {
        padding: 140px 20px 80px;
        min-height: 400px;
    }
    
    .ac-hero-content h1 {
        font-size: 36px;
    }
    
    .ac-hero-content p {
        font-size: 16px;
        margin-right:115px;
    }
    
    .ac-overview,
    .remote-types,
    .features,
    .compatibility,
    .additional-remotes {
        padding: 60px 20px;
    }
    
    .remote-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .functionality-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .function-item h3 {
        font-size: 16px;
    }
    
    .function-item p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .ac-hero-content h1 {
        font-size: 30px;
    }
    
    .remote-image {
        height: 220px;
    }
    
    .functionality-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .function-item {
        padding: 20px 15px;
    }
    
    .function-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .function-icon i {
        font-size: 18px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section - Smaller Cards */
.features .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.2rem;
}

.features .feature-card {
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
    height: auto;
    justify-content: flex-start;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.features .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
}

.features .feature-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.features .feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--dark-color);
}

.features .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    color: var(--light-text);
}

@media (max-width: 768px) {
    .features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .features .feature-card {
        min-height: 180px;
        padding: 1.2rem 1rem;
    }
}

@media (max-width: 576px) {
    .features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .features .feature-card {
        min-height: auto;
        padding: 1rem;
    }
    
    .features .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.6rem;
    }
    
    .features .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .features .feature-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 50px 15px;
    }
    
    .features .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .features .feature-card {
        padding: 0.8rem;
    }
    
    .features .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }
    
    .features .feature-icon i {
        font-size: 1rem;
    }
    
    .features .feature-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .features .feature-card p {
        font-size: 0.75rem;
        line-height: 1.2;
    }
}

/* Partner Logos Section */
.partner-logos {
  padding: 40px 0;
}

.logo-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
  margin: 0 auto;
  max-width: 1200px;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-logo {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
  filter: grayscale(0%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.partner-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo-grid {
    gap: 30px;
  }
  
  .partner-logo {
    max-width: 120px;
    max-height: 70px;
  }
}

/* Partners section from  but static */
.partners {
  padding: 80px 40px;
  background-color: var(--light-background);
  position: relative;
  overflow: hidden;
}

.logos-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 40px auto 0;
  padding: 0 20px;
  max-width: 1200px;
}

.home-logo-wrapper {
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.home-logo-wrapper.bottom {
  margin-top: 40px;
}

.clients-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

.clients-grid.static {
  justify-content: center;
  flex-wrap: wrap;
}

.client-logo {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1; /* Changed from 0.8 to 1 for better visibility */
  filter: contrast(1.1) brightness(1); /* Added to enhance visibility */
}

.client-logo.featured {
  height: 50px;
  opacity: 1;
  filter: contrast(1.2) brightness(1.05); /* Make featured logos stand out more */
}

.client-logo:hover {
  transform: scale(1.05);
  filter: contrast(1.2) brightness(1.05); /* Slightly enhanced on hover */
}

.samsung-logo {
  height: 40px;
}

.sunhd-logo {
  height: 30px;
}

.home-logo-left-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100px;
  background: linear-gradient(90deg, var(--light-background) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 10;
}

.home-logo-left-gradient.right {
  left: auto;
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--light-background) 100%);
}

@media (max-width: 768px) {
  .client-logo {
    height: 30px;
  }
  
  .client-logo.featured {
    height: 40px;
  }
  
  .clients-grid {
    gap: 30px;
  }
  
  .clients-grid.static {
    gap: 40px 20px;
  }
}

.lloyd-logo {
  height: 80px !important; /* Override the default height */
  max-width: none;
}

@media (max-width: 768px) {
  .lloyd-logo {
    height: 60px !important;
  }
}

/* Add media query for large screens to make content more prominent */
@media (min-width: 1400px) {
    .ac-hero-content {
        max-width: 750px;
    }
    
    .ac-hero-content h1 {
        font-size: 58px;
        margin-bottom: 30px;
    }
    
    .ac-hero-content p {
        font-size: 20px;
        margin-bottom: 40px;
    }
    
    .hero-features {
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .hero-feature-item {
        padding: 12px 20px;
    }
    
    .hero-feature-item i {
        font-size: 18px;
        margin-right: 12px;
    }
    
    .hero-feature-item span {
        font-size: 16px;
    }
    
    .btn.primary {
        padding: 14px 32px;
        font-size: 16px;
    }
}

/* Our Happy Clients Slider */
.clients-logos-slider {
  display: flex;
  align-items: center;
  position: relative;
  margin: 40px auto;
  max-width: 100%;
  padding: 20px 20px;
  white-space: nowrap;
  will-change: transform;
}

.logo-slide {
  flex: 0 0 auto;
  margin: 0 30px;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 120px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-slide:hover {
  opacity: 1;
  transform: scale(1.1);
}

.client-logo {
  max-height: 50px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1; /* Changed from 0.8 to 1 for better visibility */
  filter: contrast(1.1) brightness(1); /* Added to enhance visibility */
}

.client-logo:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-slide {
    margin: 0 25px;
    width: 100px;
  }
  
  .client-logo {
    max-height: 40px;
    max-width: 80px;
  }
}

@media (max-width: 576px) {
  .logo-slide {
    margin: 0 20px;
    width: 80px;
  }
  
  .client-logo {
    max-height: 35px;
    max-width: 70px;
  }
}

/* Products Section Enhancement */
.products-section {
    padding: 0;
    position: relative;
    background: linear-gradient(to bottom, var(--light-background), rgba(249, 250, 251, 0.7));
}

.products-section::before,
.products-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.products-section::before {
    background: radial-gradient(circle, rgba(147, 197, 253, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    width: 50vw;
    height: 50vw;
    top: 10%;
    left: -20%;
}

.products-section::after {
    background: radial-gradient(circle, rgba(31, 98, 204, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    width: 40vw;
    height: 40vw;
    bottom: 5%;
    right: -15%;
}

.product-detail-parent {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    opacity: 0.7;
    transform: translateY(10px);
    min-height: 85vh;
    scroll-margin-top: 80px;
}

.product-detail-parent.active-product {
    opacity: 1;
    transform: translateY(0);
}

.product-detail-parent::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(255, 255, 255, 0.02);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-detail-parent:hover::after {
    opacity: 1;
}

.product-detail-full-size-image {
    transition: transform 0.4s ease;
}

.product-detail-parent:hover .product-detail-full-size-image {
    transform: scale(1.02);
}

.product-details-content {
    background-color: rgba(248, 250, 252, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.product-detail-parent.active-product .product-details-content {
    transform: translateX(0);
    opacity: 1;
}

.product-details-content h1 {
    position: relative;
    display: inline-block;
}

.product-details-content h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.product-detail-parent:hover .product-details-content h1::after {
    width: 60px;
}

.slider-image {
    border: 2px solid transparent;
    transition: all 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-image.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.product-features .feature-item {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.7);
}

.product-features .feature-item:hover {
    transform: translateX(8px);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Full-screen product section layout */
.products-section {
    scroll-snap-type: y mandatory;
    height: auto;
    overflow-y: auto;
    padding-bottom: 2rem;
}

.product-detail-parent {
    scroll-snap-align: start;
}

/* Make the sections more engaging on smaller screens */
@media (max-width: 992px) {
    .product-detail-parent {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-details-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .products-section {
        scroll-snap-type: none;
    }
    
    .product-detail-parent {
        scroll-snap-align: none;
    }
}

/* Remote Variants Section */
.remote-variants {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.variants-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.variants-content {
    flex: 1;
    min-width: 300px;
}

.variants-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.variants-content .accent-text {
    color: var(--primary-color);
}

.variants-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 20px;
}

.wavy-divider {
    margin: 30px 0;
    max-width: 100px;
}

.variants-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.design-features {
    flex: 1;
    min-width: 300px;
}

.design-features h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.design-features .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-circle img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background-color: #aaaaaacf;
}

.feature-circle:hover img {
    transform: scale(1.05);
}

.feature-circle h4 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    max-width: 160px;
}

/* Media Queries for Remote Variants Section */
@media (max-width: 992px) {
    .variants-container {
        flex-direction: column;
    }
    
    .variants-content, .design-features {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .remote-variants {
        padding: 60px 20px;
    }
    
    .variants-content h2 {
        font-size: 28px;
    }
    
    .design-features .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-circle img {
        width: 120px;
        height: 120px;
    }
} 
@media screen and (max-width: 768px) {
    .video-background{
        width: 100%;
    }
 
}