@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #0e6abf;
  --secondary-color: #56975a;
  --dark-bg-color: #121416;
  --primary-gradient-color: linear-gradient(135deg, #0e6abf 0%, #05335f 100%);
  --secondary-gradient-color: linear-gradient(90deg, #56975a 0%, #2c9132 11%);
  --theme-gradient-color: linear-gradient(90deg, #0e6abf 0%, #56975a 100%);
  --primary-light-color: #e4f2ff;
  --secondary-light-color: #e7ffe9;
  --white: #fff;
  --light-bg-color: #f8f9fa;
  --dark-text-color: #333333;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #9fa1a3;
  --gray-600: #6c757d;
  --gray-700: #495057;
}


body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-text-color);
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

@media (max-width: 768px) {
  .dw-hero-image-wrapper {
    display: none;
  }
}

/* top navber */

/* navber */

.top-navbar {
  background: var(--primary-color);
}

.contact {
  font-size: 15px;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .contact {
    font-size: 14px;
  }
}

.social-icon a {
  font-size: 13px;
  padding: 6px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  transition: all 0.3s;

  &:hover {
    background-color: #fff;
    color: #cf8766;
  }
}


/* Navbar */
.custom-navbar {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
}

ul.nav-links {
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.nav-links li {
  position: relative;
}

ul.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 17px;
  padding: 20px 15px;
  display: block;
}

ul.nav-links a:hover {
  color: var(--primary-color);
}

.dropdown-menu {
  position: absolute;
  top: 95%;
  left: 0;
  background: var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 250px;
  width: max-content;
  border: none;
  z-index: 999;
}

.dropdown-menu a {
  padding: 7px 12px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-bottom: 1px solid #fff;
  color: #fff !important;
  position: relative;
}

.dropdown-menu a:hover {
  background: var(--secondary-color);
  color: var(--white) !important;
}



/* Subdropdown */
.has-subdropdown {
  position: relative;
}

.subdropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: var(--primary-color);
  display: none;
  padding: 0;
  flex-direction: column;
  min-width: 200px;
  width: max-content;
  border-radius: 4px;
  list-style: none;
}


.subdropdown-menu a {
  padding: 7px 12px !important;
  font-size: 14px !important;
  border-bottom: 1px solid #fff !important;
  color: #fff !important;
  position: relative;
}


.subdropdown-menu li:last-child a {
  border-bottom: none;
}

.subdropdown-menu a:hover {
  background: var(--secondary-color);
  color: #fff !important;
}



/* === DESKTOP ONLY: Show dropdown on hover === */
@media (min-width: 992px) {
  .has-dropdown:hover .dropdown-menu {
    display: flex;
  }



  .has-subdropdown:hover>.subdropdown-menu {
    display: flex;
  }


}

/* === MOBILE STYLES === */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  ul.nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    background-color: #fff;
    margin-top: 10px;
    gap: 0;
    max-height: 100vh;
    overflow-y: auto;
  }

  ul.nav-links.show {
    display: flex;
  }

  ul.nav-links li {
    width: 100%;
  }

  ul.nav-links a {
    padding: 12px 10px;
    border-bottom: 1px solid #ccc;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    border: none;
  }

  .dropdown-menu a {
    padding: 8px 8px 8px 23px !important;
    font-size: 16px !important;
  }

  .has-dropdown .dropdown-menu {
    display: none;
  }

  .has-dropdown.show .dropdown-menu {
    display: flex;
  }

  .subdropdown-menu {
    position: static;
    display: none;
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .subdropdown-menu.show {
    display: flex;
  }

  .subdropdown-menu a {
    padding: 10px 20px 10px 30px !important;
    border-bottom: 1px solid var(--dark-text-color);
    font-size: 14px !important;
    color: #fff !important;
  }
}

/* navber end */

/* statics */

.statics-stats-section {
    padding: 40px 0;
    background: var(--primary-light-color);
}

.statics-stats-section .tagline-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 30px;
}

.statics-stats-section .quote-icon {
  font-size: 6rem;
  line-height: 1;
  color: var(--primary-color);
  font-family: Georgia, serif;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: -20px;
}

.statics-stats-section .tagline-text {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--dark-text-color);
  line-height: 1.3;
  margin: 0;
}

.statics-stats-section .stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 2px solid #d8d8d8;
  transition: all 0.3s ease;
}

.statics-stats-section .stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color);
}

.statics-stats-section .stat-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statics-stats-section .stat-icon svg {
  width: 55px;
  height: 55px;
  fill: var(--primary-color);
}

.statics-stats-section .stat-content {
  flex: 1;
}

.statics-stats-section .stat-number {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark-text-color);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.statics-stats-section .stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--dark-text-color);
  line-height: 1.3;
  margin: 0;
}

.statics-stats-section .stat-divider {
  width: 2px;
  height: 65px;
  background: #a8a8a8;
  flex-shrink: 0;
  border-radius: 40px;
}


@media (max-width: 768px) {

  .statics-stats-section .tagline-wrapper {
    gap: 7px;
    margin-bottom: 30px;
  }

  .statics-stats-section .quote-icon {
    font-size: 4rem;
    margin-top: -10px;
  }

  .statics-stats-section .tagline-text {
    font-size: 1.4rem;
  }

  .statics-stats-section .stat-card {
    padding: 15px 10px;
    gap: 15px;
  }

  .statics-stats-section .stat-icon svg {
    width: 55px;
    height: 55px;
  }

  .statics-stats-section .stat-number {
    font-size: 1.8rem;
  }

  .statics-stats-section .stat-label {
    font-size: 0.75rem;
  }
}

.grid-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
}


/* logo slider  */

.media-featured-section {
  background: var(--secondary-light-color);
  padding: 40px 0;
  overflow: hidden;
}

.media-featured-container {
  padding: 0 15px;
}

.media-section-title {
  margin-bottom: 25px;
  font-size: 2.2rem;
  font-weight: 500;
  color: #333;
  max-width: 900px;
}

.media-section-title .blue-text {
  color: var(--primary-color);
  font-weight: 500;
}

.media-section-title .green-text {
  color: var(--secondary-color);
  font-weight: 500;
}

.gp-intro-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--dark-text-color);
  margin-bottom: 10px;
}

.gp-features-list {
  list-style: none;
  padding: 0;
}

.gp-features-list li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}

.gp-features-list li i {
  color: var(--secondary-color);
  font-size: 14px;
  margin-right: 10px;
}

.gp-features-list li:last-child {
  margin-bottom: 0;
}

.media-logo-wrapper {
  position: relative;
}

.media-logo-item {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  transition: transform 0.5s ease;
}

.media-logo-item:hover {
  transform: scale(1.05);
}

.media-logo-item .logo-img {
  border-radius: 10px;
  overflow: hidden;

  img {
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    padding: 10px;
    aspect-ratio: 2/1;
    object-fit: contain;
    background: #fff;
  }
}

@media (max-width: 768px) {
  .media-section-title {
    font-size: 1.8rem;
  }

}

@media (max-width: 480px) {
  .media-section-title {
    font-size: 1.5rem;
  }
}

/* Prefixed styles for embedding */
.wd-process-section {
  background: var(--light-bg-color);
  padding: 80px 0;
}

.wd-process-section .wd-section-header {
  height: 100%;
  display: flex;
  align-items: center;
}

.wd-process-section .wd-section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--dark-bg-color);
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
}

.wd-process-section .wd-section-title::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 4px;
  bottom: -10px;
  left: 0;
  border-radius: 20px;
  background: var(--secondary-color);
}

.wd-process-section .wd-process-card {
  background: var(--primary-gradient-color);
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); */
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.wd-process-section .wd-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.wd-process-section .wd-card-content {
  position: relative;
  z-index: 1;
}

.wd-process-section .wd-icon-circle {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 4px solid var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wd-process-section .wd-icon-circle img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.wd-process-section .wd-process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
  line-height: 30px;
}

.wd-process-section .wd-process-description {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .wd-process-section .wd-process-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .wd-process-section {
    padding: 60px 0;
  }

  .wd-process-section .wd-section-title {
    font-size: 2rem;
  }

  .wd-process-section .wd-section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .wd-process-section .wd-section-title {
    font-size: 1.75rem;
  }

  .wd-process-section .wd-icon-circle {
    width: 100px;
    height: 100px;
  }

  .wd-process-section .wd-icon-circle img {
    width: 50px;
    height: 50px;
  }

  .wd-process-section .wd-process-title {
    font-size: 1.25rem;
  }

  .wd-process-section .wd-process-description {
    font-size: 0.95rem;
  }

  .wd-process-section .wd-process-card {
    padding: 35px 25px;
  }
}


/* Gallery */


.growth-process-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
}

.growth-process-section .section-header {
  margin-bottom: 30px;
  max-width: 800px;
}

.growth-process-section .section-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--dark-text-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -1px;
}

.growth-process-section .process-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  position: relative;
  border: 1px solid #e8edf2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.growth-process-section .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14, 106, 191, 0.12);
  border-color: var(--primary-color);
  background: var(--primary-light-color);
}

.growth-process-section .col-lg-4:nth-child(even) .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(23, 191, 14, 0.15);
  border-color: var(--secondary-color);
  background: var(--secondary-light-color);
}

.growth-process-section .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f5f7fa;
}

.growth-process-section .process-icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--primary-light-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.growth-process-section .process-card:hover .process-icon-wrapper {
  background: var(--primary-color);
}

.growth-process-section .process-icon-wrapper i {
  font-size: 26px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.growth-process-section .process-card:hover .process-icon-wrapper i {
  color: white;
}

.growth-process-section .card-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text-color);
  margin-bottom: 0;
  line-height: 1.3;
}

.growth-process-section .card-content p {
  color: var(--dark-text-color);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}


.growth-process-section .col-lg-4:nth-child(even) .process-icon-wrapper {
  background: var(--secondary-light-color);
}

.growth-process-section .col-lg-4:nth-child(even) .process-icon-wrapper i {
  color: var(--secondary-color);
}

.growth-process-section .col-lg-4:nth-child(even) .process-card:hover .process-icon-wrapper {
  background: var(--secondary-color);
}

.growth-process-section .col-lg-4:nth-child(even) .process-card:hover .process-icon-wrapper i {
  color: white;
}

@media (max-width: 1200px) {
  .growth-process-section .section-title {
    font-size: 2.5rem;
  }
}


@media (max-width: 768px) {
  .growth-process-section {
    padding: 50px 0;
  }

  .growth-process-section .section-header {
    margin-bottom: 50px;
  }

  .growth-process-section .section-title {
    font-size: 1.85rem;
  }

  .growth-process-section .section-subtitle {
    font-size: 0.85rem;
  }

  .growth-process-section .card-header {
    gap: 15px;
  }

}



/* Prefixed styles for embedding */
.gp-why-choose-section {
  background: var(--primary-gradient-color);
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.gp-why-choose-section .gp-section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  max-width: 1100px;
  margin-bottom: 60px;
}

.gp-why-choose-section .gp-section-title .gp-brand-name {
  color: var(--secondary-color);
}

.gp-why-choose-section .mb-5 {
  margin-bottom: 70px !important;
}

.gp-why-choose-section .gp-feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  /* margin-bottom: 30px; */
}

.gp-why-choose-section .gp-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gp-why-choose-section .gp-icon-wrapper {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -80px auto 20px;
}

.gp-why-choose-section .gp-icon-wrapper img {
  max-width: 100%;
  height: auto;
}

.gp-why-choose-section .gp-feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-why-choose-section .gp-feature-title-divider {
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
  margin: 0 auto 10px;
}

.gp-why-choose-section .gp-feature-description {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.6;
  font-weight: 500;
  margin: 0;
}


@media (max-width: 991px) {

  .gp-why-choose-section .gp-feature-card {
    margin-bottom: 50px;
    padding: 40px 8px 20px;
  }

  .gp-why-choose-section {
    padding: 60px 0 80px;
  }

  .gp-why-choose-section .gp-section-title {
    font-size: 2rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {


  .gp-why-choose-section .gp-section-title {
    font-size: 1.25rem;
    margin-bottom: 60px;
  }


  .gp-why-choose-section .gp-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-top: -70px;
  }

  .gp-why-choose-section .gp-feature-title {
    font-size: 1rem;
    min-height: auto;
  }

  .gp-why-choose-section .gp-feature-description {
    font-size: 0.85rem;
  }


  .gp-why-choose-section .mb-5 {
    margin-bottom: 50px !important;
  }

}


/* healthcare digital presence */

.sec-content .sec-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.sec-content .sec-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sec-content ul.sec-features {
  list-style: none;
  padding: 0;

}

.sec-content ul.sec-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: baseline;
}

.sec-content ul.sec-features li i {
  color: var(--secondary-color);
  font-size: 14px;
  padding: 2px 3px;
  border: 2px solid var(--secondary-color);
  margin-right: 10px;
}

.primary-theme-btn {
  display: inline-block !important;
  background: var(--primary-color) !important;
  color: var(--white) !important;
  padding: 10px 25px 10px 45px !important;
  border-radius: 30px !important;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
}

.primary-theme-btn i {
  width: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  background: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.primary-theme-btn:hover {
  padding: 10px 45px 10px 25px !important;
  background: var(--secondary-color) !important;
}

.primary-theme-btn:hover i {
  left: calc(100% - 36px);
  color: var(--secondary-color);
}

.secondary-theme-btn {
  display: inline-block !important;
  background: var(--secondary-color) !important;
  color: var(--white) !important;
  padding: 10px 25px 10px 45px !important;
  border-radius: 30px !important;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid #fff;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
}

.secondary-theme-btn i {
  width: 30px;
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  background: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.secondary-theme-btn:hover {
  padding: 10px 45px 10px 25px !important;
  background: var(--primary-color) !important;
}

.secondary-theme-btn:hover i {
  left: calc(100% - 36px);
  color: var(--primary-color);
}

.primary-theme-btn.min-btn,
.secondary-theme-btn.min-btn {
  padding: 7px 15px 7px 35px !important;
  font-size: 0.9rem !important;

}

.primary-theme-btn.min-btn i,
.secondary-theme-btn.min-btn i {
  width: 23px;
  height: 23px;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.primary-theme-btn.min-btn:hover,.secondary-theme-btn.min-btn:hover {
  padding: 7px 35px 7px 15px !important;
}

.primary-theme-btn.min-btn:hover i,
.secondary-theme-btn.min-btn:hover i {
  left: calc(100% - 28px);
}





@media (max-width: 768px) {
  .primary-theme-btn {
    padding: 8px 20px 8px 35px;
    font-size: 0.9rem;
  }

  .primary-theme-btn i {
    width: 25px;
    height: 25px;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  .primary-theme-btn:hover {
    padding: 8px 35px 8px 20px;
  }

  .primary-theme-btn:hover i {
    left: calc(100% - 30px);
  }
}

/* what we do  */

.hcs-section {
  padding: 60px 15px;
  background-color: transparent;
  background: var(--secondary-light-color);
}

.hcs-card {
  text-align: center;
  padding: 40px 20px;
  transition: all 0.5s ease;
  border-radius: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border: 4px solid var(--white);
  box-shadow: 0 0 15px #00000026, inset 10px 10px 10px #0000001a, inset -10px -10px 10px #a7a7a743;
}

.hcs-card:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00000026, inset 10px 10px 10px #0000001a, inset -10px -10px 10px #a7a7a743;
}

.hcs-icon {
  width: 100px;
  height: 100px;
  background: var(--primary-light-color);
  box-shadow: 0 0 10px #0000001a;
  border-radius: 50px;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
}

.hcs-icon i {
  font-size: 45px;
  color: var(--primary-color);
  line-height: 1;
}

.hcs-card:hover .hcs-icon {
  background: var(--primary-color);

  i {
    color: var(--white);
  }
}

.hcs-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* Mobile view */
@media (max-width: 768px) {
  .hcs-section {
    padding: 40px 15px;
  }

  .hcs-card {
    padding: 30px 15px;
  }

  .hcs-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .hcs-icon i {
    font-size: 50px;
  }

  .hcs-title {
    font-size: 18px;
  }
}


/* digital marketing services  */

.dm-seo-section {
  background-color: var(--light-bg-color);
  position: relative;
}

.dm-seo-hero {
  background: var(--primary-gradient-color);
  padding: 60px 0 40px;
  position: relative;
  overflow: hidden;
}

.dm-seo-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--secondary-color);
  opacity: 0.15;
  border-radius: 0 0 0 100%;
}

.dm-seo-title {
     font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.dm-seo-title-italic {
  font-style: italic;
  font-weight: 500;
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dm-seo-subtitle {
  font-size: 1.2rem;
  color: var(--dark-text-color);
  line-height: 1.6;
  position: relative;
  z-index: 1;
  margin: 0;
}

.dm-seo-articles {
  padding: 60px 0;
  position: relative;
}

.dm-seo-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(14, 106, 191, 0.08);
}

.dm-seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(14, 106, 191, 0.15);
}

.dm-seo-img-wrapper {
  position: relative;
  overflow: hidden;
}

.dm-seo-img {
  width: 100%;
  /* aspect-ratio: 2/1.25; */
  object-fit: cover;
  display: block;
}

.dm-seo-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-gradient-color);
  opacity: 0.1;
  transition: opacity 0.3s ease;
}

.dm-seo-card:hover .dm-seo-img-wrapper::after {
  opacity: 0.2;
}

.dm-seo-card-body {
  padding: 20px;
}

.dm-seo-card-small .dm-seo-card-body {
  padding: 15px;
}

.dm-seo-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  background: var(--theme-gradient-color);
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;

}

.dm-seo-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-text-color);
  margin: 0 0 10px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.dm-seo-card:hover .dm-seo-card-title {
  color: var(--primary-color);
}

.dm-seo-card-small .dm-seo-card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.dm-seo-card-text {
  font-size: 0.95rem;
  color: var(--dark-text-color);
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.dm-seo-card-small .dm-seo-card-text {
  font-size: 0.88rem;
}

.dm-seo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 1;
}

.dm-seo-card:hover::before {
  transform: scaleX(1);
}

@media (max-width: 576px) {
  .dm-seo-title {
    font-size: 2rem;
  }

  .dm-seo-card-title {
    font-size: 1.2rem;
  }

  .dm-seo-articles {
    padding: 40px 0;
  }

  .dm-seo-hero {
    padding: 40px 0 30px;
  }

  .dm-seo-card-body {
    padding: 12px;
  }
}



/* specialized */

.blueoceanhealth-services-wrapper {
  color: #fff;
  padding: 40px 20px;
}


.blueoceanhealth-service-card {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.blueoceanhealth-service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.blueoceanhealth-service-card:hover img {
  transform: scale(1.1);
}

.blueoceanhealth-service-overlay {
  background: var(--primary-gradient-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  height: 100%;
  position: relative;
  transition: background 0.4s ease;
}

.blueoceanhealth-service-card:hover .blueoceanhealth-service-overlay {
  background: var(--secondary-gradient-color);
}

.blueoceanhealth-service-content {
  transition: transform 0.5s ease;
  position: absolute;
  top: calc(100% - 110px);
  left: 10px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.blueoceanhealth-service-card:hover .blueoceanhealth-service-content {
  top: 20px;
}

.blueoceanhealth-service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  opacity: 0.9;
  background: #fff;
  padding: 5px;
  border-radius: 5px;
}



.blueoceanhealth-service-title {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.blueoceanhealth-service-divider {
  width: 100px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 20px;
}

.blueoceanhealth-service-items {
  transition: all 0.5s ease;
}


.blueoceanhealth-service-item {
  display: flex;
  align-items: center;
      margin-bottom: 7px;
    font-size: 14px;
  font-weight: 400;
}

.blueoceanhealth-service-item .blueoceanhealth-arrow {
  color: #ffc107;
    margin-right: 5px;
    font-size: 13px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .blueoceanhealth-services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blueoceanhealth-services-container {
    grid-template-columns: 1fr;
  }

  .blueoceanhealth-service-card {
    height: 300px;
  }

  .blueoceanhealth-service-title {
    font-size: 28px;
  }

  .blueoceanhealth-service-card:hover .blueoceanhealth-service-content {
    transform: translateY(-50px);
  }
}





/* Prefixed styles for embedding */
.gp-success-section {
  background: var(--light-bg-color);
  padding: 40px 0;
}

.gp-success-section .gp-main-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.gp-success-section .gp-intro-text {
  font-size: 1rem;
  color: var(--dark-text-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.gp-success-section .gp-benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.gp-success-section .gp-benefits-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--dark-text-color);
  line-height: 1.6;
}

.gp-success-section .gp-benefits-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.gp-success-section .gp-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gp-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .gp-success-section {
    padding: 60px 0;
  }

  .gp-success-section .gp-main-title {
    font-size: 2rem;
  }

  .gp-success-section .gp-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .gp-success-section .gp-main-title {
    font-size: 1.75rem;
  }

  .gp-success-section .gp-intro-text {
    font-size: 1rem;
  }

  .gp-success-section .gp-benefits-list li {
    font-size: 0.95rem;
  }
}





/* trusted */

.trusted-by-section {
  background: linear-gradient(135deg, #e3eaf0 0%, #d8dfe6 100%);
  padding: 50px 0;
}

.trusted-by-title {
 font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    font-family: 'Arial', sans-serif;
}

.logo-card {
  background: var(--white);
  border-radius: 8px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.logo-card img {
  aspect-ratio: 3/2;

  object-fit: contain;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .trusted-by-section {
    padding: 60px 0;
  }

  .trusted-by-title {
    font-size: 2.5rem;
  }

}



/* int banner  */

.au-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--dark-text-color);

}

.au-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.au-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.au-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(14, 106, 191, 0.55) 0%, rgba(5, 51, 95, 0.15) 100%);
  z-index: 2;
}

.au-hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.au-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0;
  letter-spacing: 1px;
}

.au-hero-accent {
  display: inline-block;
  width: 80px;
  height: 5px;
  background: var(--secondary-color);
  margin-top: 10px;
  border-radius: 3px;
}

@media (max-width: 1199px) {
  .au-hero-title {
    font-size: 3.5rem;
  }

  .au-hero-section {
    min-height: 450px;
  }
}

@media (max-width: 991px) {
  .au-hero-title {
    font-size: 3rem;
  }

  .au-hero-section {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .au-hero-title {
    font-size: 2.5rem;
  }

  .au-hero-section {
    min-height: 350px;
  }

  .au-hero-content {
    padding: 60px 0;
  }

  .au-hero-accent {
    width: 60px;
    height: 4px;
    margin-top: 15px;
  }
}

@media (max-width: 575px) {
  .au-hero-title {
    font-size: 2rem;
  }

  .au-hero-section {
    min-height: 300px;
  }
}


/* contact us  */


/* Enhanced Hero Header */
.contact-page-hero {
  background: var(--primary-gradient-color);
  color: var(--white);
  padding: 61px 0px 120px;
  position: relative;
  overflow: hidden;
}

/* Hero Content */
.contact-page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-page-hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-page-hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin: 0 0 25px;
  letter-spacing: -2px;
  line-height: 1.15;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-page-hero-content h1 .highlight {
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.contact-page-hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto 25px;
  max-width: 700px;
}


/* CTA Buttons in Header */
.contact-page-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-page-btn-hero {
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  cursor: pointer;
}

.contact-page-btn-hero.primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.contact-page-btn-hero.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.contact-page-btn-hero.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-page-btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* Wave Divider */
.contact-page-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: rotate(180deg);
  line-height: 0;
}

.contact-page-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.contact-page-wave .shape-fill {
  fill: #fff;
}

/* Main Container */
.contact-page-content {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  padding: 0 0 60px;
}

/* Info Cards Section */
.contact-page-info-section {
  margin-bottom: 30px;
}

.contact-page-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 25px 20px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-page-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14, 106, 191, 0.12);
  border-color: rgba(14, 106, 191, 0.2);
}

.contact-page-info-icon {
  width: 65px;
  height: 65px;
  background: var(--primary-light-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-page-info-card:hover .contact-page-info-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.contact-page-info-icon i {
  font-size: 28px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.contact-page-info-card:hover .contact-page-info-icon i {
  color: var(--white);
}

.contact-page-info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text-color);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-info-content {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-page-info-content a {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-page-info-content a:hover {
  color: var(--secondary-color);
}

.contact-page-offices {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.contact-page-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-text-color);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-page-section-title::before {
  content: '';
  width: 5px;
  height: 35px;
  background: var(--theme-gradient-color);
  border-radius: 10px;
}

.contact-page-office-group {
  margin-bottom: 25px;
}

.contact-page-office-group:last-child {
  margin-bottom: 0;
}

.contact-page-office-group-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200);
}

.contact-page-office-item {
  background: var(--gray-100);
  padding: 15px;
  border-radius: 14px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.contact-page-office-item:hover {
  background: var(--primary-light-color);
  border-left-color: var(--secondary-color);
  transform: translateX(5px);
}

.contact-page-office-item:last-child {
  margin-bottom: 0;
}

.contact-page-office-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text-color);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-page-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-page-badge-hq {
  background: var(--secondary-color);
  color: var(--white);
}

.contact-page-badge-regional {
  background: var(--secondary-color);
  color: var(--white);
}

.contact-page-badge-international {
  background: var(--primary-color);
  color: var(--white);
}

.contact-page-office-address {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-page-office-address i {
  color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-page-office-hours {
  background: var(--secondary-light-color);
  padding: 15px;
  border-radius: 14px;
  margin-top: 15px;
  border-left: 4px solid var(--secondary-color);
}

.contact-page-office-hours strong {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-page-office-hours p {
  color: var(--dark-text-color);
  margin: 0;
  font-size: 0.95rem;
}

/* Social Media Section */
.contact-page-social {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.contact-page-social h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text-color);
  margin: 0 0 15px;
}

.contact-page-social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-page-social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  color: var(--white);
  transition: all 0.3s ease;
}

.contact-page-social-link:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-page-social-link.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5dbd 100%);
}

.contact-page-social-link.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
}

.contact-page-social-link.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #00568a 100%);
}

.contact-page-social-link.instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.contact-page-social-link.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.contact-page-social-link.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.contact-page-form-container {
  background: var(--cp-white);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}


.contact-page-form-header {
  margin-bottom: 20px;
}

.contact-page-form-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-text-color);
  margin: 0 0 10px;
}

.contact-page-form-header p {
  color: var(--gray-600);
  font-size: 1rem;
  margin: 0;
}

.contact-page-form-group {
  margin-bottom: 20px;
}

.contact-page-form-label {
  font-weight: 600;
  color: var(--dark-text-color);
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.contact-page-form-control {
  width: 100%;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--dark-text-color);

}

.contact-page-form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(14, 106, 191, 0.1);
  outline: none;
}

.contact-page-form-control::placeholder {
  color: var(--gray-600);
  opacity: 0.6;
}

.contact-page-form-control.textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page-btn-submit {
  background: var(--theme-gradient-color);
  border: none;
  padding: 16px 40px;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(14, 106, 191, 0.3);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;

}

.contact-page-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 106, 191, 0.4);
}

/* Map Section */
.contact-page-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid var(--white);
}

.contact-page-map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

@media (max-width: 767px) {

  .contact-page-offices {
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .contact-page-hero {
    padding: 40px 0 90px;
  }

  .contact-page-hero-subtitle {
    font-size: 1.05rem;
  }

  .contact-page-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page-btn-hero {
    width: 100%;
    justify-content: center;
  }

  .contact-page-content {
    margin-top: 0px;
  }

  .contact-page-info-card {
    padding: 20px 15px;
  }

  .contact-page-section-title {
    font-size: 1.5rem;
  }

}

@media (max-width: 575px) {
  .contact-page-hero-label {
    font-size: 0.75rem;
    padding: 8px 18px;
  }

  .contact-page-hero-content h1 {
    font-size: 1.9rem;
  }

  .contact-page-info-icon {
    width: 55px;
    height: 55px;
  }

  .contact-page-info-icon i {
    font-size: 24px;
  }

  .contact-page-social-links {
    gap: 10px;
  }

  .contact-page-form-container {
    padding: 20px 0;
    border: none;
    box-shadow: none;
  }

  .contact-page-social-link {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}





/*footer*/


.blueoceancs-footer {
        background: var(--primary-gradient-color);
        padding: 60px 0 20px;
        position: relative;
        overflow: hidden;
    }

    .blueoceancs-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--secondary-gradient-color);
    }

    .blueoceancs-footer .footer-tagline {
        width: 100%;
        margin-bottom: 40px;
    }

    .blueoceancs-footer .footer-content {
        margin-bottom: 40px;
    }

    .blueoceancs-footer .footer-column h5 {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--white);
        margin-bottom: 15px;
        position: relative;
        padding-bottom: 10px;
    }

    .blueoceancs-footer .footer-column h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2.5px;
        background: var(--white);
        border-radius: 20px;
    }

    .blueoceancs-footer .footer-column p,
    .blueoceancs-footer .footer-column ul li {
        color: var(--white);
        font-size: 0.95rem;
        line-height: 1.5;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .blueoceancs-footer .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .blueoceancs-footer .footer-column ul li a {
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .blueoceancs-footer .footer-column ul li a:hover {
        color: var(--primary-light-color);
        transform: translateX(5px);
    }

    .blueoceancs-footer .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .blueoceancs-footer .contact-info p {
        margin: 0;
        display: flex;
        line-height: 1.7;
        align-items: baseline;

        strong {
            font-weight: 600;
        }
    }

    .blueoceancs-footer .contact-info i {
        color: var(--white);
        margin-right: 10px;
        width: 20px;
    }

    .blueoceancs-footer .phone-link {
        color: var(--white);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .blueoceancs-footer .phone-link:hover {
        color: var(--primary-color);
    }

    .blueoceancs-footer .footer-bottom {
        border-top: 1px solid #ddd;
        padding-top: 20px;
        margin-top: 20px;
    }

    .blueoceancs-footer .social-links {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .blueoceancs-footer .social-links a {
        color: var(--white);
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .blueoceancs-footer .social-links a i {
        font-size: 1.2rem;
    }

    .blueoceancs-footer .social-links a:hover {
        color: var(--primary-light-color);
    }

    .blueoceancs-footer .copyright-text {
        color: var(--white);
        font-size: 0.9rem;
        margin: 0;
    }

    .blueoceancs-footer .copyright-text a {
        color: var(--primary-light-color);
        text-decoration: none;
        font-weight: 600;
    }

    .blueoceancs-footer .copyright-text a:hover {
        text-decoration: underline;
    }

    @media (max-width: 768px) {
        .blueoceancs-footer .footer-tagline {
            font-size: 1.8rem;
        }

        .blueoceancs-footer {
            padding: 40px 0 20px;
        }

        .blueoceancs-footer .footer-column {
            margin-bottom: 30px;
        }

        .blueoceancs-footer .social-links {
            justify-content: center;
            margin-bottom: 20px;
        }

        .blueoceancs-footer .footer-bottom .text-end {
            text-align: center !important;
        }
    }