* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f4f4;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 650px;
  overflow: hidden;
  margin: 0 auto;
}

.slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: full;
  display: block;
}

.caption {
  position: absolute;
  bottom: 80px;
  left: 80px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 60px;
  border-radius: 8px;
  max-width: 60%;
}

.caption h2 {
  font-size: 38px;
  margin: 0 0 20px;
}

.caption p {
  font-size: 26px;
  margin-bottom: 22px;
}

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #d68910;
}

.prev, .next {
  position: absolute;
  top: 50%;
  background-color: rgba(0,0,0,0.5);
  color: white;
  font-size: 32px;
  padding: 10px;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.ribbon-section {
  width: 100%;
  margin-top: 40px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.ribbon-section h1 {
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.ribbon-section h1 span {
  color: #f1c40f;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.ribbon-section h1 em {
  color: #ecf0f1;
  font-style: italic;
}


.two-column-section {
  background-color: #f0f4f8;
  padding: 60px 20px;
}

.two-column-section .container {
  max-width: 1140px;
  margin: auto;
  display: flex;
  gap: 40px;
  color: #726453;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  align-items: flex-start;
  position: relative;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.left-column h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #2c3e50;
}

.left-column p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #2980b9;
}

.right-column p {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.right-column ul {
  padding-left: 0px;
  
}

.right-column ul li {
  font-size: 18px;
  margin-bottom: 10px;
}
 

.icon-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

.icon-list i {
  color: #3498db;
  margin-right: 10px;
}

.hero-banner {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  background: #00c6ff;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #0072ff;
}

.ai-section {
  background: #f1f6fb;
  padding: 60px 20px;
}

.ai-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.ai-left img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.ai-right {
  flex: 1;
}

.ai-right h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
}

.ai-right p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.ai-benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.ai-benefits li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.ai-benefits i {
  color: #007bff;
  margin-right: 8px;
}

.ai-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.ai-btn:hover {
  background: #0056b3;
}

.contact-section {
	margin-top: 60px;
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background-color: #0072ff;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.contact-form button:hover {
  background-color: #0056d2;
}

.contact-container {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  max-width: 650px;
  margin: auto;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form button {
  background-color: #0072ff;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 10px;
  width: 100%;
}

.contact-form button:hover {
  background-color: #0051b3;
}


    .services-section {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .services-section h2 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: #333;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 30px;
    }

    .service-box {
      background-color: #fff;
      padding: 60px 25px 60px 25px;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
      text-align: left;
      display: flex;
      gap: 40px;
      transition: transform 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-5px);
    }

    .icon {
		margin-top: 50px;
      font-size: 100px;
      color: #007bff;
      flex-shrink: 0;
    }

    .service-content {
      flex-grow: 1;
    }

    .service-content h3 {
      margin-bottom: 25px;
      font-size: 25px;
      color: #333;
    }

    .service-content p {
      margin: 25px 0;
	  line-height: 1 rem;
      font-size: 20px;
      color: #555;
    }

    .service-content .cta-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 18px;
      background-color: #007bff;
      color: #fff;
      border: none;
      text-decoration: none;
      border-radius: 5px;
      font-size: 14px;
      transition: background-color 0.3s ease;
    }

    .service-content .cta-btn:hover {
      background-color: #0056b3;
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

