/** put css for your plugin here **/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #263a31; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #103524; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2487ce; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.7);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #263a31; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2487ce; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #edf6f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*Responsive*/
@media screen and (min-width: 1024px){
	:root{
		--normal-font-size:1rem;
	}
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: "Amatic SC", sans-serif;
}

.section-header p span {
  color: #2487ce;
}

 

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: #2487ce;
}
 


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 160px;
  background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
   display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 100%);
  z-index: 1;
}

.hero .hero-wrapper {
  position: relative;
  z-index: 2;
}

.hero .hero-content .content-header {
  margin-bottom: 48px;
}

.hero .hero-content .content-header .hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .content-header .hero-label:hover {
  background: var(--accent-color);
  color: var(--surface-color);
}

.hero .hero-content .content-header .hero-label i {
  font-size: 16px;
}

.hero .hero-content .content-header h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content .content-header h1 {
    font-size: 2.4rem;
  }
}

.hero .hero-content .content-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.hero .hero-visual .visual-container {
  position: relative;
}

.hero .hero-visual .visual-container .featured-property {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 480px;
}

.hero .hero-visual .visual-container .featured-property img {
  width: 100%;
  height: 100%;
  object-fit: fit;
}
 
.hero .hero-visual .visual-container .overlay-images .overlay-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 4px solid var(--surface-color);
}

.hero .hero-visual .visual-container .overlay-images .overlay-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero .hero-visual .visual-container .overlay-images .overlay-1 {
  top: 60px;
  right: -20px;
  width: 240px;
  height: 140px;
}

.hero .hero-visual .visual-container .overlay-images .overlay-2 {
  top: 240px;
  right: -20px;
  width: 220px;
  height: 120px;
}

.hero .hero-visual .visual-container .agent-card {
  margin-top: 20px;
  background: var(--surface-color);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  width: 360px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero .hero-visual .visual-container .agent-card .agent-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info h4 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info p {
  margin: 0 0 8px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .stars {
  display: flex;
  gap: 2px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .stars i {
  color: #ffc107;
  font-size: 11px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .rating-text {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 600;
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: scale(1.1);
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn i {
  font-size: 16px;
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero .hero-visual {
    margin-top: 60px;
  }

  .hero .hero-visual .visual-container {
    height: 500px;
  }

  .hero .hero-visual .visual-container .featured-property {
    height: 380px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-1 {
    top: 40px;
    right: -20px;
    width: 120px;
    height: 120px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-2 {
    top: 180px;
    right: 0;
    width: 100px;
    height: 100px;
  }

  .hero .hero-visual .visual-container .agent-card {
    bottom: -10px;
    left: -20px;
    width: 280px;
    padding: 16px;
  }

  .hero .hero-visual .visual-container .agent-card .agent-profile .agent-photo {
    width: 50px;
    height: 50px;
  }

}

@media (max-width: 576px) {
  .hero {
    padding: 80px 0 40px;
  }

  .hero .hero-content .content-header .hero-label {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero .hero-visual .visual-container .featured-property {
    height: 300px;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-1 {
    display: none;
  }

  .hero .hero-visual .visual-container .overlay-images .overlay-2 {
    display: none;
  }

  .hero .hero-visual .visual-container .agent-card {
    width: 100%;
    padding: 14px;
  }

  .hero .hero-visual .visual-container .agent-card .agent-profile {
    gap: 12px;
  }

  .hero .hero-visual .visual-container .agent-card .agent-profile .agent-info h4 {
    font-size: 15px;
  }
}
 

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-gallery {
  position: relative;
  height: 100%;
}

.home-about .image-gallery .primary-image {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-about .image-gallery .primary-image img {
  width: 100%;
  height: 350px;
  object-fit: fill;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image img {
    height: 300px;
  }
}

.home-about .image-gallery .primary-image .experience-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  border-radius: 16px;
  padding: 0.5rem;
  color: var(--contrast-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge {
    top: 1rem;
    left: 1rem;
    padding: 1rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content {
  text-align: center;
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .number {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .home-about .image-gallery .primary-image .experience-badge .badge-content .number {
    font-size: 1.5rem;
  }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .text {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.9;
}

.home-about .image-gallery .secondary-image {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 60%;
  border-radius: 7px;
  overflow: hidden;
  border: 4px solid var(--surface-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .home-about .image-gallery .secondary-image {
    display: none;
  }
}

.home-about .image-gallery .secondary-image img {
  width: 100%;
  height: 180px;
  object-fit: fill;
}

.home-about .content {
  padding-left: 2rem;
}

@media (max-width: 992px) {
  .home-about .content {
    padding-left: 0;
    margin-top: 2rem;
  }
}

.home-about .content .section-header {
  margin-bottom: 2rem;
}

.home-about .content .section-header .section-label {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.home-about .content .section-header h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}

.home-about .content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}


.home-about .content .power-stmt {
  font-weight: 700;
}

@media (max-width: 768px) {
  .home-about .content .section-header h2 {
    font-size: 1.8rem;
  }

  .home-about .content p {
    text-align: center;
  }
}

.home-about .content .achievements-list {
  margin-bottom: 2.5rem;
}

.home-about .content .achievements-list .achievement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.home-about .content .achievements-list .achievement-item:last-child {
  margin-bottom: 0;
}

.home-about .content .achievements-list .achievement-item .achievement-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .content .achievements-list .achievement-item .achievement-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.home-about .content .action-section {
  display: flex;
  align-items: center;
  /*gap: 2rem;*/
}

@media (max-width: 768px) {
  .home-about .content .action-section {
    justify-content: center;
  }
}

.home-about .content .action-section .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-about .content .action-section .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

.home-about .content .action-section .btn-cta:hover i {
  transform: translateX(3px);
}

.home-about .content .action-section .btn-cta i {
  transition: transform 0.3s ease;
}

.home-about .content .action-section .contact-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .content .action-section .contact-info .contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .content .action-section .contact-info .contact-icon i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.home-about .content .action-section .contact-info .contact-details {
  display: flex;
  flex-direction: column;
}

.home-about .content .action-section .contact-info .contact-details span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content .action-section .contact-info .contact-details strong {
  font-size: 1rem;
  color: var(--heading-color);
  font-weight: 700;
}


/*Why Us*/

.how-to .card-item {
  background: color-mix(in srgb, #555555, transparent 97%);
  padding: 50px 30px;
  transition: all ease-in-out 0.3s;
  height: 100%;
  position: relative;
}

.how-to .card-item span {
  color: #47b2e4;
  display: block;
  font-size: 28px;
  font-weight: 700;
}

.how-to .card-item h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.how-to .card-item h4 a {
  color: #0d3035;
}

.how-to .card-item p {
  font-size: 15px;
  color: color-mix(in srgb, #555555, transparent 40%);
  margin: 0;
  padding: 0;
}

.how-to .card-item:hover {
  background: #47b2e4;
  padding: 30px 30px 70px 30px;
}

.how-to .card-item:hover span,
.how-to .card-item:hover h4 a,
.how-to .card-item:hover p {
  color: #ffffff;
}

.category-list{
  padding-top: 25px;
  padding-bottom: 25px;
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.call-to-action .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.call-to-action .cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
}

.call-to-action .container {
  position: relative;
  z-index: 2;
}

.call-to-action .cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 2rem;
  }
}

.call-to-action .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

.call-to-action .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .call-to-action .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .call-to-action .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.call-to-action .cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.call-to-action .cta-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.call-to-action .cta-features .feature-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.call-to-action .cta-features .feature-item span {
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 576px) {
  .call-to-action .cta-features {
    flex-direction: column;
    gap: 1rem;
  }

  .call-to-action .cta-features .feature-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .call-to-action {
    min-height: 400px;
    padding: 80px 0;
  }

  .call-to-action .cta-content h2 {
    margin-bottom: 1rem;
  }

  .call-to-action .cta-content p {
    margin-bottom: 2rem;
  }

  .call-to-action .cta-buttons {
    margin-bottom: 2rem;
  }
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .section-header {
  margin-bottom: 2rem;
}

.services .section-header h2 {
  font-size: 2.25rem;
  text-transform: capitalize;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .services .section-header h2 {
    font-size: 1.875rem;
  }

}

.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

 
.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
 

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.services .service-item:hover {
  color: var(--contrast-color);
  transform: translateX(4px);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}



/*--------------------------------------------------------------
# Multistore Section
--------------------------------------------------------------*/
.multistore .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .multistore .content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.multistore .section-header {
  margin-bottom: 2rem;
}

.multistore .section-header h2 {
  font-size: 2.25rem;
  text-transform: capitalize;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .multistore .section-header h2 {
    font-size: 1.875rem;
  }

  .lead-text{
    text-align: center;
  }
}


.multistore .section-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.multistore .lead-text {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 500;
}

.multistore .description-text {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.multistore .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .multistore .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.multistore .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.multistore .stat-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.multistore .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.multistore .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.multistore .visual-section {
  position: relative;
}

.multistore .main-image-container {
  position: relative;
  margin-bottom: 2rem;
}

.multistore .main-image-container .main-visual {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.multistore .main-image-container .overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .multistore .main-image-container .overlay-card {
    position: static;
    margin-top: 2rem;
    max-width: none;
  }
}

.multistore .main-image-container .overlay-card .card-content {
  position: relative;
}

.multistore .main-image-container .overlay-card .card-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: var(--heading-color);
}

.multistore .main-image-container .overlay-card .card-content p {
  margin: 0;
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5;
}

.multistore .multistore-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.multistore .multistore-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
}

.multistore .multistore-benefits li i {
  color: var(--accent-color);
  font-size: 1rem;
}

.multistore .main-image-container .overlay-card .card-content .card-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multistore .main-image-container .overlay-card .card-content .card-icon i {
  font-size: 1.125rem;
}

.multistore .secondary-images .secondary-img {
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.multistore .secondary-images .secondary-img:hover {
  transform: scale(1.05);
}

.multistore .features-section {
  padding: 3rem 0;
  background-color: color-mix(in srgb, var(--surface-color), var(--background-color) 50%);
  border-radius: 12px;
  margin-top: 2rem;
}

.multistore .feature-box {
  text-align: center;
  padding: 1.5rem;
}

.multistore .feature-box .feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.multistore .feature-box .feature-icon:hover {
  transform: translateY(-5px);
}

.multistore .feature-box h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-weight: 600;
}

.multistore .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
  margin: 0;
}



.multistore .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.multistore .cta-buttons .btn {
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.multistore .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.multistore .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.multistore .cta-buttons .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.multistore .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .multistore .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .multistore .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
   
  .multistore .cta-buttons {
    margin-bottom: 2rem;
  }
}
 