
          /***** Pages.css → homepage-specific styles (hero, services, portfolio, testimonials, blog teaser, contact) *****/


.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #0A2540, #14B8A6, #3B82F6, #0A2540);
  background-size: 300% 300%;
  animation: bgMove 15s ease infinite;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background: rgba(10, 37, 64, 0.45);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: var(--fs-h1);
  line-height: var(--line-tight);
  margin-bottom: 1rem;
}

/* .text-gradient {
  background: linear-gradient(90deg, #14B8A6, #3B82F6, #14B8A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s linear infinite;
  background-size: 200% 200%;
} */

/* @keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} 


                                            /* Services section */
.services {
  padding: 6rem 1.5rem;
  background: var(--color-base);
  color: var(--color-secondary);
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: var(--fs-h2);
  font-weight: var(--weight-bold);
  margin-bottom: 1rem;
  text-align: center;
}

.services-subtitle {
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: var(--fs-body);
  color: #4B5563;
  line-height: 1.7;
}


.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; /* default mobile: 1x1 */
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr; /* default mobile: 1x1 */
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet: 2x2 */
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr); /* desktop: 3x3 */
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--accent-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-secondary);
  font-size: 1.8rem;
}

.icon-wrapper img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: 0.75rem;
  color: var(--color-secondary);
}

.service-card p {
  color: #4B5563;
  font-size: var(--fs-small);
  line-height: 1.6;
}

.services-cta {
  margin-top: 4rem;
}

.service-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
        
  .service-link:hover {
      color: var(--accent-hover);
      transform: translateX(5px);
  }

.btn-primary {
  display: inline-block;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: var(--weight-medium);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-light);
}

                                          /* ================================
                                            PORTFOLIO SECTION
                                            ================================ */

.portfolio {
  padding: 6rem 1.5rem;
  background: #FFFFFF;
  color: var(--color-secondary);
}

.portfolio .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-title {
  font-size: var(--fs-h2);
  font-weight: var(--weight-bold);
  margin-bottom: 1rem;
}

.portfolio-subtitle {
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: var(--fs-body);
  color: #4B5563;
  line-height: 1.7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: rgba(10, 37, 64, 0.9);
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-overlay h3 {
  margin-bottom: 0.5rem;
  font-size: var(--fs-h4);
  font-weight: var(--weight-semibold);
}

.portfolio-overlay p {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-cta {
  margin-top: 4rem;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: var(--weight-medium);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text-light);
}


.testimonials {
  background: var(--color-base);
  padding: 6rem 1rem;
  text-align: center;
}

.testimonials h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: var(--line-base);
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  font-weight: var(--weight-regular);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.testimonial-author h4 {
  font-size: var(--fs-h5);
  font-weight: var(--weight-semibold);
  color: var(--color-secondary);
  margin: 0;
}

.testimonial-author span {
  font-size: var(--fs-small);
  color: var(--color-accent);
}

.testimonial-cta {
  margin-top: 3rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--btn-hover);
}


                                                  /* About page */

.about-page section {
  padding: 4rem 1rem;
}

.about-section {
  padding: 6rem 2rem;
  background: var(--color-base);
  color: var(--color-secondary);
  margin-top: 2rem;
  
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Styling */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Content */
.about-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.about-content p {
  margin-bottom: 1rem;
  line-height: var(--line-base);
  color: #4b5563;
}

.btn-primary {
  display: inline-block;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover { background: var(--accent-hover); }

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-video { margin-bottom: 2rem; }
}


.sc-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Mission & Vision */
.sc-mission-vision {
    padding: 100px 0;
}

.sc-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.sc-section-title__heading {
    font-size: 2.5rem;
    color: var(--sc-primary);
    margin-bottom: 15px;
}

.sc-section-title__description {
    color: var(--sc-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.sc-cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-direction: column;
}
@media (min-width: 768px) {
    .sc-cards-container {
        flex-direction: row;
    }
}

.sc-card {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--sc-transition);
    text-align: center;
    justify-content: center;
}

.sc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sc-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--sc-accent), #0A8C7F);

}

.sc-card__icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-secondary);
}

.sc-card__title {
    font-size: 1.5rem;
    color: var(--sc-primary);
    margin-bottom: 15px;
}

.sc-card__description {
    color: var(--sc-text-light);
}

/* Services */
.sc-services {
    padding: 100px 0;
    background-color: var(--sc-white);
}

.sc-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sc-service-card {
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: var(--sc-transition);
    text-align: center;
}

.sc-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sc-service-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--sc-accent), #0A8C7F);
}

.sc-service-card__icon svg {
    width: 25px;
    height: 25px;
    color: var(--color-secondary);
}

.sc-service-card__title {
    font-size: 1.25rem;
    color: var(--sc-primary);
    margin-bottom: 15px;
}

.sc-service-card__description {
    color: var(--sc-text-light);
    font-size: 0.95rem;
}

/* Stats */
.sc-stats {
    padding: 100px 0;
    background-color: var(--sc-primary);
    color: var(--sc-white);
}

.sc-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.sc-stat-item__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sc-accent);
    margin-bottom: 10px;
}

.sc-stat-item__label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team */
.sc-team {
    padding: 100px 0;
}

.sc-team-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.sc-team-text {
    flex: 1;
    padding: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sc-team-text__title {
    font-size: 2rem;
    color: var(--sc-primary);
    margin-bottom: 20px;
}

.sc-team-text__description {
    color: var(--sc-text-light);
    margin-bottom: 20px;
}

.sc-team-video {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sc-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.sc-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* Clients */
.sc-clients {
    padding: 100px 0;
    background-color: var(--sc-white);
}

.sc-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.sc-client-logo {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--sc-transition);
    text-align: center;
}

.sc-client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.sc-client-logo img {
    max-width: 150px;
    height: auto;
}

/* CTA */
.sc-cta {
    padding: 100px 0;
    background: var(--color-base);
    color: var(--sc-white);
    text-align: center;
}

.sc-cta__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sc-cta__description {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.sc-cta-button {
    display: inline-block;
    padding: 15px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--sc-tex);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--sc-transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: var(--sc-accent);
}

.sc-cta-button:hover {
    transform: translateY(-3px);
}

.about-value h2,
.about-credibility h2,
.about-human h2,
.about-services h2,
.about-cta h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-h2);
  font-weight: var(--weight-bold);
  color: var(--color-secondary);
  text-align: center;
  margin-bottom: 2rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.value-item h3 {
  font-size: var(--fs-h3);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: var(--fs-body);
  font-weight: var(--weight-regular);
  color: var(--color-secondary);
  line-height: var(--line-base);
}

.credibility-logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.credibility-logos img {
  max-height: 50px;
  object-fit: contain;
}

.credibility-text {
  text-align: center;
  font-size: var(--fs-body);
  color: var(--color-secondary);
}

.human-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.human-text {
  flex: 1 1 300px;
}

.human-image img {
  width: 250px;
  border-radius: var(--radius);
  object-fit: cover;
}


.service-item {
  background: var(--color-accent-gradient);
  color: var(--text-light);
  font-weight: var(--weight-semibold);
  font-size: var(--fs-body);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.about-cta {
  background: var(--color-secondary);
  color: var(--text-light);
  text-align: center;
  padding: 5rem 1rem;
}

.about-cta h2 {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.about-testimonial blockquote {
  font-size: var(--fs-body);
  font-style: italic;
  color: var(--color-secondary);
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-testimonial cite {
  display: block;
  margin-top: 0.5rem;
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--btn-hover);
}

/* contact page */
                                  /* ================================
                                    CONTACT PAGE STYLES
                                    ================================ */

section {
  padding: 4rem 1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.contact-hero .btn-primary {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  font-weight: var(--weight-semibold);
  border-radius: var(--radius);
  transition: var(--transition);
}

.contact-hero .btn-primary:hover {
  background: var(--btn-hover);
}

.contact-options .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-form form {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: var(--weight-medium);
}

input, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  transition: var(--transition);
}

input:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.contact-info ul {
  list-style: none;
  padding: 0;
  background: var(--color-base);
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.contact-info li {
  margin-bottom: 1rem;
  font-weight: var(--weight-medium);
}

.contact-cta {
  text-align: center;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  border-radius: var(--radius);
  margin-top: 4rem;
  padding: 3rem 1rem;
}

.contact-cta .btn-primary {
  background: var(--text-light);
  color: var(--color-secondary);
}

.contact-final {
  text-align: center;
  margin-top: 3rem;
  font-weight: var(--weight-medium);
}

@media (max-width: 768px) {
  .contact-options .contact-grid {
    grid-template-columns: 1fr;
  }
}

                                                  /* faqs page */
.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 2rem auto;
  }

  .faq-section h1 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
  }

  .faq-section .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
  }

  .faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: var(--primary-color);
  }

  .faq-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }

  .faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-color);
  }


                                /* Portfolio page */
  .portfolio-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .portfolio-section h1 {
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .portfolio-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--color-secondary);
    opacity: 0.8;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  }

  .portfolio-item {
    background: var(--color-base);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .portfolio-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .portfolio-content {
    padding: 1.5rem;
  }

  .portfolio-content h2 {
    font-size: var(--fs-h4);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
  }

  .portfolio-content p {
    color: var(--color-secondary);
    opacity: 0.85;
    font-size: var(--fs-small);
    margin-bottom: 1.2rem;
  }

  .portfolio-link {
    display: inline-block;
    font-weight: var(--weight-semibold);
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .portfolio-link:hover {
    color: var(--accent-hover);
  }

                                  /* ================================
                                  PORTFOLIO PROJECT PAGE
                                  ================================ */

.project-hero {
  background: var(--color-accent-gradient);
  color: var(--text-light);
  text-align: center;
  padding: 6rem 1rem 5rem;
}

.project-hero h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}

.project-hero p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.project-overview {
  padding: 4rem 1rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.overview-meta ul {
  list-style: none;
  padding: 0;
}

.overview-meta li {
  margin-bottom: 0.75rem;
  font-weight: var(--weight-medium);
}

.project-image {
  text-align: center;
  padding: 2rem 1rem;
}

.project-thumbnail {
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.project-results {
  background: var(--color-base);
  padding: 4rem 1rem;
}

.results-list {
  list-style: none;
  padding: 0;
}

.results-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.results-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.project-cta {
  background: var(--color-accent);
  color: var(--text-light);
  text-align: center;
  padding: 4rem 1rem;
}

.project-cta a.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  background: var(--text-light);
  color: var(--color-accent);
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: var(--transition);
}

.project-cta a.btn-primary:hover {
  background: var(--btn-hover);
  color: var(--text-light);
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

                                /* ================================
                                  SERVICES HOMEPAGE MAIN STYLES
                                ================================ */

.services-homepage-wrapper {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background: var(--color-base);
}

/* ---------- HERO ---------- */
.services-homepage-hero {
  text-align: center;
  padding: 6rem 1rem 4rem;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  border-radius: var(--radius);
}

.services-homepage-hero__title {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}

.services-homepage-hero__desc {
  font-size: var(--fs-h3);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.services-homepage-hero__cta {
  display: inline-block;
  background: var(--text-light);
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.services-homepage-hero__cta:hover {
  background: var(--btn-hover);
  color: var(--text-light);
}

/* ---------- SERVICES LIST ---------- */
.services-homepage-list {
  padding: 4rem 1rem;
}

.services-homepage-list__title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-secondary);
}

.services-homepage-card {
  background: var(--color-base);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-homepage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.services-homepage-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.services-homepage-card__desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--color-secondary);
  opacity: 0.9;
}

.services-homepage-card__list {
  list-style: none;
  padding-left: 0;
}

.services-homepage-list .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services-homepage-card__list-item {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.75rem;
}

.services-homepage-card__list-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ---------- VALUE PROPOSITION ---------- */
.services-homepage-value {
  padding: 4rem 1rem;
  text-align: center;
}

.services-homepage-value__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.services-homepage-value__desc {
  font-size: var(--fs-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.services-homepage-cta {
  text-align: center;
  padding: 4rem 1rem;
}

.services-homepage-cta__title {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}

.services-homepage-cta__button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--text-light);
  font-weight: var(--weight-semibold);
  padding: 1rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.services-homepage-cta__button:hover {
  background: var(--accent-hover);
  color: var(--text-light);
}

/* ---------- RESPONSIVE GRID ---------- */
@media (min-width: 768px) {
  .services-homepage-list .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-homepage-list .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
  
                                      /* Services Individual page */
    .service-page {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
  }

  .service-hero h1 {
    font-size: var(--fs-h1);
    color: var(--color-secondary);
    margin-bottom: 1rem;
    text-align: center;
  }

  .service-hero p.lead {
    font-size: var(--fs-h3);
    color: var(--color-secondary);
    opacity: 0.85;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
  }

  .service-overview h2,
  .service-benefits h2 {
    color: var(--color-secondary);
    font-size: var(--fs-h3);
    margin-bottom: 1rem;
  }

  .service-overview p {
    color: var(--color-secondary);
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .service-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
  }

  .service-benefits li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }

  .service-benefits li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
  }

  .service-image {
    text-align: center;
    margin: 3rem 0;
  }

  .service-image img {
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .service-cta {
    text-align: center;
    background: var(--color-accent);
    color: var(--text-light);
    padding: 3rem 1rem;
    border-radius: var(--radius);
    margin-top: 3rem;
  }

  .service-cta h2 {
    font-size: var(--fs-h3);
    margin-bottom: 1rem;
  }

  .service-cta p {
    font-size: var(--fs-body);
    margin-bottom: 1.5rem;
  }

  .service-cta a.btn-primary {
    display: inline-block;
    background: var(--text-light);
    color: var(--color-accent);
    font-weight: var(--weight-semibold);
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
  }

  .service-cta a.btn-primary:hover {
    background: var(--btn-hover);
    color: var(--text-light);
  }



                                    /* ================================
                                    BLOG ARTICLE PAGE STYLES
                                  ================================ */

.blog-article-wrapper {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background: var(--color-base);
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* ---------- ARTICLE HEADER ---------- */
.blog-article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-article-title {
  font-size: var(--fs-h1);
  margin-bottom: 0.5rem;
}

.blog-article-meta {
  font-size: var(--fs-small);
  color: var(--color-accent);
  margin-bottom: 1.5rem;
}

.blog-article-featured-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ---------- ARTICLE CONTENT ---------- */
.blog-article-content {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-secondary);
}

.blog-article-content h2 {
  font-size: var(--fs-h3);
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.blog-article-content p {
  margin-bottom: 1.5rem;
}

/* ---------- ARTICLE CTA ---------- */
.blog-article-cta {
  background: var(--color-accent-gradient);
  color: var(--text-light);
  text-align: center;
  padding: 3rem 1rem;
  border-radius: var(--radius);
  margin-top: 4rem;
}

.blog-article-cta__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.blog-article-cta__desc {
  font-size: var(--fs-body);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.blog-article-cta__button {
  display: inline-block;
  background: var(--text-light);
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.blog-article-cta__button:hover {
  background: var(--btn-hover);
  color: var(--text-light);
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
  .blog-article-wrapper {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1200px) {
  .blog-article-wrapper {
    padding: 5rem 2rem;
  }
}


                                  /* ================================
                                    INDUSTRIES HOMEPAGE STYLES
                                  ================================ */

.industries-homepage-wrapper {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background: var(--color-base);
}

/* ---------- HERO ---------- */
.industries-homepage-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.industries-homepage-hero__title {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}

.industries-homepage-hero__desc {
  font-size: var(--fs-h3);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- INDUSTRIES GRID ---------- */
.industries-homepage-list .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.industry-card {
  background: var(--color-base);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.industry-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 1rem;
}

.industry-card__desc {
  font-size: var(--fs-body);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.industry-card__cta {
  display: inline-block;
  background: var(--color-accent);
  color: var(--text-light);
  padding: 0.7rem 2rem;
  border-radius: var(--radius);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: var(--transition);
}

.industry-card__cta:hover {
  background: var(--accent-hover);
}

/* ---------- VALUE PROPOSITION ---------- */
.industries-homepage-value {
  text-align: center;
  padding: 4rem 1rem;
}

.industries-homepage-value__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.industries-homepage-value__desc {
  font-size: var(--fs-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.industries-homepage-cta {
  text-align: center;
  padding: 4rem 1rem;
}

.industries-homepage-cta__title {
  font-size: var(--fs-h2);
  margin-bottom: 1.5rem;
}

.industries-homepage-cta__button {
  display: inline-block;
  background: var(--color-accent);
  color: var(--text-light);
  font-weight: var(--weight-semibold);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.industries-homepage-cta__button:hover {
  background: var(--accent-hover);
}

/* ---------- RESPONSIVE GRID ---------- */
@media (min-width: 768px) {
  .industries-homepage-list .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .industries-homepage-list .container {
    grid-template-columns: repeat(3, 1fr);
  }
}


                                /* ================================
                                  INDIVIDUAL INDUSTRY PAGE STYLES
                                ================================ */

.industry-page-wrapper {
  font-family: var(--font-primary);
  color: var(--color-secondary);
  background: var(--color-base);
}

/* ---------- HERO ---------- */
.industry-page-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
}

.industry-page-hero__title {
  font-size: var(--fs-h1);
  margin-bottom: 1rem;
}

.industry-page-hero__desc {
  font-size: var(--fs-h3);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.industry-page-hero__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ---------- OVERVIEW ---------- */
.industry-page-overview {
  text-align: center;
  padding: 3rem 1rem;
}

.industry-page-overview__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.industry-page-overview__desc {
  font-size: var(--fs-body);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- SOLUTIONS ---------- */
.industry-page-solutions {
  padding: 4rem 1rem;
}

.industry-page-solutions__title {
  font-size: var(--fs-h2);
  text-align: center;
  margin-bottom: 3rem;
}

.solution-card {
  background: var(--color-base);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.solution-card__title {
  font-size: var(--fs-h3);
  margin-bottom: 0.5rem;
}

.solution-card__desc {
  font-size: var(--fs-body);
  line-height: 1.7;
}

/* ---------- CASE STUDY ---------- */
.industry-page-case {
  text-align: center;
  padding: 4rem 1rem;
}

.industry-page-case__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.industry-page-case__desc {
  font-size: var(--fs-body);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- CTA ---------- */
.industry-page-cta {
  text-align: center;
  padding: 4rem 1rem;
  background: var(--color-accent-gradient);
  color: var(--text-light);
  border-radius: var(--radius);
}

.industry-page-cta__title {
  font-size: var(--fs-h2);
  margin-bottom: 1rem;
}

.industry-page-cta__desc {
  font-size: var(--fs-body);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.industry-page-cta__button {
  display: inline-block;
  background: var(--text-light);
  color: var(--color-accent);
  font-weight: var(--weight-semibold);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: var(--transition);
}

.industry-page-cta__button:hover {
  background: var(--btn-hover);
  color: var(--text-light);
}

/* ---------- RESPONSIVE ---------- */
@media (min-width: 768px) {
  .industry-page-solutions .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1200px) {
  .industry-page-solutions .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
