/* Add your styles here *//* styles.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6;
    color: #333;
    background-color: white;
}

/* Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}
.container1{
    background-color: #d9d9d9;
    padding: 40px 20px;
}

/* Header Styles */

.main-title {
    font-size: 2rem;
    font-weight: 700;
     line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.main-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0.95;
}



.solution-section.alternate {
    background-color: white;
    border-radius: 12px;
}
.solution-section {
    background-color: #d9d9d9;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}
.section-header {
  margin-bottom: 30px;
}

.content-pair {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}


.feature-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: rgba(102, 126, 234, 0.05);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.sub-feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
    margin: 20px 0 10px 0;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.feature-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 15px 0 10px 0;
}

.feature-conclusion {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

/* Lists */
.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Image Content */
.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}
.text-content, .image-content {
  flex: 1 1 50%;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #fff;
    color: #667eea;
    border-color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2c3e50;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 968px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 60px 0;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .main-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .solution-section {
        padding: 40px 0;
    }
    
    .feature-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .placeholder-image {
        height: 250px;
        font-size: 1rem;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solution-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling enhancement */
html {
    scroll-padding-top: 20px;
}

/* Focus styles for accessibility */
.btn:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cta-section,
    .footer {
        background: none !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black !important;
        color: black !important;
    }
    
    .placeholder-image {
        background: #f0f0f0 !important;
        color: black !important;
    }
}

@keyframes display {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  10% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    transform: translateX(0);
    opacity: 1;
  }
  30% {
    transform: translateX(-200px);
    opacity: 0;
  }
  100% {
    transform: translateX(-200px);
    opacity: 0;
  }
}

.pic-ctn {
   position: relative;
  width: 100%;
  max-width: 1600px;
  height: 500px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #242323;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.pic-ctn img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0;
  animation: fadeSlider 25s infinite;
  border-radius: 8px;
}

/* Animation delays */
.pic-ctn img:nth-child(1) { animation-delay: 0s; }
.pic-ctn img:nth-child(2) { animation-delay: 5s; }
.pic-ctn img:nth-child(3) { animation-delay: 10s; }
.pic-ctn img:nth-child(4) { animation-delay: 15s; }
.pic-ctn img:nth-child(5) { animation-delay: 20s; }

/* Animation keyframes */
@keyframes fadeSlider {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
  4%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  20%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  24%  { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pic-ctn  {
    width: 100%;
    height: 100%;
  }
}


