/* ============================================
   SECTIONS CSS - Individual Section Styles
   ============================================ */

/* HERO VIDEO SECTION */
.hero-video {
  position: relative;
  height: 700px;
  overflow: hidden;
  padding: 0;
  margin-bottom: 0px;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: white;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-btn {
  background: #0ea5e9;
  color: white;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: #38bdf8;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

/* SERVICES INTRO */
.services-intro {
  background: #faf7ff;
  text-align: center;
}

.services-intro .content-container {
  max-width: 900px;
}

.services-intro h2 {
  margin-bottom: 20px;
}

/* AI SERVICES GRID */
.ai-services-wrapper {
  margin-top: 60px;
}

.ai-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.ai-service-card {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 40, 95, 0.1);
  background: white;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.ai-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(18, 40, 95, 0.2);
}

.card-front, .card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-front {
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.ai-service-image {
  height: 60%;
  position: relative;
  overflow: hidden;
}

.ai-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.ai-service-card:hover .ai-service-image img {
  transform: scale(1.05);
}

.ai-service-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(18, 40, 95, 0.7), transparent);
}

.ai-service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #5AB3EE;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(90, 179, 238, 0.4);
}

.ai-service-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-service-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #12285F;
  margin-bottom: 10px;
}

.ai-service-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.ai-service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-service-tags {
  display: flex;
  gap: 8px;
}

.ai-service-tag {
  background: rgba(90, 179, 238, 0.1);
  color: #5AB3EE;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.ai-service-arrow {
  width: 40px;
  height: 40px;
  background: #5AB3EE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.4s ease;
}

.ai-service-card:hover .ai-service-arrow {
  background: #12285F;
  transform: rotate(90deg);
}

/* Hover State */
.card-hover {
  background: linear-gradient(135deg, #12285F 0%, #2E3192 100%);
  color: white;
  transform: translateY(100%);
  opacity: 0;
  z-index: 3;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.ai-hover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ai-hover-title {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.ai-hover-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ai-hover-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
  text-align: left !important;
}

.ai-hover-features {
  margin-bottom: 25px;
}

.ai-feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.ai-feature i {
  color: #5AB3EE;
  margin-right: 10px;
  font-size: 14px;
}

.ai-hover-actions {
  display: flex;
  gap: 15px;
}

.ai-hover-btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.ai-btn-primary {
  background: #5AB3EE;
  color: white;
  flex: 2;
}

.ai-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  flex: 1;
}

.ai-btn-primary:hover {
  background: #4aa3d6;
  transform: translateY(-3px);
}

.ai-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

.ai-service-card:hover .card-front {
  opacity: 0;
  transform: translateY(-20px);
}

.ai-service-card:hover .card-hover {
  transform: translateY(0);
  opacity: 1;
}

/* ABOUT US */
.about-us {
  background: #faf7ff;
}

.about-us .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat {
  position: absolute;
  background: white;
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  color: #003a8f;
  margin-bottom: 6px;
}

.stat span {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
}

.stat-top {
  top: -20px;
  right: -20px;
}

.stat-bottom {
  bottom: -20px;
  left: -20px;
}

/* SPLIT BANNER */
.split-banner {
  background: linear-gradient(to right, #376AD1, #1B3B75);
  padding: 0;
}

.split-banner .content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
  align-items: center;
}

.split-content {
  color: white;
}

.split-content h2 {
  color: white;
  margin-bottom: 20px;
}

.split-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.split-btn {
  background: #61C0FE;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.split-btn:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
}

.split-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* FEATURES */
.features {
  background: #f8fafc;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.feature-box i {
  font-size: 42px;
  color: #0ea5e9;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.feature-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0f172a;
}

.feature-box p {
  font-size: 15px;
  color: #475569;
}

.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(14, 165, 233, 0.25);
}

.feature-box:hover i {
  transform: scale(1.15) rotate(5deg);
  color: #003a8f;
}

/* STATS */
.stats-wrapper {
  padding: 0px 20px;
}

.stats-inner {
  background: linear-gradient(180deg, #003b73, #00b4ff);
  border-radius: 28px;
  padding: 60px 40px;
}

.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.stat-box {
  background: white;
  border-radius: 18px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.stat-box:hover {
  transform: translateY(-10px);
}

.stat-box h3 {
  font-size: 52px;
  font-weight: 800;
  color: #003b73;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.trusted-content {
  text-align: center;
  color: white;
}

.trusted-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.trusted-content p {
  font-size: 18px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* REVIEWS */
.review-section {
  background: #fafbff;
}

.review-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.review-slide {
  display: none;
  align-items: center;
  gap: 50px;
}

.review-slide.active {
  display: flex;
  animation: slideFade 0.6s ease;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.review-left {
  flex: 1;
}

.review-left img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.review-left hr {
  width: 60px;
  border: 2px solid #00b3ff;
  margin: 25px 0;
}

.review-left h4 {
  margin: 0;
  font-size: 18px;
}

.review-left span {
  font-size: 14px;
  color: #777;
}

.review-right {
  flex: 1;
}

.review-right img {
  width: 100%;
  border-radius: 14px;
}

.review-dots {
  text-align: center;
  margin-top: 30px;
}

.review-dots .dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dots .dot.active {
  background: #00b3ff;
  transform: scale(1.2);
}

/* PRICING */
.pricing-section {
  background: #fafbff;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 60px auto 0;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  border: 2px solid #00b3ff;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 179, 255, 0.2);
}

.pricing-card.popular {
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  background: #003b73;
  color: white;
  padding: 25px;
  font-size: 22px;
  font-weight: 600;
}

.pricing-header small {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
  font-weight: 400;
}

.pricing-price {
  font-size: 48px;
  font-weight: 700;
  padding: 30px 0 15px;
}

.pricing-price span {
  font-size: 22px;
  vertical-align: top;
}

.pricing-price small {
  display: block;
  font-size: 14px;
  color: #666;
  font-weight: 400;
}

.pricing-price.custom {
  font-size: 42px;
  padding: 40px 0 25px;
}

.pricing-features {
  list-style: none;
  padding: 0 30px;
  text-align: left;
  margin: 25px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #555;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-btn {
  display: inline-block;
  margin: 30px 0;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 114, 255, 0.3);
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -45px;
  background: #00b3ff;
  color: white;
  padding: 8px 50px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: 600;
  z-index: 3;
}

/* NEWSLETTER */
.newsletter-section {
  padding: 0 20px;
  margin: 80px auto;
  max-width: 1300px;
}

.newsletter-overlay {
  height: 400px;
  background-image: url("https://images.unsplash.com/photo-1535223289827-42f1e9919769");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.newsletter-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 45, 95, 0.9), rgba(0, 179, 255, 0.85));
}

.newsletter-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.newsletter-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 600px;
}

.newsletter-form input {
  flex: 1;
  min-width: 300px;
  padding: 16px 20px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  padding: 16px 35px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #00e0ff, #007bff);
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}