/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  background-color: white;
}

/* Primary Font - Poppins SemiBold */
h1, h2, h3, h4, h5, h6,
.hero-title,
.services-title,
.about-headline,
.service-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #274584;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  background-color: #ffffff;
  padding: 5px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-image {
  height: auto;
  max-height:90px;
  width: auto;
  display: block;
}

/* Navigation Styles */
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #2c3e50;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-link {
  text-decoration: none;
  color: #2c3e50;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #6C5CE7;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #274584;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #274584;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  background-color: #274584;
}

/* Main Content Styles */
main {
  min-height: calc(100vh - 200px);
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
 
}

.hero-slider .container {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Image Slider Background */
.hero-slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Slider Indicators */
.hero-indicators {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  margin-top: 0;
}

.hero-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero-indicator:hover {
  background: rgba(0, 0, 0, 0.7);
}

.hero-indicator.active {
  background: #000000;
  width: 32px;
  border-radius: 6px;
}

/* The Best Of Us Section */
.best-of-us-section {
  padding: 20px 0px 0px 0px;
  background-color: #ffffff;
}

.best-of-us-header {
  text-align: center;
 
}

.best-of-us-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #274584;
}

.title-part-1 {
  color: #f26f31;
  font-weight: 600;
}

.title-part-2 {
  color: #274584;
  font-weight: 600;
}

.best-of-us-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 400;
}

.best-of-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.best-card {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.best-card:hover {
  transform: translateY(-5px);
}

.best-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #274584;
  border-radius: 50%;
  border: 2px solid #274584;
  transition: border-color 0.3s ease;
}

.best-card-icon img,
.best-card-icon .best-card-icon-img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2000%) hue-rotate(210deg) brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.best-card:hover .best-card-icon {
  border-color: #274584;
}

.best-card:hover .best-card-icon img,
.best-card:hover .best-card-icon .best-card-icon-img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2000%) hue-rotate(210deg) brightness(1) contrast(1.1);
}

.best-card-icon svg {
  width: 80px;
  height: 80px;
  stroke: #274584;
}

.best-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #274584;
  margin-bottom: 15px;
}

.best-card-separator {
  width: 40px;
  height: 2px;
  background-color: #ddd;
  margin: 0 auto 20px;
}

.best-card-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Why UCBS FAQ Section */
.why-ucbs-section {
  padding: 20px 0;
  background-color: #ffffff;
}

.why-ucbs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-ucbs-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
}

.why-ucbs-title-1 {
  color: #f26f31;
}

.why-ucbs-title-2 {
  color: #274584;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #6F3CC3;
}

.faq-q-text {
  font-size: 20px;
  font-weight: 500;
  color: #2c3e50;
  flex: 1;
}

.faq-toggle {
  font-size: 28px;
  font-weight: 300;
  color: #666;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-toggle {
  color: #6F3CC3;
  transform: rotate(0deg);
}

.faq-item:not(.active) .faq-toggle {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 0 20px 0;
}

.faq-answer p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.faq-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 0;
}

.why-ucbs-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.why-ucbs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA Banner Section */
.cta-banner-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) contrast(1.2);
  z-index: 1;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff !important; /* White on dark background */
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-banner-subtitle {
  font-size: 20px;
  color: #cccccc;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-banner-btn {
  display: inline-block;
  position: relative;
  padding: 16px 40px;
  background-color: #2c3e50;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border: 2px solid #4BAED6;
  transition: all 0.3s ease;
  overflow: visible;
}

.cta-banner-btn:hover {
  background-color: #1a252f;
  transform: translateY(-2px);
}

.btn-text {
  position: relative;
  z-index: 2;
  display: inline-block;
}

.btn-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #4BAED6;
  z-index: 1;
}

.btn-corner.top-left {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.btn-corner.top-right {
  top: -6px;
  right: -6px;
  border-left: none;
  border-bottom: none;
}

.btn-corner.bottom-left {
  bottom: -6px;
  left: -6px;
  border-right: none;
  border-top: none;
}

.btn-corner.bottom-right {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

/* Testimonials Section */
/* Partners Section */
.partners-section {
  padding: 30px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #274584;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  animation: slidePartners 45s linear infinite;
  gap: 8px;
  width: max-content;
  will-change: transform;
  min-width: 100%;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 10px;
  min-width: 150px;
  transition: opacity 0.3s ease;
}

 

.partner-logo img {
  max-height: 80px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 1;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

@keyframes slidePartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

/* Responsive styles for Partners Section */
@media (max-width: 768px) {
  .hero-slider {
    height: 400px;
  }

  .hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-indicators {
    padding: 15px 0;
    gap: 10px;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-indicator.active {
    background: #000000;
    width: 26px;
  }

  .partners-section {
    padding: 40px 0;
  }
  
  .partners-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .partner-logo {
    height: 60px;
    padding: 0 15px;
  }
  
  .partner-logo img {
    max-height: 60px;
    max-width: 120px;
  }
  
  .partners-track {
    gap: 40px;
  }
}

.testimonials-section {
  padding: 10px 0;
  background-color: #ffffff;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}

.title-word-1 {
  color: #f26f31;
  font-weight: 600;
}

.title-word-2 {
  color: #274584;
  font-weight: 600;
}

.testimonials-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

.testimonials-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc(50% - 15px);
  min-width: calc(50% - 15px);
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.testimonial-quote-icon {
  font-size: 80px;
  color: #4BAED6;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 16px;
  color: #2c3e50;
  line-height: 1.7;
  margin-bottom: 30px;
}

.testimonial-speech-pointer {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #f5f5f5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 5px 0;
}

.testimonial-role {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.testimonial-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #4BAED6;
  background-color: transparent;
  color: #4BAED6;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-nav-btn:hover {
  background-color: #4BAED6;
  color: #ffffff;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: #4BAED6;
  width: 32px;
  border-radius: 6px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  border: 2px dashed #4BAED6;
  border-radius: 8px;
  background-color: #ffffff;
  color: #2c3e50;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: #4BAED6;
  color: #ffffff;
  border-color: #4BAED6;
}

.scroll-to-top span {
  line-height: 1.2;
}

/* About Section */
.about-section {
  padding:30px 0;
  background-color: #ffffff;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 60px;
  align-items: center;
}

.about-text-content {
  position: relative;
  display: flex;
  gap: 30px;
}

.about-accent-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.accent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #2c3e50;
}

.accent-line-bar {
  width: 3px;
  flex: 1;
  background-color: #2c3e50;
  min-height: 100px;
}

.about-text-inner {
  flex: 1;
}

.about-headline {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #274584;
}

.headline-part-1 {
  color: #274584;
  display: block;
}

.headline-part-2 {
  color: #274584;
  font-size: 1.2em;
  display: block;
  font-weight: 800;
}

.headline-part-3,
.headline-part-4 {
  color: #666;
  display: block;
  font-weight: 400;
}

.about-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
 
}

.about-read-more-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #2c3e50;
  background-color: #ffffff;
  color: #2c3e50;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.about-read-more-btn:hover {
  background-color: #2c3e50;
  color: #ffffff;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.about-image-item {
  overflow: hidden;
  border-radius: 4px;
}

.about-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-image-item:hover img {
  transform: scale(1.05);
}

.about-image-item:nth-child(1),
.about-image-item:nth-child(2) {
  aspect-ratio: 1 / 1;
}

.about-image-item:nth-child(3),
.about-image-item:nth-child(4) {
  aspect-ratio: 1 / 1;
}

/* Services Section */
.services-section {
  margin-top: 60px;
  background-color: #ffffff;
}

.services-title {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.services-title-our {
  color: #f26f31;
  font-weight: 600;
}

.services-title-services {
  color: #274584;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.service-card {
  background: #f7f7f7;
    padding: 20px 20px;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #274584;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.service-icon img,
.service-icon .best-card-icon-img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2000%) hue-rotate(210deg) brightness(0.9) contrast(1.1);
  transition: filter 0.3s ease;
}

.service-card:hover .service-icon {
  border-color: #274584;
}

.service-card:hover .service-icon img,
.service-card:hover .service-icon .best-card-icon-img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(100%) saturate(2000%) hue-rotate(210deg) brightness(1) contrast(1.1);
}

.service-icon svg {
  width: 60px;
  height: 60px;
  stroke: #274584;
}

.service-title {
  font-size: 22px;
  font-weight: 600;
  color: #274584;
  margin-bottom: 12px;
}

.service-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Contact Section - Google-like Design */
.contact-section {
  padding: 60px 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.contact-info {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.contact-heading {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  text-align: left;
}

.contact-heading-1 {
  color: #f26f31;
  font-weight: 600;
}

.contact-heading-2 {
  color: #274584;
  font-weight: 600;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  min-height: 100px;
}

.contact-slider {
  position: relative;
  width: 100%;
  min-height: 80px;
  overflow: visible;
}

.contact-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  visibility: hidden;
}

.contact-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.contact-value {
  display: block;
  margin-top: 8px;
  color: #202124;
  font-weight: 400;
}

.contact-value a {
  color: #202124;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: #274584;
  text-decoration: underline;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: #274584;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: currentColor;
  fill: none;
}

.contact-text {
  font-size: 16px;
  color: #5f6368;
  line-height: 1.5;
}

.contact-text strong {
  color: #202124;
  font-weight: 500;
  display: block;
  margin-bottom: 4px;
}

.contact-divider {
  height: 1px;
  background-color: #e8eaed;
  margin: 32px 0;
  width: 100%;
}

.contact-form-wrapper {
  background-color: #ffffff;
}

.contact-form-wrapper .contact-heading {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #5f6368;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.required {
  color: #ea4335;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s ease;
  width: 100%;
  background-color: #ffffff;
  color: #202124;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #80868b;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #274584;
  border-width: 2px;
  box-shadow: 0 0 0 1px rgba(39, 69, 132, 0.1);
}

.form-group textarea {
  resize: vertical;
 
  font-family: 'Montserrat', sans-serif;
}

.form-group-full {
  width: 100%;
  margin-bottom: 24px;
}

.recaptcha-wrapper {
  margin-top: 8px;
  margin-bottom: 24px;
}

.recaptcha-wrapper p {
  font-size: 12px;
  color: #5f6368;
  margin-top: 12px;
  line-height: 1.4;
}

.recaptcha-wrapper a {
  color: #1a73e8;
  text-decoration: none;
}

.recaptcha-wrapper a:hover {
  text-decoration: underline;
}

/* Thank You Modal */
.thank-you-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.thank-you-modal-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: #4CAF50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 48px;
  color: white;
  font-weight: bold;
}

.thank-you-modal-content h2 {
  color: #274584;
  font-size: 28px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.thank-you-modal-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.modal-close-btn {
  background-color: #274584;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
  background-color: #1a3358;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.submit-btn {
  position: relative;
  background-color: #274584;
  color: #ffffff;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  align-self: flex-start;
  letter-spacing: 0.25px;
  text-transform: none;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  display: inline-block;
}

.submit-btn:hover {
  background-color: #1e3563;
  box-shadow: 0 1px 3px 0 rgba(60,64,67,.3), 0 4px 8px 3px rgba(60,64,67,.15);
}

.submit-btn:active {
  box-shadow: 0 1px 2px 0 rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
}

.form-message {
  padding: 16px 20px;
  border-radius: 4px;
 
  font-size: 14px;
  line-height: 1.5;
 
}

.form-message.success {
  background-color: #e8f5e9;
  color: #1e7e34;
  border-left-color: #34a853;
}

.form-message.error {
  background-color: #fce8e6;
  color: #c5221f;
  border-left-color: #ea4335;
}

/* Service Inquiry Modal */
.service-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.service-modal-content {
  background-color: #ffffff;
  margin: auto;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  font-weight: bold;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.service-modal-close:hover {
  color: #274584;
}

.service-modal-title {
  font-size: 24px;
  font-weight: 600;
  color: #274584;
  margin-bottom: 25px;
  padding-right: 40px;
}

.service-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-inquiry-form .form-group {
  display: flex;
  flex-direction: column;
}

.service-inquiry-form input,
.service-inquiry-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.service-inquiry-form input::placeholder,
.service-inquiry-form textarea::placeholder {
  color: #999;
  opacity: 1;
}

.service-inquiry-form input:focus,
.service-inquiry-form textarea:focus {
  outline: none;
  border-color: #274584;
}

.service-inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

.service-inquiry-form .recaptcha-wrapper {
  margin: 10px 0;
  display: flex;
  justify-content: center;
}

.service-inquiry-form .recaptcha-wrapper .g-recaptcha {
  transform: scale(0.9);
  transform-origin: 0 0;
}

.service-inquiry-form .submit-btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .service-modal-content {
    padding: 25px 20px;
    margin: 20px;
  }

  .service-modal-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .service-modal-content {
    padding: 20px 15px;
    margin: 10px;
  }

  .service-modal-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .service-inquiry-form {
    gap: 15px;
  }
}

/* Page Banner Section */
.page-banner {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  background-color: #1a1a1a;
}

.page-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(3px);
  transform: scale(1.1);
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 69, 132, 0.7);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-title {
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.page-title-1 {
  color: #ffffff;
  font-weight: 400;
}

.page-title-2 {
  color: #ffffff;
  font-weight: 400;
}

.page-banner-underline {
  width: 120px;
  height: 4px;
  background-color: #ffc107;
  margin: 0 auto;
  border-radius: 2px;
}

/* About Us Section */
.about-us-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-us-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-us-title {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.2;
}

.title-about {
  color: #f26f31;
  font-weight: 600;
}

.title-us {
  color: #274584;
  font-weight: 600;
}

.about-top-section {
  margin-bottom: 60px;
}

.about-top-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text-block {
  padding-right: 20px;
}

.about-intro {
  font-size: 18px;
  color: #202124;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-services-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.about-services-list li {
  font-size: 18px;
  color: #202124;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.about-services-list li::before {
  content: "•";
  color: #274584;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

.about-top-image,
.about-bottom-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.about-top-image img,
.about-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-middle-section {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.about-numbered-list {
  list-style: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
}

.about-numbered-list li {
  counter-increment: item;
  font-size: 18px;
  color: #202124;
  line-height: 1.7;
  margin-bottom: 24px;
  padding-left: 50px;
  position: relative;
}

.about-numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  font-weight: 500;
  color: #274584;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border-radius: 50%;
}

.about-bottom-section {
  margin-top: 80px;
}

.about-bottom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-cta-block {
  text-align: left;
}

.about-cta-block .cta-box {
  margin: 0;
  width: 100%;
}

.cta-heading {
  font-size: 36px;
  font-weight: 400;
  color: #202124;
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-highlight {
  color: #274584;
  font-weight: 500;
}

.cta-subtext {
  font-size: 20px;
  color: #5f6368;
  margin: 0;
}

/* Footer Styles */
.main-footer {
  background-color: #274584;
  color: #ffffff;
   
  width: 100%;
  margin: 0;
}

.footer-hr {
  width: 100%;
  height: 2px;
  background-color: #4BAED6;
  margin: 0;
  border: none;
  display: block;
}

.main-footer .container {
  padding: 30px 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 400px;
}

.footer-logo-section {
  display: flex;
  align-items: center;
}

.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-image {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-contact-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.footer-contact-text {
  color: #ffffff;
  font-size: 14px;
}

.footer-contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: #4BAED6;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  color: #ffffff;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  margin: 0;
  color: #ffffff;
}

.footer-credit {
  font-size: 12px;
  color: #ffffff;
  font-style: normal;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-logo-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-image {
    max-height: 50px;
  }

  .footer-contact-section {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }
}

/* Form Styles */
input[type="text"],
input[type="email"],
textarea {
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #6C5CE7;
}

button[type="submit"] {
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #5a4dd6 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    gap: 0;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #e8eaed;
    font-size: 18px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: #274584;
    padding-left: 10px;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  .hero-slider {
    height: 600px;
  }

  .hero-slide-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .hero-indicators {
    bottom: 30px;
    gap: 12px;
  }

  .hero-indicator {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-indicator.active {
    background: #000000;
    width: 32px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.4;
  }

  .hero-content {
    max-width: 100%;
    padding: 20px;
    align-items: center;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .best-of-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .best-of-us-title {
    font-size: 36px;
  }

  .about-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-ucbs-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-ucbs-image {
    min-height: 400px;
    order: -1;
  }

  .cta-banner-section {
    padding: 50px 0;
  }

  .cta-banner-title {
    font-size: 36px;
  }

  .cta-banner-subtitle {
    font-size: 18px;
  }

  .about-accent-line {
    display: none;
  }

  .about-headline {
    font-size: 32px;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-indicators {
    bottom: 20px;
  }

  .logo-image {
    max-height: 60px;
  }
}
.best-card-icon-img{
  height: 70px;
  width: 70px;
}
@media (max-width: 480px) {
  .hero-slider {
    height: 180px;
  }

  .hero-slider-container {
    height: 100%;
  }

  .hero-slider-wrapper {
    height: 100%;
  }

  .hero-slide {
    height: 100%;
  }

  .hero-slide-image {
    width: 100%;
    height: 38%;
   
    object-position: center;
    display: block;

    min-height: 179px;
    object-fit: fill
  }

  .hero-overlay {
    height: 100%;
  }

  .hero-indicators {
    padding: 35px 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
  }

  .hero-indicator {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .hero-indicator:hover {
    background: rgba(0, 0, 0, 0.7);
  }

  .hero-indicator.active {
    background: #000000;
    width: 24px;
  }

  .best-card-icon-img{
    height: 50px;
    width: 50px;
  }
  .hero-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .hero-content {
    padding: 15px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .service-card {
    padding: 20px 10px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .service-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .service-description {
    font-size: 13px;
  }

  .services-title {
    font-size: 32px;
 
  }

  .about-headline {
    font-size: 28px;
  }

  .about-image-grid {
    grid-template-columns: 1fr;
  }

  .about-image-item:nth-child(2),
  .about-image-item:nth-child(3),
  .about-image-item:nth-child(4) {
    display: none;
  }

  .best-of-us-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .best-card {
    padding: 20px 10px;
  }

  .best-card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  .best-card-icon svg {
    width: 60px;
    height: 60px;
  }

  .best-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .best-card-description {
    font-size: 13px;
  }

  .best-of-us-title {
    font-size: 28px;
  }

  .contact-section {
    padding: 40px 0;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    display: grid;
    flex-direction: column;
  }

  .contact-info {
    padding-right: 0;
    align-items: flex-start;
    text-align: left;
    order: 2;
  }

  .contact-form-wrapper {
    order: 1;
  }

  .contact-heading {
    font-size: 36px;
    text-align: left;
  }

  .contact-details {
    align-items: center;
  }

  .contact-item {
    justify-content: left;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-wrapper .contact-heading {
    font-size: 36px;
  }

  .page-banner {
    padding: 40px 0;
  }

  .page-banner-title {
    font-size: 42px;
  }

  .page-banner-underline {
    width: 80px;
    height: 3px;
  }

  .about-us-title {
    font-size: 42px;
  }

  .about-top-content,
  .about-bottom-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-block {
    padding-right: 0;
  }

  .about-cta-block {
    padding: 0px 0px;
  }

  .cta-heading {
    font-size: 28px;
  }
}

  .cta-banner-title {
    font-size: 28px;
  }

  .cta-banner-subtitle {
    font-size: 16px;
  }

  .cta-banner-btn {
    padding: 14px 30px;
    font-size: 16px;
  }

  .testimonials-title {
    font-size: 32px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-quote-icon {
    font-size: 60px;
  }

  .scroll-to-top {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    font-size: 10px;
  }
}

/* New CTA Box Section */
.cta-box-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.cta-box {
  background-color: #e3f2fd;
  border-radius: 12px;
  padding: 50px 40px;
  max-width: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-box:hover {
  background-color: #bbdefb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-box-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #202124;
  text-align: left;
}

.cta-box-title-highlight {
  color: #1a73e8;
}

.cta-box-subtitle {
  font-size: 20px;
  color: #666;
  font-weight: 400;
  text-align: left;
  margin: 0;
}

/* Responsive styles for CTA Box */
@media (max-width: 768px) {
  .cta-box {
    padding: 35px 25px;
  }

  .cta-box-title {
    font-size: 28px;
  }

  .cta-box-subtitle {
    font-size: 16px;
  }
}

/* Services Page Styles */
.services-page-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.services-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-page-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-title-1 {
  color: #80868b;
  font-weight: 400;
}

.services-title-2 {
  color: #274584;
  font-weight: 600;
}

.services-page-subtitle {
  font-size: 18px;
  color: #5f6368;
  font-weight: 400;
  margin: 0;
}

.services-page-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-page-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-page-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.service-card-icon {
  width: 70px;
  height: 70px;
  background-color: #274584;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 20px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #274584;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 25px 0;
  padding: 0 20px;
  letter-spacing: 0.5px;
}

.service-card-features {
  list-style: none;
  padding: 0 30px 30px;
  margin: 0;
  flex-grow: 1;
}

.service-card-features li {
  font-size: 15px;
  color: #5f6368;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.service-card-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #274584;
  font-weight: bold;
  font-size: 18px;
}

.service-card-note {
  font-size: 12px;
  color: #80868b;
  font-style: italic;
  padding: 0 30px 30px;
  margin: 0;
  line-height: 1.6;
}

/* Responsive styles for Services Page */
@media (max-width: 1024px) {
  .services-page-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .services-page-section {
    padding: 60px 0;
  }

  .services-page-header {
    margin-bottom: 40px;
  }

  .services-page-title {
    font-size: 36px;
  }

  .services-page-subtitle {
    font-size: 16px;
  }

  .services-page-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card-image {
    height: 200px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .service-card-features {
    padding: 0 20px 25px;
  }

  .service-card-features li {
    font-size: 14px;
  }

  .service-card-note {
    padding: 0 20px 25px;
  }
}
