/***
  ====================================================================
  CTA One - Pure CSS (Refined: Smaller Fonts, Balanced Spacing)
  ====================================================================
***/
.cta-one_btn {
  margin-left: 800px;
  margin-top: -115px;
}

.cta-one {
  position: static;
  padding-top: 60px;
  z-index: 10;
}

.cta-one.style-two {
  padding-top: 0px;
}

.cta-one .inner-container {
  margin-top: 0px;
  position: relative;
  padding: 30px 70px;
  border-radius: 120px;
  border: 2px solid var(--color-two);
  background-color: rgba(255, 255, 255, 1);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(223, 248, 255, 1) 100%
  );
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Subtle hover effect */
.cta-one .inner-container:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

/* Title styling - compact */
.cta-one_title {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-two);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* Heading styling - balanced */
.cta-one_heading {
  position: relative;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-color);
}

/* Optional description text (if exists) */
.cta-one_description {
  font-size: 15px;
  line-height: 1.5;
  color: #5a6e8a;
  margin-top: 10px;
  max-width: 500px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .cta-one .inner-container {
    padding: 35px 50px;
    border-radius: 90px;
  }
  .cta-one_heading {
    font-size: 24px;
  }
  .cta-one .theme-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .cta-one .inner-container {
    padding: 30px 35px;
    border-radius: 60px;
    text-align: center;
  }
  .cta-one_heading {
    font-size: 22px;
  }
  .cta-one_title {
    font-size: 12px;
  }
  .cta-one_description {
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-one .theme-btn {
    padding: 11px 28px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .cta-one .inner-container {
    padding: 25px 22px;
    border-radius: 45px;
  }
  .cta-one_heading {
    font-size: 20px;
  }
}
/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer {
  position: relative;
  padding-top: 130px;
}

.main-footer_bg-color {
  position: absolute;
  left: 15px;
  top: 0px;
  right: 15px;
  bottom: 15px;
  border-radius: 50px;
  background: #082b63;
}

.main-footer_vector {
  position: absolute;
  left: 15px;
  top: 15px;
  width: 306px;
  height: 306px;
  background-repeat: no-repeat;
}

.main-footer .inner-container {
  position: relative;
  padding-left: 110px;
  padding-bottom: 120px;
}

.footer-logo {
  position: absolute;
  left: -50px;
  top: 70px;
  transform: rotate(-90deg);
}

.main-footer_image {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-size: cover;
}

.footer-text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
  text-transform: uppercase;
}

.footer-discuss {
  position: relative;
  font-size: 150px;
  left: -10px;
  z-index: 10;
  font-weight: 700;
  line-height: 1em;
  color: var(--white-color);
  text-transform: uppercase;
  font-family: "Outfit", serif;
}

.footer-social_box {
  position: relative;
  z-index: 10;
}

.footer-social_box a {
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  margin-left: 8px;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
}

.footer-social_box a:hover {
  color: var(--white-color);
  background: #ff8c2b;
}

.footer-contact_list {
  position: relative;
  gap: 30px;
  z-index: 10;
  margin-top: 20px;
}

.footer-contact_list li {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white-color);
  font-family: "Outfit", serif;
}

.footer-contact_list li a {
  position: relative;
  color: var(--white-color);
}

.footer-contact_list li a:hover {
  color: var(--main-color);
}

.footer-type_title {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  font-size: 300px;
  text-align: center;
  font-weight: 900;
  line-height: 1em;
  text-transform: uppercase;
  color: rgba(var(--white-color-rgb), 0.15);
}

/* ====================================
   Footer Responsive CSS
==================================== */

@media only screen and (max-width: 1199px) {
  .footer-custom-row {
    gap: 30px;
  }

  .footer-custom-col {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media only screen and (max-width: 991px) {
  .footer-custom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .footer-custom-col {
    flex: 0 0 48%;
    max-width: 48%;
  }

  .footer-three_title {
    font-size: 22px;
  }

  .footer-three_text {
    font-size: 15px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-custom-row {
    flex-direction: column;
    gap: 35px;
  }

  .footer-custom-col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer-three_title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .footer-three_text {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-three_socials {
    margin-top: 18px;
  }

  .footer-three_socials a {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 15px;
  }

  .footer-three_list li {
    margin-bottom: 10px;
  }

  .footer-contact-box {
    margin-bottom: 15px;
  }

  .footer-contact-box span {
    font-size: 14px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-style_three {
    padding: 50px 0 20px;
  }

  .footer-custom-row {
    gap: 30px;
  }

  .footer-three_title {
    font-size: 18px;
  }

  .footer-three_text {
    font-size: 13px;
    line-height: 22px;
  }

  .footer-three_list li a {
    font-size: 14px;
  }

  .footer-contact-box span {
    font-size: 13px;
  }

  .footer-three_socials a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
}

/*** 

====================================================================
	Instagram Gallery
====================================================================

***/

.instagram-gallery {
  position: relative;
}

.instagram-gallery:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 15px;
  bottom: 0px;
  z-index: 10;
  background-color: var(--white-color);
}

.instagram-gallery:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 15px;
  bottom: 0px;
  z-index: 10;
  background-color: var(--white-color);
}

.instagram-block_one {
  position: relative;
}

.instagram-block_one-inner {
  position: relative;
}

.instagram-block_one-image {
  position: relative;
}

.instagram-block_one-image img {
  position: relative;
  width: 100%;
  display: block;
}

.instagram-block_one-overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition:
    transform 0.4s ease,
    -webkit-transform 0.4s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.instagram-block_one-overlay:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 145, 0.85) 0%,
    rgba(21, 101, 192, 0.75) 100%
  );
}

.instagram-block_one-inner:hover .instagram-block_one-overlay {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.instagram-block_one-icon {
  position: relative;
  font-size: 40px;
}

/* Footer Bottom */

.footer-bottom {
  position: relative;
  padding: 40px 0px 50px;
  text-align: center;
}

.main-footer_copyright {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: var(--white-color);
}

/* Footer Two */

.footer-two {
  position: relative;
  margin: 20px;
}

.footer-two_bg {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  border-radius: 40px;
  background: #082b63;
}

.footer-two_shape-one {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  height: 126px;
  background-position: right top;
  background-repeat: no-repeat;
}

.footer-two_shape-two {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  height: 82px;
  background-position: left bottom;
  background-repeat: no-repeat;
}

.footer-two_shape-three {
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
  height: 82px;
  background-position: right bottom;
  background-repeat: no-repeat;
}

.footer-two_widgets {
  position: relative;
  padding: 160px 0px 70px;
}

.footer-two_column {
  position: relative;
  margin-bottom: 30px;
}

.footer-logo_two {
  position: relative;
  margin-bottom: 35px;
}

.footer-two_appointment {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
  margin-bottom: 10px;
  color: var(--white-color);
  font-family: "Outfit", serif;
}

.footer-two_text {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  max-width: 500px;
  margin-top: 10px;
  color: var(--white-color);
}

.footer-two_socials {
  position: relative;
  margin-top: 30px;
  z-index: 10;
  display: inline-block;
}

.footer-two_socials a {
  position: relative;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
}

.footer-two_socials a:hover {
  background: #ff8c2b;
}

.footer-two_vector {
  position: absolute;
  left: 40%;
  top: 15%;
  width: 366px;
  height: 355px;
  background-repeat: no-repeat;
}

.footer-two_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: var(--white-color);
  font-family: "Outfit", serif;
}

/* Newsletter Box */

.newsletter-box {
  position: relative;
  margin-top: 30px;
  margin-bottom: 50px;
}

.newsletter-box .form-group {
  position: relative;
  margin: 0px;
  width: 100%;
  max-width: 100%;
}

.newsletter-box .form-group input[type="text"],
.newsletter-box .form-group input[type="email"] {
  position: relative;
  line-height: 43px;
  display: block;
  height: 64px;
  width: 100%;
  border-radius: 50px;
  box-shadow: inherit;
  font-size: 16px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  padding: 10px 30px;
  color: var(--white-color);
  background: rgba(var(--white-color-rgb), 0.05);
}

.newsletter-box .form-group button {
  position: absolute;
  right: 20px;
  top: 5px;
  bottom: 5px;
  font-weight: 500;
  padding: 14px 30px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  background: none;
  color: var(--white-color);
}

.footer-two_list {
  position: relative;
  margin-top: 25px;
}

.footer-two_list li {
  position: relative;
  margin-bottom: 12px;
}

.footer-two_list li a {
  position: relative;
  font-size: 16px;
  color: var(--white-color);
}

.footer-two_instagram {
  position: relative;
  margin-top: 50px;
  margin-right: 80px;
  margin-left: -180px;
}

.footer-two_instagram .instagram-block_one-icon img {
  width: 24px;
  height: 24px;
}

.footer-two_instagram .instagram-two_carousel-pagination {
  position: absolute;
  right: 0px;
  top: 20px;
  z-index: 99;
  bottom: auto !important;
  text-align: right;
}

.footer-two_instagram
  .instagram-two_carousel-pagination
  .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  padding: 0px;
  margin-left: 15px;
  border-radius: 50px;
  background: none;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border: 2px solid var(--white-color);
}

.footer-two_instagram
  .instagram-two_carousel-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active,
.footer-two_instagram
  .instagram-two_carousel-pagination
  .swiper-pagination-bullet:hover {
  border-color: var(--color-two);
  background-color: var(--color-two);
}

.footer-two_instagram .swiper-container {
  padding-top: 110px;
  margin-top: -90px;
}

.footer-two_bottom {
  position: relative;
  text-align: center;
}

.footer-two_copyright {
  position: relative;
  font-size: 16px;
  padding: 20px 80px;
  display: inline-block;
  color: var(--white-color);
  border-top: 1px solid rgba(var(--white-color-rgb), 0.2);
}

/* Footer Three */

.footer-style_three {
  position: relative;
  margin-top: 80px;
  padding-bottom: 70px;
  margin-left: 20px;
  margin-right: 20px;
}

.footer-style_three-bg {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #0a3d91 0%, #1565c0 75%, #ff8c2b 100%);
}

.footer-style_three-bg_image {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 30px;
  border-radius: 50px;
  background-size: cover;
}

.footer-style_three .widgets-section {
  position: relative;
  padding: 50px 50px 40px;
  z-index: 2;
}

.footer-custom-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: nowrap;
}

.footer-custom-col {
  flex: 1;
  min-width: 220px;
}

.footer-about {
  flex: 1.5;
}

.footer-three_column {
  position: relative;
  margin-bottom: 30px;
}

.footer-three_text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 35px;
  color: var(--white-color);
  max-width: 420px;
}

.footer-three_location-title {
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: var(--white-color);
  font-family: "Outfit", serif;
}

.footer-three_location-text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
  color: var(--white-color);
}

.footer-three_title {
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--white-color);
  font-size: 36px;
}

.footer-style_three .gallery-widget .instagram-block_one {
  width: 33.333%;
  display: flex;
  padding: 0px 5px;
  margin-bottom: 10px;
}

.footer-style_three .gallery-widget .instagram-block_one i img {
  width: 24px;
}

.footer-style_three .gallery-outer {
  position: relative;
  margin-bottom: 15px;
}

.footer-three_widget.links-widget {
  padding-left: 50px;
}

.footer-three_list {
  position: relative;
  margin-top: 25px;
}

.footer-three_list li {
  position: relative;
  margin-bottom: 18px;
}

.footer-three_list li a {
  position: relative;
  font-size: 16px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-three_list li a:hover {
  color: #ff8c2b;
  transform: translateX(5px);
}

.footer-three_appointment-title {
  position: relative;
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  color: var(--white-color);
}

.footer-three_appointment-subtitle {
  position: relative;
  margin-top: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #ff8c2b;
  font-family: "Outfit", serif;
}

.footer-three_appointment-text {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
  color: var(--white-color);
}

.footer-three_socials {
  position: relative;
}
.footer-three_socials {
  display: flex;
  gap: 12px;
}

.footer-three_socials a {
  position: relative;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.footer-three_socials a:hover {
  background: #ff8c2b;
  transform: translateY(-4px);
}

.footer-three_bottom {
  position: relative;
  padding: 20px 10px;
  border-radius: 50px;
  text-align: center;
  background-color: rgba(var(--white-color-rgb), 0.07);
}

.footer-three_copyright {
  position: relative;
  font-size: 16px;
  color: var(--white-color);
}
.footer-contact-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  color: var(--white-color);
}

.footer-contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-box:hover .footer-contact-icon {
  background: #ff8c2b;
  transform: scale(1.08);
}
