:root {
  --primary-color: #265e97;
  --secondary-color: #77bc62;
  --primary-light: #3a7ab9;
  --primary-dark: #1c4a7a;
  --secondary-light: #8fd177;
  --secondary-dark: #5fa54d;
  --dark-color: #333333;
  --light-color: #f8f9fa;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --black: #000000;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Tajawal', 'Almarai', sans-serif;
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

section {
  width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Almarai', 'Tajawal', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  padding-right: 1.5rem;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.text-secondary {
  color: var(--secondary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color)
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

.section-header {
  text-align: center;
  margin-bottom: 1rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translate(50%, -50%);
}

.section-header p {
  color: var(--gray-color);
  max-width: 700px;
  margin: 0 auto;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.section-divider span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 0 5px;
  transition: var(--transition);
  cursor: pointer;
}

.section-divider span.middle {
  width: 50px;
  background-color: var(--secondary-color);
}




/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.page-loader.fade-out {
  opacity: 0;
}

.loader-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

.loader-progress {
  width: 200px;
  height: 4px;
  background-color: var(--light-gray);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  animation: progress 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes progress {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled {
  padding: 0rem 0;
  background-color: rgba(255, 255, 255);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  color: var(--dark-color);

}

.navbar-brand img {
  transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.navbar-nav .nav-link {
  font-family: 'Almarai', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--secondary-dark);
  transition: all 0.4s ease;
  border-radius: 5px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

@media (max-width:992px) {
  .navbar-nav .nav-link::after { 
    height: 0;
  }
}

.navbar-nav .nav-link.active {
  color: var(--primary-dark);
  font-weight: 800;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 24px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  right: 0;
  height: 2px;
  background-color: var(--dark-color);
  transition: var(--transition);
}

.navbar-toggler-icon::before {
  width: 24px;
  top: 6px;
}

.navbar-toggler-icon::after {
  width: 16px;
  bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
  width: 24px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 24px;
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 2;
}

.hero-slider .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2) !important;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-slider .owl-nav button span {
  font-size: 1.5rem;
}


.hero-slider .owl-nav button:hover {
  background-color: var(--primary-color) !important;
}

@media (max-width: 576px) {
  .hero-slider .owl-nav {
    display: none;
  }
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.hero-slider .owl-dot span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5) !important;
  margin: 0 5px;
  transition: var(--transition);
}

.hero-slider .owl-dot.active span {
  background-color: var(--white) !important;
  transform: scale(1.2);
}


/* Video Section */
.about-video-section {
  background-color: var(--light-color);
}

.video-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.video-content p {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.features-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.features-list i {
  color: var(--secondary-color);
  margin-left: 0.75rem;
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.video-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-poster {
  position: relative;
  height: 350px;
}

.video-poster iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video .modal-body {
  padding: 5px;
}

/* Featured Properties */
.featured-properties {
  background-color: var(--light-color);
}

.property-card {
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
}

.property-image {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.05);
}

.property-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.property-card:hover .property-overlay {
  opacity: 1;
}

.property-details {
  padding: 1.5rem;
}

.property-details h3 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.property-details h3 a:hover {
  color: var(--primary-color);
}

.property-location {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.property-location i {
  margin-left: 0.5rem;
}

.property-features {
  display: flex;
  margin-bottom: 1rem;
}

.property-features span {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  color: var(--gray-color);
}

.property-features i {
  margin-left: 0.25rem;
  color: var(--primary-color);
}

.property-price {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.featured-properties .owl-stage {
  padding-top: 20px;
}

/* Dots داخل Featured Properties */
.featured-properties .divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.featured-properties .divider button {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-light);
  margin: 0 10px;
  transition: var(--transition);
  /* cursor: pointer; */
  border: none;
}

.featured-properties .divider button.active {
  background-color: var(--secondary-color);
  transform: scale(1.5);
}

/* video Section */
.video-section {
  position: relative;
  overflow: hidden;
  height: 60vh;
}

.video-section .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.5);
}

.video-overlay .play-btn {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-overlay .play-btn:hover {
  transform: scale(1.1);
}



/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.service-card {
  background-color: var(--white);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(119, 188, 98, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--secondary-color);
  color: var(--white);
}

.service-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-right: 0.5rem;
  transition: var(--transition);
}

.service-link:hover i {
  margin-right: 0.75rem;
}

.services-section .owl-stage {
  padding-top: 20px;
}

.arrow-icon {
  display: inline-block;
  transform: rotate(45deg);
  /* ↖ */
}

.service-card:hover .arrow-icon {
  animation: arrowBounce 0.6s ease-in-out infinite;
}

/* keyframes لتحريك السهم */
@keyframes arrowBounce {
  0% {
    transform: rotate(45deg) translate(0, 0);
  }

  50% {
    transform: rotate(45deg) translate(-8px, 0px);
  }

  100% {
    transform: rotate(45deg) translate(0, 0);
  }
}

/* Dots داخل Featured Properties */
.services-section .divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.services-section .divider button {
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-light);
  margin: 0 10px;
  transition: var(--transition);
  /* cursor: pointer; */
  border: none;
}

.services-section .divider button.active {
  background-color: var(--secondary-color);
  transform: scale(1.5);
}

/* Brochure Section */
.previous-works {
  position: relative;
  background-color: var(--light-color);
}

.previous-works .card {
  background-color: var(--white);
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.previous-works .card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.previous-works .pdf-preview {
  border: 1px dashed #ddd;
  transition: all 0.3s;
  background-color: #fff;
}

.previous-works .pdf-preview:hover {
  border-color: var(--primary-color);
  background-color: rgba(46, 62, 168, 0.03);
}

.previous-works .pdf-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.previous-works ul li {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

.previous-works ul li i {
  color: var(--secondary-color);
}

/* Stats Section */
.stats-section {
  position: relative;
  padding: 5rem 0;
  color: var(--white);
  overflow: hidden;
}

.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../IMG/bg-blue.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  filter: brightness(0.5);
}

.stats-section .container {
  position: relative;
  z-index: 1;
}

.stats-section .stat-item {
  text-align: center;
  padding: 1.5rem 1.5rem;
  backdrop-filter: blur(5px);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.stats-section .stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  padding: 1px;
  /* سمك الـ liner */
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stats-section .stat-item:hover::before {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0.8) 100%);
  animation: borderGlow 2s infinite alternate;
}

@keyframes borderGlow {
  0% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.stats-section .stat-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stats-section .stat-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
}

.stats-section .stat-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.stats-section .stat-icon i {
  font-size: 2rem;
  color: var(--white);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.stats-section .stat-border {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}


.stats-section .stat-item:hover .stat-border {
  border-color: rgba(255, 255, 255, 0.5);
}

.stats-section .stat-content .counter {
  font-size: 2.8rem;
  font-weight: 800;
  margin-right: 0.25rem;
  display: inline-block;
  background: linear-gradient(to right, #ffffff, #e6f3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stats-section .stat-content p {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Partners Section */
.partners-section {
  background-color: var(--white);
}

.partner-item {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  /* background-color: var(--white); */
  /* border-radius: 8px; */
  /* box-shadow: var(--box-shadow);
  transition: var(--transition); */
}


.partner-item img {
  max-height: 90px;
  width: auto;
  transition: var(--transition);
}



/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../IMG/video-1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--white);
}


/* Footer Styles */
.site-footer {
  background-color: #161e2d;
  color: #fff;
  padding: 3rem 0 0;
  font-family: 'Tajawal', sans-serif;
}


.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 180px;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

@media (max-width:576px) {
  .social-links {
    align-items: center;
    justify-content: center;
  }

}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  /* Secondary color */
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}



.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-right: 5px;
}

.footer-contact i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  text-align: center;
}


.copyright {
  opacity: 0.7;
  margin: 0.5rem 0;
}

.footer-bottom {
  background-color: #121b27;
  color: var(--white);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
  font-weight: 500;
  transition: color 0.3s ease;
  color: var(--secondary-color);
}







/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  left: 35px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

/* Floating Contact Button Styles */
.contact-info-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-info-btn i {
  font-size: 1.5rem;
}

.contact-info-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.contact-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(0.95);
    opacity: 0;
  }
}

/* Contact Info Box Styles */
.contact-info-box {
  position: fixed;
  bottom: 100px;
  left: 30px;
  width: 300px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.contact-info-box.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-body {
  padding: 1rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  color: var(--dark-color);
  transition: all 0.2s ease;
}

.contact-item:hover {
  background-color: #f9f9f9;
}

.contact-icon {
  /* width: 40px;
  height: 40px; */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}
.contact-icon i{
  font-size: 1.4rem;
}

.phone  i {
  color: var(--primary-color) !important;
}

.whatsapp .contact-icon {
  color: #25D366;
}

.email .contact-icon {
  color: #EA4335;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.8rem;
  color: var(--gray-color);
}

.contact-value {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 576px) {
  .contact-info-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    left: 20px;
  }
  
  .contact-info-box {
    width: 280px;
    left: 20px;
  }
}

/* Modal */
.modal-header .btn-close {
  margin: 0;
  padding: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}





@media (max-width: 575.98px) {

  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    left: 20px;
  }
}