:root {
  --primary-color: #2b6cb0;
  --primary-light: #4299e1;
  --primary-dark: #2c5282;
  --secondary-color: #38a169;
  --secondary-light: #48bb78;
  --secondary-dark: #2f855a;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --gray-color: #e2e8f0;
  --dark-gray: #4a5568;
  --text-color: #1a202c;
  --text-light: #718096;
  --white: #ffffff;
  --black: #000000;
  --success-color: #48bb78;
  --warning-color: #ed8936;
  --danger-color: #f56565;
  --shadow: 0 4px 6px-1px rgba(0, 0, 0, 0.1), 0 2px 4px-1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
[data-theme="dark"] {
  --primary-color: #3182ce;
  --primary-light: #4299e1;
  --primary-dark: #2b6cb0;
  --secondary-color: #38a169;
  --secondary-light: #48bb78;
  --secondary-dark: #2f855a;
  --dark-color: #f7fafc;
  --light-color: #2d3748;
  --gray-color: #4a5568;
  --dark-gray: #e2e8f0;
  --text-color: #f7fafc;
  --text-light: #cbd5e0;
  --white: #2d3748;
  --black: #f7fafc;
  --shadow: 0 4px 6px-1px rgba(0, 0, 0, 0.3), 0 2px 4px-1px rgba(0, 0, 0, 0.2);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Tajawal", sans-serif;
  background-color: var(--light-color);
  color: var(--text-color);
  transition: var(--transition);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.circular-nav {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.nav-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateX(-5px);
}
.nav-link i {
  font-size: 18px;
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  right: 70px;
}
.theme-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.theme-toggle:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.nav-toggle:hover {
  background-color: var(--primary-color);
  color: var(--white);
}
.hero-section {
  height: 100vh;
  min-height: 700px;
  background: url("./img/HeroImg.png") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
}
.hero-title span {
  color: var(--secondary-light);
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn-outline {
  background-color: transparent;
  color: white;
  border-color: var(--white);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.with-icon i {
  margin-right: 8px;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  text-align: center;
  animation: bounce 2s infinite;
}
.mouse {
  width: 25px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}
.scroller {
  width: 5px;
  height: 8px;
  background-color: var(--white);
  border-radius: 3px;
  margin-top: 5px;
  animation: scroll 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}
.services-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./img/HeroImg.png") repeat;
  opacity: 0.05;
  z-index: -1;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title span {
  color: var(--primary-color);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.divider-line {
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}
.divider-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 15px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(66, 153, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 30px;
  transition: var(--transition);
}
.service-card:hover.service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}
.service-description {
  color: var(--text-light);
  margin-bottom: 20px;
}
.service-features {
  list-style: none;
  margin-bottom: 25px;
}
.service-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.service-features i {
  color: var(--secondary-color);
  margin-left: 10px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.service-cta i {
  margin-right: 5px;
  transition: var(--transition);
}
.service-cta:hover {
  color: var(--primary-dark);
}
.service-cta:hover i {
  transform: translateX(-5px);
}
.service-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 153, 225, 0.1) 0%,
    rgba(66, 153, 225, 0) 100%
  );
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover.service-hover-effect {
  opacity: 1;
}
.stats-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.2);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.stat-label {
  font-size: 1.1rem;
  margin-bottom: 15px;
}
.stat-icon {
  font-size: 2rem;
  color: var(--white);
  opacity: 0.8;
}
.blog-section {
  padding: 100px 0;
  background-color: var(--white);
}
.blog-slider {
  padding-bottom: 50px;
}
.blog-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover.blog-image img {
  transform: scale(1.05);
}
.blog-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  line-height: 1.2;
}
.blog-date span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
.blog-date span:last-child {
  font-size: 0.9rem;
}
.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.blog-category {
  background-color: rgba(56, 161, 105, 0.1);
  color: var(--secondary-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-duration i {
  margin-left: 5px;
}
.blog-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
  line-height: 1.4;
}
.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.blog-read-more i {
  margin-right: 5px;
  transition: var(--transition);
}
.blog-read-more:hover {
  color: var(--primary-dark);
}
.blog-read-more:hover i {
  transform: translateX(-5px);
}
.swiper-pagination {
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: var(--gray-color) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}
.about-section {
  padding: 100px 0;
  background-color: var(--light-color);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-content {
  padding-right: 30px;
}
.about-description {
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.8;
}
.about-features {
  margin-bottom: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.feature-item i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-left: 10px;
}
.about-buttons {
  display: flex;
  gap: 15px;
}
.about-image {
  position: relative;
}
.image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--secondary-color);
  color: var(--white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(56, 161, 105, 0.3);
}
.experience-badge span:first-child {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.experience-badge small {
  font-size: 0.8rem;
}
.contact-section {
  padding: 100px 0;
  background-color: var(--white);
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
}
.contact-info {
  padding-right: 30px;
}
.contact-social {
  display: flex;
  justify-content: center;
}
.contact-social a {
  text-decoration: none;
}
.info-item {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}
.info-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(66, 153, 225, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-left: 20px;
  flex-shrink: 0;
}
.info-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}
.info-content a,
.info-content p {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}
.info-content a:hover {
  color: var(--primary-color);
}
.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}
.social-icon.whatsapp:hover {
  background-color: #25d366;
}
.contact-form {
  background-color: var(--light-color);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 1px solid var(--gray-color);
  border-radius: 5px;
  background-color: var(--white);
  color: var(--text-color);
  font-family: "Tajawal", sans-serif;
  transition: var(--transition);
}
.form-group select {
  appearance: none;
}
.form-group textarea {
  padding: 15px 20px;
  min-height: 120px;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  width: 100%;
}
.submit-btn:hover {
  background-color: var(--primary-dark);
}
.submit-btn.btn-icon {
  position: absolute;
  right: -30px;
  transition: var(--transition);
}
.submit-btn:hover.btn-icon {
  right: 20px;
}
.submit-btn:hover.btn-text {
  transform: translateX(-20px);
}
.footer {
  background-color: var(--dark-color);
  color: var(--white);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}
.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}
.footer-about-text {
  margin-bottom: 20px;
  line-height: 1.8;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 15px;
  display: block;
}
.footer-links a {
  color: var(--dark-color);
  text-decoration: none;
  display: block;
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-right: 10px;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--white);
}
.contact-item i {
  margin-left: 10px;
  color: var(--primary-light);
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}
.footer-social a:hover {
  color: var(--primary-light);
  transform: translateY(-5px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.copyright {
  color: var(--white);
  font-size: 0.9rem;
  margin-left: auto;
  margin-right: auto;
}
.footer-links {
  display: block;
  gap: 20px;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--primary-light);
}
.footer-services {
  display: block;
  gap: 20px;
}
.footer-services ul {
  list-style: none;
}
.footer-services li {
  margin-bottom: 15px;
  display: block;
}
.footer-services a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-services a:hover {
  color: var(--primary-light);
}
.fixed-contact-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fixed-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}
.fixed-button::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--dark-color);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.fixed-button:hover::after {
  opacity: 1;
  visibility: visible;
  right: 70px;
}
.call-button {
  background-color: var(--primary-color);
}
.whatsapp-button {
  background-color: #25d366;
}
.fixed-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.blog-modal.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background-color: var(--white);
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition);
}
.blog-modal.active.modal-content {
  transform: scale(1);
}
.modal-header {
  padding: 20px;
  border-bottom: 1px solid var(--gray-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 1;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
}
.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover {
  color: var(--primary-color);
}
.modal-body {
  padding: 20px;
}
.modal-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: var(--text-light);
}
.blog-category {
  background-color: rgba(56, 161, 105, 0.1);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
}
.blog-date i {
  margin-left: 5px;
}
.blog-content {
  line-height: 1.8;
  color: var(--text-color);
}
.blog-content p {
  margin-bottom: 15px;
}
.blog-content h3 {
  font-size: 1.3rem;
  margin: 25px 0 15px;
  color: var(--dark-color);
}
.blog-content ul {
  margin-bottom: 20px;
  padding-right: 20px;
}
.blog-content li {
  margin-bottom: 10px;
  position: relative;
}
.blog-content li::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--primary-color);
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
}
@media (max-width: 992px) {
  .circular-nav {
    right: 10px;
  }
  .nav-items {
    gap: 15px;
  }
  .nav-link,
  .theme-toggle {
    width: 45px;
    height: 45px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-content {
    padding-right: 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .circular-nav {
    flex-direction: row;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    background-color: var(--white);
    box-shadow: 0-5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px;
    justify-content: center;
  }
  .nav-items {
    flex-direction: row;
    margin-bottom: 0;
    gap: 10px;
  }
  .nav-link {
    width: 40px;
    height: 40px;
  }
  .nav-link i {
    font-size: 16px;
  }
  [data-tooltip]::before {
    display: none;
  }
  .theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  .hero-section {
    min-height: 600px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .section-title {
    font-size: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fixed-contact-buttons {
    left: 15px;
    bottom: 70px;
  }
}
@media (max-width: 500px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .about-buttons {
    flex-direction: column;
  }
  .experience-badge {
    width: 80px;
    height: 80px;
  }
  .experience-badge span:first-child {
    font-size: 1.5rem;
  }
  .modal-body {
    padding: 15px;
  }
  .modal-image {
    height: 200px;
  }
}
