/* ================================================================= SERVICES HERO SECTION STYLES ================================================================= */

/* Services Hero Section Container */
.services-hero-section {
  width: 100%;
  min-height: 100vh;
  background-image: url('styles/Images/Homepage/Service-Hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 180px 60px 120px 60px;
  box-sizing: border-box;
}

/* Optional overlay for text readability */
.services-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Services Hero Container */
.services-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 60px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Services Hero Content */
.services-hero-content {
  max-width: 720px;
  text-align: left;
}

/* Services Hero Title */
.services-hero-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 56px;
  color: #023E8A;
  line-height: 1.2;
  margin: 0 0 20px 0;
  text-align: left;
}

/* Services Hero Subtitle */
.services-hero-subtitle {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  color: #000000;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 0 32px 0;
  text-align: left;
}

/* Services Hero Buttons */
.services-hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Services Hero Button Base */
.services-hero-btn {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px 24px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* Primary Button */
.services-hero-btn-primary {
  background: #7B1A2D;
  color: #FFFFFF;
}

.services-hero-btn-primary:hover {
  background: #5B0A19;
  color: #FFFFFF;
}

/* Secondary Button */
.services-hero-btn-secondary {
  background: transparent;
  color: #7B1A2D;
  border: 1px solid #7B1A2D;
}

.services-hero-btn-secondary:hover {
  background: #7B1A2D;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 1279px) {
  .services-hero-section {
    padding: 160px 60px 120px 60px;
  }
  
  .services-hero-title {
    font-size: 48px;
  }
  
  .services-hero-subtitle {
    font-size: 18px;
  }
  
  .services-hero-btn {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .services-hero-section {
    padding: 140px 50px 100px 50px;
  }
  
  .services-hero-title {
    font-size: 40px;
  }
  
  .services-hero-subtitle {
    font-size: 18px;
  }
  
  .services-hero-buttons {
    gap: 12px;
  }
  
  .services-hero-btn {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .services-hero-section {
    padding: 120px 40px 80px 40px;
  }
  
  .services-hero-title {
    font-size: 28px;
  }
  
  .services-hero-subtitle {
    font-size: 16px;
  }
  
  .services-hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .services-hero-btn {
    font-size: 14px;
    padding: 10px 18px;
    width: 100%;
    text-align: left;
  }
}

/* ================================================================= SERVICE DESCRIPTION SECTION STYLES ================================================================= */

/* Service Description Section Container */
.service-description-section {
  width: 100%;
  margin: 0 auto;
  padding: 120px 60px !important;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

/* Service Description Container */
.service-description-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Description Text */
.service-description-text {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  margin: 0 0 24px 0;
  text-align: left;
}

.service-description-text:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1279px) {
  .service-description-section {
    padding: 100px 50px !important;
  }
  
  .service-description-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .service-description-section {
    padding: 80px 40px !important;
  }
  
  .service-description-text {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .service-description-section {
    padding: 60px 30px !important;
  }
  
  .service-description-text {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ================================================================= SERVICES OVERVIEW SECTION STYLES ================================================================= */

/* Services Overview Section Container */
.services-overview-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px !important;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

/* Services Overview Container */
.services-overview-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* Services Overview Title */
.services-overview-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 48px;
  color: #023E8A;
  margin: 0 0 16px 0;
  text-align: left;
}

/* Services Overview Subtitle */
.services-overview-subtitle {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 20px;
  color: #000000;
  margin: 0 0 48px 0;
  text-align: left;
}

/* Services Overview Grid */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: start;
}

/* Service Card */
.service-card {
  width: 100%;
  max-width: 300px;
  background: #E4E4E4;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Service Icon */
.service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Service Card Title */
.service-card-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 24px;
  color: #023E8A;
  margin-top: 36px;
}

/* Service Card Description */
.service-card-description {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin-top: 4px;
}


/* Responsive Design */
@media (max-width: 1279px) {
  .services-overview-section {
    padding: 60px 30px !important;
  }
  
  .services-overview-title {
    font-size: 40px;
  }
  
  .services-overview-subtitle {
    font-size: 18px;
  }
  
  .services-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .services-overview-section {
    padding: 50px 20px !important;
  }
  
  .services-overview-title {
    font-size: 32px;
  }
  
  .services-overview-subtitle {
    font-size: 16px;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .service-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .services-overview-section {
    padding: 40px 15px !important;
  }
  
  .services-overview-title {
    font-size: 28px;
  }
  
  .services-overview-subtitle {
    font-size: 14px;
  }
  
  .service-card {
    padding: 20px;
  }
  
  .service-card-title {
    font-size: 20px;
  }
  
  .service-card-description {
    font-size: 14px;
  }
}

/* ================================================================= CASE STUDY SECTION STYLES ================================================================= */

/* Case Study Section Container */
.case-study-section {
  width: 100%;
  padding: 40px 60px !important;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

/* Case Study Container */
.case-study-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Left Column (Text Content) */
.case-study-content {
  flex: 1;
  max-width: 600px;
}

/* Case Study Label */
.case-study-label {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  color: #5B0A19;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
}

/* Case Study Title */
.case-study-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 40px;
  color: #023E8A;
  line-height: 1.3;
  margin: 0 0 20px 0;
}

/* Case Study Description */
.case-study-description {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 18px;
  color: #000000;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 32px 0;
}

/* Case Study Buttons */
.case-study-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Case Study Button Base */
.case-study-btn {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* Primary Button */
.case-study-btn-primary {
  background: #7B1A2D;
  color: #FFFFFF;
}

.case-study-btn-primary:hover {
  background: #5B0A19;
  color: #FFFFFF;
}

/* Secondary Button */
.case-study-btn-secondary {
  background: transparent;
  color: #7B1A2D;
  border: 1px solid #7B1A2D;
}

.case-study-btn-secondary:hover {
  background: #7B1A2D;
  color: #FFFFFF;
}

/* Right Column (Performance Metrics) */
.case-study-metrics {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Metric Card */
.metric-card {
  background: #F8FCFF;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

/* Metric Title */
.metric-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  color: #023E8A;
  margin: 0 0 8px 0;
}

/* Metric Description */
.metric-description {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1279px) {
  .case-study-section {
    padding: 100px 50px !important;
  }
  
  .case-study-container {
    gap: 40px;
  }
  
  .case-study-title {
    font-size: 36px;
  }
  
  .case-study-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .case-study-section {
    padding: 80px 40px !important;
  }
  
  .case-study-container {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  
  .case-study-content {
    max-width: 100%;
  }
  
  .case-study-title {
    font-size: 32px;
  }
  
  .case-study-description {
    font-size: 16px;
    max-width: 100%;
  }
  
  .case-study-metrics {
    width: 100%;
  }
  
  .metric-card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .case-study-section {
    padding: 60px 30px !important;
  }
  
  .case-study-container {
    gap: 32px;
  }
  
  .case-study-title {
    font-size: 28px;
  }
  
  .case-study-description {
    font-size: 14px;
  }
  
  .case-study-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .case-study-btn {
    width: 100%;
    text-align: left;
  }
  
  .metric-title {
    font-size: 18px;
  }
  
  .metric-description {
    font-size: 14px;
  }
}

/* ================================================================= EXPERTISE & SERVICES SECTION STYLES ================================================================= */

/* Services Text Grid */
.services-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.services-text-column {
  display: flex;
  flex-direction: column;
}

.services-description {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
  text-align: left;
}

.services-cta-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.cta-box {
  background: linear-gradient(135deg, #023E8A 0%, #0077B6 100%);
  padding: 32px;
  border-radius: 12px;
  width: 100%;
  box-shadow: 0px 8px 24px rgba(2, 62, 138, 0.15);
}

.cta-text {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #FFFFFF;
  margin: 0 0 20px 0;
  text-align: left;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #023E8A;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #F8F9FA;
  color: #023E8A !important;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.cta-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
  transform: translateX(4px);
}

/* Responsive Design for Services Text Grid */
@media (max-width: 1279px) {
  .services-text-grid {
    gap: 30px;
  }
  
  .services-description {
    font-size: 15px;
  }
  
  .cta-text {
    font-size: 22px;
  }
  
  .cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .services-text-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .services-description {
    font-size: 14px;
  }
  
  .cta-text {
    font-size: 20px;
  }
  
  .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .cta-box {
    padding: 24px;
  }
}

/* Services Section Container */
.services-section {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 120px 60px !important;
  box-sizing: border-box !important;
  position: relative !important;
  display: block !important;
  background-color: #FFFFFF;
}

/* Services Container */
.services-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 120px 60px !important;
  box-sizing: border-box !important;
  display: block !important;
  text-align: left;
  position: relative;
}

/* Services Title */
.services-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 48px;
  color: #023E8A;
  margin: 0 0 40px 0;
  text-align: left;
  line-height: 1.2;
}

/* Services Slider Row */
.services-slider-row {
  width: 100%;
  position: relative;
}

/* Services Slider Wrapper */
.services-slider-wrapper {
  position: relative;
  width: 100%;
}

/* Services Slider Container */
.services-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 80px;
}

/* Services Slider */
.services-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* Services Slides */
.services-slides {
  display: flex;
  width: 100%;
}

/* Service Card */
.service-card {
  flex: 0 0 calc(33.333% - 11px);
  min-height: 400px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  margin-right: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 24px rgba(0,0,0,0.15);
  border-color: #023E8A;
}

/* Service Image */
.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  flex-shrink: 0;
}

/* Service Card Content */
.service-card-content {
  padding: 24px;
  margin: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

/* Service Title */
.service-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 20px;
  color: #023E8A;
  margin: 0 0 8px 0;
  line-height: 1.3;
  flex-shrink: 0;
}

/* Service Description */
.service-description {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Service Card Wrapper */
.service-card-wrapper {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 16px;
}

/* Services Navigation */
.services-nav {
  position: absolute !important;
  top: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 50%;
  cursor: pointer;
  transition: none !important;
  z-index: 1000 !important;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.services-nav:hover {
  background: #023E8A;
  border-color: #023E8A;
  transform: scale(1.1);
}

.services-nav:hover svg path {
  fill: #FFFFFF;
}

.services-prev {
  right: 70px !important;
}

.services-next {
  right: 20px !important;
}

/* Services Pagination */
.services-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.services-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #E0E0E0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-dot.active {
  background: #023E8A;
}

.services-dot:hover {
  background: #023E8A;
  transform: scale(1.2);
}

/* Responsive Design for Services Section */
@media (max-width: 1279px) {
  .services-section {
    padding: 100px 50px !important;
  }
  
  .services-title {
    font-size: 40px;
  }
  
  .service-card {
    flex: 0 0 calc(33.333% - 8px);
    margin-right: 12px;
  }
  
  .service-card-wrapper {
    flex: 0 0 calc(33.333% - 12px);
    margin-right: 12px;
  }
  
  .service-card-content {
    padding: 20px;
  }
  
  .services-prev {
    right: 65px;
  }
  
  .services-next {
    right: 15px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 40px !important;
  }
  
  .services-title {
    font-size: 32px;
  }
  
  .service-card {
    flex: 0 0 calc(33.333% - 8px);
    margin-right: 8px;
  }
  
  .service-card-wrapper {
    flex: 0 0 calc(50% - 8px);
    margin-right: 8px;
  }
  
  .service-card-content {
    padding: 18px;
  }
  
  .services-prev {
    right: 70px;
  }
  
  .services-next {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 30px !important;
  }
  
  .services-title {
    font-size: 28px;
  }
  
  .service-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
  
  .service-card-wrapper {
    flex: 0 0 100%;
    margin-right: 0;
  }
  
  .service-card-content {
    padding: 16px;
  }
  
  .services-prev {
    left: 5px;
  }
  
  .services-next {
    right: 5px;
  }
  
  .services-slider .service-card {
    flex: 0 0 100%;
  }
  
  .services-nav {
    display: none;
  }
}

/* ================================================================= EXPLORE MORE SERVICES SECTION STYLES ================================================================= */

/* Explore Services Section Container */
.explore-services-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 40px !important;
  box-sizing: border-box;
  background-color: #FFFFFF;
}

/* Explore Services Container */
.explore-services-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Explore Services Title */
.explore-services-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 40px;
  color: #023E8A;
  margin: 0 0 48px 0;
  text-align: left;
}

/* Explore Services Cards */
.explore-services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: start;
}

/* Explore Service Card */
.explore-service-card {
  width: 100%;
  max-width: 300px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Explore Service Card Image */
.explore-service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

/* Explore Service Card Title */
.explore-service-card-title {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-bold);
  font-size: 24px;
  color: #023E8A;
  margin: 16px 16px 8px 16px;
}

/* Explore Service Card Description */
.explore-service-card-description {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-regular);
  font-size: 16px;
  color: #000000;
  line-height: 1.5;
  margin: 0 16px 20px 16px;
  max-height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

/* Explore Service Card Button */
.explore-service-card-button {
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  color: #7B1A2D;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0 16px 20px 16px;
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease;
}

.explore-service-card-button:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1279px) {
  .explore-services-section {
    padding: 60px 30px !important;
  }
  
  .explore-services-title {
    font-size: 36px;
  }
  
  .explore-services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .explore-service-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .explore-services-section {
    padding: 50px 20px !important;
  }
  
  .explore-services-title {
    font-size: 32px;
  }
  
  .explore-services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .explore-service-card {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .explore-services-section {
    padding: 40px 15px !important;
  }
  
  .explore-services-title {
    font-size: 28px;
  }
  
  .explore-service-card-title {
    font-size: 20px;
  }
  
  .explore-service-card-description {
    font-size: 14px;
  }
}

