:root {
  --primary-color: #0033a0;
  --secondary-color: #002269;
  --accent-color: #e0f2fe;
  --text-color: #1f2937;
  --light-gray: #f8f9fa;
  --white-color: #ffffff;
  --border-color: #dee2e6;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Nunito', sans-serif;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-color);
}

/* Logo and Header Styles */
.wayone-logo {
  height: 40px;
  width: auto;
}

.header {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.logo img {
  height: 40px;
  width: auto;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 20px;
}

.navbar ul li a {
  color: #333;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
  text-decoration: none;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #0033a0;
}

.navbar ul li a.active {
  font-weight: 600;
  position: relative;
}

.navbar ul li a.active:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #0033a0;
  bottom: -4px;
  left: 10%;
}

.call-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.call-btn:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.mobile-nav-toggle {
  display: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    text-align: center;
  }

  .navbar.active ul {
    display: flex;
  }
}

/* Main content adjustments */
.main {
  margin-top: 70px;
}

/* Hero Section */
.hero-section {
  background-color: var(--accent-color);
  background-image: linear-gradient(135deg, var(--accent-color) 0%, var(--white-color) 70%);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.hero-container {
  max-width: 100%;
}

.hero-content-wrapper {
  background-color: #f0f7ff;
  min-height: 600px;
  padding: 80px 80px 80px 120px;
  display: flex;
  align-items: center;
}

.hero-content {
  padding-right: 20px;
  max-width: 600px;
}

.hero-content .subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-color);
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content .tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.hero-content .subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-view-portfolio {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-view-portfolio i {
  margin-left: 8px;
  transition: transform 0.3s;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background-color: white;
  color: var(--text-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-view-portfolio:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-view-portfolio:hover i {
  transform: translateX(5px);
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Form Area - Exact match with screenshot */
.hero-form-area {
  background-color: var(--primary-color);
  color: white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  height: 100%;
  display: flex;
  align-items: center;
}

.consultation-form {
  padding: 40px;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.consultation-form h3 {
  color: white;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background-color: white;
  color: black;
  transition: var(--transition);
}


.form-control:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-control::placeholder {
  color: #555;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  display: inline-block;
  padding: 14px 25px;
  background-color: white;
  color: var(--primary-color);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  width: 100%;
}

.btn-submit:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.invalid-feedback {
  color: #ffc107;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.form-control.is-invalid {
  border-color: #ffc107;
}

.form-control.is-invalid+.invalid-feedback {
  display: block;
}

/* Responsive styles */
@media (max-width: 1199px) {
  .hero-content-wrapper {
    padding: 60px 50px;
  }
}

@media (max-width: 991px) {

  .hero-content-wrapper,
  .hero-form-area {
    min-height: auto;
    padding: 50px 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content .main-heading,
  .hero-content .highlight {
    font-size: 36px;
  }

  .consultation-form {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .hero-content-wrapper {
    padding: 40px 20px;
  }

  .hero-content .main-heading,
  .hero-content .highlight {
    font-size: 32px;
  }

  .hero-content .tagline {
    font-size: 18px;
  }

  .btn-view-portfolio {
    width: 100%;
    justify-content: center;
  }

  .consultation-form {
    padding: 30px 20px;
    max-width: 320px;
    margin: 0 auto;
  }

  .consultation-form h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.section-header {
  margin-bottom: 50px;
  text-align: center;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: inline-block;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
  display: block;
  padding-bottom: 0;
}

.section-header h2:after {
  display: none;
}

.section-header h2.highlight {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #666;
}

.service-card {
  background-color: var(--light-gray);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: var(--transition);
  box-shadow: none;
  border: none;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.service-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}

.service-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  margin-bottom: 0;
  color: #555;
  font-size: 14px;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.service-features li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.service-features li:before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

/* Development Process Section */
.development-process-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.process-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step-card {
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.process-step-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-color);
}

.process-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.process-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 10px 15px;
  transition: var(--transition);
}

.process-item:hover {
  background-color: rgba(0, 51, 160, 0.05);
}

.process-item i {
  color: var(--primary-color);
  font-size: 16px;
  margin-right: 8px;
}

.process-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
}

.process-item.highlighted {
  background-color: #e0f2fe;
  border: 1px solid var(--primary-color);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background-color: var(--primary-color);
  color: white;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: white;
  color: var(--primary-color);
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-2px);
}

/* Industries Section */
.industries-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.cta-banner {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.cta-banner:before,
.cta-banner:after {
  content: '';
  position: absolute;
  background-image: url('../img/icons/web-icon.png');
  background-repeat: no-repeat;
  background-size: 60px;
  width: 60px;
  height: 60px;
  opacity: 0.2;
}

.cta-banner:before {
  top: 20px;
  left: 20px;
  transform: rotate(-15deg);
}

.cta-banner:after {
  bottom: 20px;
  right: 20px;
  transform: rotate(15deg);
}

.cta-banner-content {
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}

.btn-white {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.industries-content {
  margin-bottom: 40px;
}

.industries-subtitle {
  color: #777;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.industries-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
}

.industries-content h2.highlight {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.industries-content p {
  max-width: 700px;
  margin-bottom: 40px;
  color: #555;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.industry-card {
  background-color: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  background-color: white;
}

.industry-icon {
  width: 60px;
  height: 60px;
  background-color: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.industry-icon i {
  color: var(--primary-color);
  font-size: 22px;
}

.industry-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
}

/* Technologies Section */
.technologies-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.technologies-subtitle {
  color: #777;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.technologies-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-color);
}

.technologies-content h2 .highlight {
  color: var(--primary-color);
}

.technologies-content p {
  max-width: 700px;
  margin-bottom: 40px;
  color: #555;
}

.tech-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.tech-group {
  flex: 1;
  min-width: 200px;
}

.tech-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.tech-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 12px;
}

.tech-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.5px;
}

/* Responsive styles for industries and technologies sections */
@media (max-width: 1199px) {
  .industry-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .industry-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-lists {
    flex-direction: column;
    gap: 20px;
  }

  .tech-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .tech-item {
    margin-bottom: 0;
  }

  .cta-banner {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .industry-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-content p {
    font-size: 16px;
  }

  .industries-content h2,
  .technologies-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .industry-cards {
    grid-template-columns: 1fr;
  }

  .tech-group {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 100px 0;
  background-color: var(--white-color);
}

.why-choose-us-header {
  margin-bottom: 40px;
}

.why-choose-us-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-us-header .highlight {
  color: var(--primary-color);
}

.why-choose-us-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.feature-card {
  background-color: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.feature-icon i {
  color: var(--primary-color);
  font-size: 30px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.faq-header {
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-header .highlight {
  color: var(--primary-color);
}

.faq-header p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  border: none;
  background-color: transparent;
  margin-bottom: 15px;
}

.accordion-button {
  background-color: white;
  border-radius: 10px !important;
  font-weight: 600;
  color: var(--text-color);
  font-size: 16px;
  padding: 20px 25px;
  box-shadow: var(--shadow-sm);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: white;
  box-shadow: var(--shadow-sm);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 51, 160, 0.1);
}

.accordion-button::after {
  background-size: 18px;
  transition: var(--transition);
}

.accordion-body {
  background-color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 20px 25px;
}

.accordion-body p {
  color: #555;
  margin-bottom: 0;
}

/* FAQ Section Updates */
.blue-cta {
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.blue-cta-content {
  display: flex;
  align-items: center;
  padding: 30px 20px;
  position: relative;
}

.cta-icon-left {
  position: absolute;
  left: 50px;
  bottom: 0;
  opacity: 0.7;
}

.cta-icon-left img {
  width: 100px;
  height: auto;
}

.cta-icon-right {
  position: absolute;
  right: 50px;
  top: 0;
  opacity: 0.7;
}

.cta-icon-right img {
  width: 100px;
  height: auto;
}

.cta-text {
  text-align: center;
  width: 100%;
  z-index: 1;
}

.cta-text h3 {
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Responsive adjustments for blue CTA */
@media (max-width: 991px) {

  .cta-icon-left,
  .cta-icon-right {
    display: none;
  }

  .cta-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .cta-text h3 {
    font-size: 20px;
  }

  .blue-cta-content {
    padding: 25px 15px;
  }
}

/* Responsive adjustments for Why Choose Us and FAQ sections */
@media (max-width: 991px) {

  .why-choose-us-header h2,
  .faq-header h2 {
    font-size: 32px;
  }

  .feature-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {

  .why-choose-us-header h2,
  .faq-header h2 {
    font-size: 28px;
  }

  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 26px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 15px 20px;
  }
}

/* Ensure active link has proper contrast on all backgrounds */
.navmenu ul li a.active {
  color: #0033a0 !important;
  font-weight: 600;
  position: relative;
}

.navmenu ul li a.active:after {
  content: '';
  position: absolute;
  width: 80%;
  height: 2px;
  background-color: #0033a0;
  bottom: -4px;
  left: 10%;
}















.portfolio-slider-wrapper {
  overflow: hidden;
  width: 100%;

}

.portfolio-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.portfolio-slider::-webkit-scrollbar {
  display: none;
}

.portfolio-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.portfolio-slide {
  display: flex;
  /* flex: 0 0 100%; */
  scroll-snap-align: start;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-item-info-tt{
  width: 80%;
}

.portfolio-item-info-tt h3 {
  margin-top: 0;
}

.widebloktag{
  margin-bottom: 5px;
}
.widebloktag span {
  display: inline-block;
  background: #eee;
  padding: 5px 10px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-color);
}

.btn-outline {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 1px solid #000;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.btn-outline:hover {
  background: #000;
  color: #fff;
}

.portfolio-wide-image img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-slide {
    flex: 0 0 80%;
  }
}

@media (min-width: 1200px) {
  .portfolio-slide {
    flex: 0 0 90%;
  }
}