
/*** T3SB identifier: t3sbsCSSassets_30597 */

/* t3sbs_assets_30597 */
#c30599{
  position: absolute;
  left: 0;
  bottom: 0;
}
/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2b4ea0 0%, #3aaaa4 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/*
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.05)"/></svg>')
    no-repeat bottom;
  background-size: cover;
}*/
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.hero-feature {
  text-align: center;
}

.hero-feature-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-feature-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.cta-button {
  background: #fff;
  color: #0e1225;
  padding: 18px 40px;
  border-radius: 45px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  background: #ffe34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Main Sections */
.main-section {
  padding: 80px 0;
}

.section-bg-white {
  background: #ffffff;
}

.section-bg-gray {
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
 
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 40px 35px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}



.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}



.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.service-title {
  color: #2c5aa0;
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-features li {
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.1rem;
}

.service-link {
  display: inline-block;
  color: #667eea;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  position: relative;
  z-index: 10;
  padding: 5px 0;
}

.service-link:hover {
  color: #764ba2;
}

.service-link::after {
  content: " →";
  transition: transform 0.3s ease;
  display: inline-block;
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3c72 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.benefit-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  color: #2c5aa0;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 35px;
}

.cta-steps {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  gap: 30px;
}

.cta-step {
  flex: 1;
  text-align: center;
}

.cta-step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 15px;
}

.cta-step-text {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-features {
    gap: 25px;
  }

  .cta-steps {
    flex-direction: column;
  }

  .cta-box {
    padding: 40px 30px;
  }
}

.highlight {
  color: #ffe34a;
  font-weight: bold;
}

/* Divider */
.section-divider {
  text-align: center;
  margin: 60px 0;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.section-divider-text {
  position: relative;
  background: white;
  padding: 0 30px;
  display: inline-block;
  color: #667eea;
  font-weight: bold;
  font-size: 1.1rem;
}

.ki-section {
  background: linear-gradient(135deg, #042563 0%, #122957 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.ki-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

	

