/* Hanna Design - Global Theme */
:root {
  --background: 180 20% 99%;
  --foreground: 210 50% 15%;
  --primary: 174 62% 40%;
  --primary-foreground: 0 0% 100%;
  --secondary: 180 25% 95%;
  --accent: 174 50% 92%;
  --muted: 210 10% 45%;
  --navy: 210 50% 15%;
  --card: 0 0% 100%;
  --border: 180 20% 90%;
  --shadow-sm: 0 4px 16px hsl(210 50% 15% / 0.08);
  --shadow-md: 0 12px 34px hsl(210 50% 15% / 0.15);
  --shadow-lg: 0 18px 48px hsl(210 50% 15% / 0.18);
  --radius-lg: 2rem;
}

/* Reset for new design */
.hanna-design * {
  box-sizing: border-box;
}

.hanna-design {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

.hanna-design img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hanna-design a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/* Container */
.hanna-container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.hanna-header {
  position: sticky;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding-block: 0.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.hanna-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.hanna-header.is-scrolled::after {
  opacity: 1;
}

.hanna-header .header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hanna-header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.hanna-header .brand img {
  width: 200px;
  height: auto;
}

.hanna-header .brand-title {
  display: block;
  font-weight: 700;
}

.hanna-header .brand-subtitle {
  display: block;
  font-size: 0.9rem;
  color: hsl(var(--muted));
}

.hanna-header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hanna-header .desktop-nav a {
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  position: relative;
  padding-bottom: 0.4rem;
}

.hanna-header .desktop-nav a::after {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.hanna-header .desktop-nav a:hover::after {
  width: 100%;
}

.hanna-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.hanna-header .language-switcher {
  display: flex;
  padding: 0.25rem;
  background: hsl(var(--secondary));
  border-radius: 999px;
}

.hanna-header .lang-btn {
  border: none;
  background: transparent;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  color: hsl(var(--muted));
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.hanna-header .lang-btn.active {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

/* Mobile Toggle */
.hanna-header .mobile-toggle {
  border: none;
  background: hsl(var(--card));
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

/* Mobile Menu */
.hanna-header .mobile-menu {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hanna-header .mobile-menu[hidden] {
  display: none;
}

.hanna-header .mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 500;
}

.hanna-header .mobile-languages {
  justify-content: center;
}

/* Buttons */
.hanna-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hanna-btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-md);
}

.hanna-btn-secondary {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  border: 2px solid hsl(var(--primary));
}

.hanna-btn:hover {
  transform: translateY(-2px);
}

/* Hero Section */
.hanna-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 6rem 4rem;
  overflow: hidden;
}

.hanna-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hanna-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hanna-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, hsl(var(--background) / 0.95), hsl(var(--background) / 0.8), transparent);
}

.rtl .hanna-hero .hero-overlay {
  background: linear-gradient(90deg, hsl(var(--background) / 0.95), hsl(var(--background) / 0.8), transparent);
}

.hanna-hero .hero-body {
  position: relative;
  z-index: 1;
}

.hanna-hero .hero-card {
  width: min(520px, 100%);
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(8px);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hanna-hero .hero-card h1 {
  font-size: clamp(2rem, 3.5vw, 2rem);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.hanna-hero .hero-card .subtitle {
  color: hsl(var(--muted));
  font-weight: 600;
  margin-top: -0.5rem;
}

.hanna-hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(var(--primary));
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.hanna-hero .intro {
  color: hsl(var(--muted));
  font-size: 1.05rem;
}

.hanna-hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Sections */
.hanna-section {
  padding-block: clamp(4rem, 6vw, 6rem);
}

.hanna-section-alt {
  background: linear-gradient(180deg, hsl(var(--secondary)), hsl(var(--background)));
}

.hanna-section-soft {
  background: hsl(var(--secondary));
}

.hanna-section .section-head {
  margin-bottom: 1.75rem;
}

.hanna-section .section-head.center {
  text-align: center;
}

.hanna-section .section-head.light {
  color: #fff;
}

.hanna-section .section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.hanna-section .section-subtitle {
  color: hsl(var(--muted));
  max-width: 600px;
  margin-inline: auto;
}

.hanna-section .section-head.light .section-subtitle {
  color: hsl(var(--primary-foreground) / 0.85);
}

.hanna-section .divider {
  display: inline-flex;
  width: 110px;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 999px;
}

/* About Section */
.hanna-about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hanna-about-media {
  position: relative;
  max-width: 480px;
}

.hanna-about-media .media-glow {
  position: absolute;
  
  
}

.hanna-about-media img {
  position: relative;
  border-radius: calc(var(--radius-lg) * 0.85);
  
}

.hanna-about-content p {
  color: hsl(var(--muted));
  margin-bottom: 1rem;
}

.hanna-about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hanna-highlight {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--card));
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hanna-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: hsl(var(--accent));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

/* Services Card Grid */
.hanna-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  place-items: center;
}

.hanna-card {
  background: hsl(var(--card));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width:100%;
}

.hanna-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.hanna-card .card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--accent));
  color: hsl(var(--primary));
  margin-inline: auto;
  margin-bottom: 1rem;
}

.hanna-card h3 {
  margin: 0.75rem 0;
}

.hanna-card p {
  color: hsl(var(--muted));
}

/* Expertise Section */
.hanna-expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hanna-expertise-media {
  position: relative;
  max-width: 520px;
}

.hanna-expertise-media .media-accent {
  position: absolute;
  inset: -1rem;
  border-radius: calc(var(--radius-lg) * 0.8);
  background: linear-gradient(120deg, hsl(var(--primary) / 0.2), transparent);
}

.hanna-expertise-media img {
  position: relative;
  border-radius: calc(var(--radius-lg) * 0.7);
  box-shadow: var(--shadow-md);
}

.hanna-expertise-list h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hanna-expertise-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
@media (min-width: 992px) {
  .hanna-expertise-list ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px; /* row gap, column gap */
  }
}

.hanna-expertise-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--card));
  padding: 0.75rem 1rem;
  border-radius: 0.85rem;
  color: hsl(var(--muted));
}

.hanna-expertise-list li i {
  color: hsl(var(--primary));
}

/* Media Grid */
.hanna-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.hanna-media-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.hanna-media-card .media-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
}

.hanna-media-card .media-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hanna-media-card .media-body p {
  color: hsl(var(--muted));
}

.hanna-media-card .media-link {
  margin-top: auto;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Contact Section */
.hanna-contact-section {
  position: relative;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  overflow: hidden;
}

.hanna-contact-section .contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 55%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.25), transparent 50%);
  opacity: 0.35;
}

.hanna-contact-section .contact-card {
  position: relative;
  background: hsl(var(--card));
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-lg);
  color: hsl(var(--foreground));
}

.hanna-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.hanna-form-grid label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.35rem;
}

.hanna-form-grid input,
.hanna-form-grid textarea {
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: hsl(var(--secondary));
  color: inherit;
  font-family: inherit;
}

.hanna-form-grid textarea {
  resize: none;
}

.hanna-form-grid label.full {
  grid-column: 1 / -1;
}

.hanna-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  grid-column: 1 / -1;
}

.hanna-contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
}

.hanna-form-status {
  grid-column: 1 / -1;
  min-height: 1.25rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Map Section */
.hanna-map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hanna-map-wrapper iframe {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  filter: grayscale(0.2);
  border: 0;
}

.hanna-map-card {
  
  top: 1.5rem;
  inset-inline-end: 1.5rem;
  background: hsl(var(--card));
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  width: min(320px, calc(100% - 3rem));
  margin:0 auto;
}

.hanna-map-card p {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 0.5rem 0;
  color: hsl(var(--muted));
  font-size: 22px;
  margin-bottom: 20px;
}

.hanna-map-card a {
  color: hsl(var(--primary));
  font-weight: 600;
}

/* Footer */
.hanna-footer {
  /*background: hsl(var(--navy));*/
  color: #000;
  text-align: center;
  padding: 3rem 1rem;
}

.hanna-footer img {
  width: 200px;
  margin-inline: auto;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.9;
}

.hanna-footer p,
.hanna-footer small {
  margin: 0.4rem 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hanna-header .desktop-nav,
  .hanna-header .language-switcher:not(.mobile-languages) {
    display: none;
  }

  .hanna-header .mobile-toggle {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .hanna-hero .hero-card {
    margin-inline: auto;
  }

  .hanna-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hanna-map-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 520px) {
  .hanna-container {
    width: calc(100% - 1.5rem);
  }

  .hanna-btn {
    width: 100%;
  }

  .hanna-header .brand-subtitle {
    max-width: 10ch;
  }
}

@keyframes hanna-spin {
  to {
    transform: rotate(360deg);
  }
}

.hanna-btn[data-loading="true"] {
  position: relative;
  pointer-events: none;
  opacity: 0.75;
}

.hanna-btn[data-loading="true"]::after {
  content: '';
  position: absolute;
  inset-inline-start: 1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: hanna-spin 0.8s linear infinite;
}



/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.media-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  overflow: hidden;
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.media-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 180px;
}

.media-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.media-body p {
  color: hsl(var(--muted));
}

.media-link {
  margin-top: auto;
  color: hsl(var(--primary));
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}


.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: hsl(var(--muted));
  max-width: 600px;
  margin-inline: auto;
}

.section-head.light .section-subtitle {
  color: hsl(var(--primary-foreground) / 0.85);
}

.divider {
  display: inline-flex;
  width: 110px;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 999px;
}


.d-block {
  display: block;
}

.d-lg-none {
  @media(min-width: 992px) {
    display: none !important;
  }
}

.d-lg-block {
  @media(min-width: 992px) {
    display: block !important;
  }
}

.d-none {
  display: none;
}

@media (max-width: 991px) {
  .about-image {
    margin: 30px 0px;
  }
}
.icn {
  background: #01bfd5;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color:#fff;
}