/* IT Consultants Page Specific Styles */

/* Hero Section */
@media(max-width:768px){
  section.it-hero{
    height: auto;
    padding-top: 150px;
    padding-bottom: 40px;
  }
  .container,
  .it-hero-text {
    height: auto; /* let content decide */
  }
  .hero-cta{
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
  }
  .it-hero-content{
    display: flex;
    flex-direction: column;
  }
  .it-hero-image img{
    height: auto;
    width: 100%;
    border-radius: 10px;

  }
  .hero-cta a {
    width: 300px;           /* optional, looks clean */
    height: 50px;

  }
  .hero-features{
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .feature-item span{
  flex:1;
  width: auto;
}
.service-image{
  display: none;
}
}
.it-hero {
    background: linear-gradient(135deg, #007bff, #d9f5ff);
    height: auto;
    padding-top: 200px;
    padding-bottom: 100px;
}

.it-hero-content {
  display: flex;
  align-items: center;
  color: white;
}
.feature-item span{
  flex:1;

}
.it-hero-text {
  flex: 1;
  margin-right: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  color: white;
  font-size: 14px;
  gap: 8px;
}
.feature-item i{
  color:white;
}

.hero-cta .btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: auto;
  background: white;
  color: #0066cc;
  width: 100%;
}
.btn-secondary {
  background-color: white;
  color: #004e68;
  border: 1px solid #004e68;
  padding: 20px 10px;
  border-radius: 20px;
  font-size: 15px;
  height: auto;
  width: auto;
}

.btn-secondary:hover {
  background-color: #4f67f9;
  color:white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.subtitle{
  color:white
}
@media (max-width: 768px) {
  .feature-item{
    margin-right: 120px;
  }
}
/* Services Section */
.it-services-section {
  padding: 80px 0;
  background-color: #fff;
}

.services-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.service-tab {
  padding: 12px 25px;
  border-radius: 30px;
  background: #f5f7ff;
  border: 1px solid #e0e6ff;
  color: #4e66f8;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-tab i {
  font-size: 1.2rem;
}

.service-tab:hover {
  background: #e0e6ff;
}

.service-tab.active {
  background: #4e66f8;
  color: #fff;
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
}

.service-details {
  display: flex;
  gap: 50px;
  align-items: center;
}

.service-info {
  flex: 1;
}

.service-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-features {
  margin: 25px 0;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.feature i {
  color: #4e66f8;
  margin-top: 3px;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.service-price {
  color: #4e66f8;
  font-weight: 500;
}

/* Consultant Finder Section */
.consultant-finder-section {
  padding: 80px 0;
  background-color: #f8faff;
}

.finder-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
}

.finder-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.finder-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e0e6ff;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.progress-step span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e0e6ff;
  color: #7a8ef8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 10px;
  border: 2px solid #e0e6ff;
}

.progress-step p {
  font-size: 0.9rem;
  color: #7a8ef8;
  text-align: center;
}

.progress-step.active span {
  background: #4e66f8;
  color: #fff;
  border-color: #4e66f8;
}

.progress-step.active p {
  color: #4e66f8;
  font-weight: 500;
}

.finder-step {
  display: none;
}

.finder-step.active {
  display: block;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.option-card {
  border: 1px solid #e0e6ff;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.option-card i {
  font-size: 2rem;
  color: #4e66f8;
  margin-bottom: 15px;
}

.option-card h4 {
  margin-bottom: 5px;
  color: #2c3e50;
}

.option-card p {
  color: #666;
  font-size: 0.9rem;
}

.option-card:hover {
  border-color: #4e66f8;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(78, 102, 248, 0.1);
}

.option-card input:checked + .option-content {
  background: #f5f7ff;
  border-radius: 8px;
}

.step-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.btn-prev, .btn-next, .btn-submit {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-prev {
  background: #f5f7ff;
  color: #4e66f8;
  border: 1px solid #e0e6ff;
}

.btn-prev:hover {
  background: #e0e6ff;
}

.btn-next, .btn-submit {
  background: #4e66f8;
  color: #fff;
}

.btn-next:hover, .btn-submit:hover {
  background: #3a4fd4;
}

.finder-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 4rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.finder-success h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.finder-success p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: #fff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-card {
  background: #f8faff;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.benefit-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.benefit-card p {
  color: #666;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background-color: #f8faff;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: inherit;
}

.category-icon {
  font-size: 2.5rem;
  color: #4e66f8;
  margin-bottom: 20px;
}

.category-card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.category-card p {
  color: #666;
  margin-bottom: 15px;
}

.consultant-count {
  display: inline-block;
  background: #f5f7ff;
  color: #4e66f8;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* CTA Section */
.it-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c84c0 0%, #0c5e7a 100%);
  color: #fff;
  text-align: center;
}

.it-cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
}

.it-cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-content p{
color: white;}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .option-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .step-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-prev, .btn-next, .btn-submit {
    width: 100%;
    justify-content: center;
  }
}
/* FOOTER BASE */
.footer {
  background: linear-gradient(180deg, #0b1628 0%, #0a1222 100%);
  color: #cfd6e4;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* CONTAINER */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

/* LOGO + ABOUT */
.footer-about {
  margin-top: 18px;
  line-height: 1.6;
  color: #aeb7c6;
}

/* HEADINGS */
.footer h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #8fa3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #4da3ff;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  margin-right: 10px;
}
.footer-email {
  flex: 1;
  padding: 8px 10px;
  border-radius: 0;
  border: none;
  outline: none;
  font-size: 15px;
  height: 30px;
}

.footer-button {
  background: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  border-radius: 0;
  height: 30px;
}

.footer-button i {
  color: #0b1628;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #4aa84a;
}

/* DIVIDER */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8fa3c8;
}

/* BOTTOM LINKS */
.footer-links a {
  color: #8fa3c8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}
@media (max-width: 576px) {
  .option-grid {
    grid-template-columns: 1fr;
  }
  
  .finder-container {
    padding: 25px;
  }
  
  .benefits-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
}
.form-group{
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}
.form-group label{
  font-size: 19px;
  margin-bottom: 10px;
}
.form-group select{
  height: 40px;
  width: auto;
  border-radius: 30px;
  border: 1px solid #4f66f8;
  padding: 10px;
}
.form-group textarea{
    height: 40px;
  width: auto;
  border-radius: 30px;
  border: 1px solid #4f66f8;
  padding: 10px;
}
.finder-step .form-group label{
  font-size: 19px;
  margin-bottom: 10px;
}
.finder-step .form-group input{
    height: 40px;
  width: auto;
  border-radius: 30px;
  border: 1px solid #4f66f8;
  padding: 10px;
}
.form-group.checkbox-group{
  flex-direction: row;
  justify-content: center;
}
.form-group.checkbox-group label{
  font-size: 18px;
  padding-top: 10px;

}
.form-group.checkbox-group input{
  height: 50px;
  margin-right: 10px;
}