/* Service Pages Common Styles */

/* Hero Section - Blue Gradient Background */
.mainBackground {
  background: linear-gradient(180deg, #3a82aa 0%, #1e5a7a 70%, #0a0510 100%);
  min-height: 50vh;
  padding: 130px 0 2rem 0;
}

/* Hero Container */
.softwareBrandLogoContainer {
  padding-top: 2rem;
}

/* Breadcrumb */
.softwareBreadcrumbText {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.softwareBreadcrumbText strong {
  font-weight: 600;
}

/* Hero Title */
.softwareBrandLogoTitle {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: none;
}

/* Hero Subtitle */
.softwareBrandLogoShortDesc {
  color: #ffd700;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

/* Hero Description */
.softwareBrandLogoDesc {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.softwareBrandLogoDesc p {
  margin-bottom: 1rem;
}

@keyframes contactFloat {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); }
}

/* Hero Image */
.softwareBrandLogoImg {
  max-width: 60%;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
  animation: contactFloat 6s ease-in-out infinite;
}

/* Service Cards */
.softwareServicesCard {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.softwareServicesCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Feature Lists */
.softwareServicesList {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.softwareServicesList li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.softwareServicesList li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a82aa;
  font-weight: bold;
}

/* Section Titles */
.softwareSectionTitle {
  font-size: 36px;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 2rem;
  font-family: "Rajdhani", sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 1rem;
}

/* Dot Decorations */
.softwareDotTitleBlue {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 1rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.softwareDotIconBlue {
  text-align: center;
  color: #ff8c42;
  font-size: 12px;
  margin-bottom: 2rem;
}

.softwareDotIconBlue i {
  margin: 0 3px;
}

/* Buttons */
.softwareServicesTabButton,
.softwareButton {
  background: linear-gradient(135deg, #3a82aa 0%, #5aa3c8 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.softwareServicesTabButton:hover,
.softwareButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

/* Pricing Tables */
.softwarePricingCard {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.softwarePricingCard:hover {
  border-color: #3a82aa;
  transform: scale(1.05);
}

.softwarePricingCard.featured {
  border-color: #3a82aa;
  box-shadow: 0 8px 16px rgba(58, 130, 170, 0.2);
}

/* Screenshots / Images */
.softwareScreenshot {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .softwareBrandLogoTitle {
    font-size: 32px;
  }
  
  .softwareBrandLogoShortDesc {
    font-size: 18px;
  }
  
  .softwareBrandLogoImg {
    max-width: 80%;
  }
  
  .softwareSectionTitle {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .mainBackground {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .softwareBrandLogoTitle {
    font-size: 28px;
  }
  
  .softwareBrandLogoImg {
    max-width: 100%;
  }
}

/* FAQ Accordion Styles */
.softwareFaqImageDiv {
  text-align: center;
  margin-bottom: 2rem;
}

.softwareFaqTitle {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 3rem;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.softwareFaqAccordion {
  max-width: 900px;
  margin: 0 auto;
}

.softwareFaqItem {
  border: none;
  margin-bottom: 1rem;
  background: transparent;
}

.softwareFaqHeader {
  border: none;
  background: transparent;
}

.softwareFaqButton {
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.softwareFaqButton:not(.collapsed) {
  background: linear-gradient(135deg, #3a82aa 0%, #5aa3c8 100%);
  color: #ffffff;
  border-color: #3a82aa;
  box-shadow: 0 4px 8px rgba(58, 130, 170, 0.2);
}

.softwareFaqButton:hover {
  border-color: #3a82aa;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.softwareFaqButton:focus {
  box-shadow: 0 0 0 0.25rem rgba(58, 130, 170, 0.25);
}

.softwareFaqButton::after {
  content: "+";
  float: right;
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.softwareFaqButton:not(.collapsed)::after {
  content: "";
  transform: rotate(180deg);
}

.softwareFaqButtonText {
  flex: 1;
  text-align: left;
}

.accordion-collapse {
  position: relative;
  z-index: 1;
}

.accordion-collapse.collapsing {
  transition: height 0.35s ease;
}

.accordion-collapse.show {
  display: block;
}

.softwareFaqContent {
  padding: 1.5rem;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  background: #f8f9fa;
  border-radius: 0 0 10px 10px;
  margin-top: -10px;
  position: relative;
  z-index: 2;
}

.accordion-body {
  padding: 1.5rem;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  background: #f8f9fa;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

