/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Navbar */
.navbar {
  background: #f5f5f5;
  padding: 12px 20px;
  text-align: center;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.navbar li {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: url('../images/artemis/hero_section_artemis.png') center center/cover no-repeat;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: relative;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.18); /* Yellowish overlay */
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.993); /* white, semi-transparent */
  transform: translateX(-50%);
  z-index: 2;
  height: 60%; /* adjust as needed */
  margin: auto 0;
  border-radius: 1px;
  pointer-events: none;
}

.hero .overlay {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 60px 40px;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  color: white;
}

.hero .left,
.hero .right {
  flex: 1 1 0;                 /* Equal width for both sides */
  display: flex;
  flex-direction: column;
  justify-content: center;     /* Center content vertically */
  gap: 30px;
  min-width: 0;                /* Prevent overflow */
}

.hero .stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero .stat {
  border: 2px solid #ffdc47;
  background-color: rgba(101, 96, 58, 0.692);
  border-radius: 10px;
  padding: 20px;
  width: 120px;
  text-align: center;
}

.hero .stat h3 {
  font-size: 28px;
  color: #ffd600;
}

.hero .stat p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.hero .highlights button {
  background:  #9a8a39;
  border: 3px solid #ffd600;
  padding: 14px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 8px;
  width: 75%;
  cursor: pointer;
  transition: 0.3s;
   box-shadow: 0 2px 10px rgba(0,0,0,0.10); /* Subtle shadow */
  letter-spacing: 0.5px;
}

.hero .highlights button:hover {
  background-color: #5d5218;
  color: #5d5a1b;
}

.hero .right {
  flex: 1;
  text-align: center;
}

.hero .logo {
  width: 300px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}

.hero .tagline {
  font-size: 16px;
  font-weight: bold;
  color: #ffd600;
}


/* Welcome */
.welcome {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
}

.welcome .video img {
  width: 100%;
  max-width: 450px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.welcome .intro {
  max-width: 600px;
}

.welcome .intro h2 {
  font-size: 32px;
  color: #776b28;
  font-weight: bold;
  margin-bottom: 10px;
}

.welcome .intro h4 {
  font-size: 18px;
  font-weight: 500;
  color: #847017;
  margin-bottom: 18px;
}

.welcome .intro p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Specialties */
.specialties {
  position: relative;
  background: linear-gradient(to bottom, #ffffff 60%, #c2b88d 40%);
  padding: 60px 20px 120px; /* extra bottom padding for button */
  text-align: center;
  overflow: visible;
}

.specialties h3 {
  font-size: 30px;
  font-weight: 600;
  color: #6e5c1e;
  margin-bottom: 30px;
}

.specialties .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.specialties .buttons button {
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #6e5c1e;
  background-color: #ffffff;
  border: 2px solid #6e5c1e;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.specialties .buttons button:hover {
  background-color: #6e5c1e;
  color: #fff;
}

/* Specialty icon cards */
.specialties .specialty-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 0;
}

.specialties .specialty-icons div {
  background-color: #ffffff;
  width: 160px;
  height: 160px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  border: 2px solid #e3d490;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.specialties .specialty-icons div:hover {
  transform: translateY(-4px);
}

/* View All Button */
.view-all {
  position: absolute;
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
  background: #6e5c1e;
  color: white;
  padding: 12px 32px;
  font-size: 14px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  z-index: 10;
}

.view-all:hover {
  background-color: #4d3f12;
}
* Add more space between specialties and centres of excellence */
.specialties {
  margin-bottom: 80px; /* Adds clear separation below specialties */
}

/* Centres of Excellence */
/* === Centres of Excellence Section === */
/* ...existing code... */
.centres {
  display: flex;
  margin-top: 60px;
  min-height: 600px;
}

.centres .left {
  flex: 0 0 30%;
  max-width: 30%;
  background: #aead88;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.centres .left h3 {
  font-size: 2rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.centres .left p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.7;
  font-weight: 400;
}

.centres .right {
  flex: 0 0 70%;
  max-width: 70%;
  position: relative;
  background: url("../images/artemis/hero_section_artemis.png") center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  height: 100%;
  overflow: hidden;
}

.centres .right .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 90%;
  z-index: 2;
  position: relative;
}

.centres .right .grid div {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 24px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 2;
  position: relative;
}

/* Optional: add a semi-transparent overlay for better contrast */
.centres .right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  z-index: 1;
  pointer-events: none;
}

/* Know More */
/* ...existing code... */

/* Know More */
.know-more {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 40px;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  position: relative;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  width: 95%;
}

.know-more .left {
  padding-right: 30px; /* Push content away from the vertical line */
}

.know-more .right {
  padding-left: 30px; /* Push content away from the vertical line */
}


.know-more .left,
.know-more .right {
  flex: 1 1 48%;
  max-width: 48%;
  min-width: 300px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}
.know-more .left {
  padding-right: 20px;
}

.know-more .right {
  padding-left: 40px;
}


.know-more .left h3 {
  font-size: 30px;
  font-weight: bold;
  color: #6e5c1e;
  margin-bottom: 10px;
}

.know-more .button-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.know-more .left button {
  padding: 10px 22px;
  font-size: 18px;
  color: #6e5c1e;
  background-color: #ffffff;
  border: 2px solid #6e5c1e;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.3s ease;
  width: 300px;
}

.know-more .left button:hover {
  background-color: #6e5c1e;
  color: white;
}

/* Vertical Line in the center */
.know-more::before {
  content: "";
  position: absolute;
  top: 60px;
  bottom: 60px;
  left: 40%;
  transform: translateX(-50%);
  width: 1.5px;
  background-color: #ccc;
  z-index: 1;
}

/* Right column content */

.know-more .right p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.know-more .tech-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.know-more .tech-images .card {
  background-color: #f9f9f9;
  border: 2px solid #e3d490;
  padding: 16px;
  border-radius: 12px;
  flex: 1 1 22%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.know-more .tech-images .card:hover {
  transform: translateY(-5px);
}

.know-more .tech-images .card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.know-more .tech-images .card span {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}


/* Global */
.global-section {
  position: relative;
  background: url('../images/artemis/armetis_hospital_section.png') center center/cover no-repeat;
  background-size: 100% auto; /* Background shrinks with section */
  padding: 40px 40px 30px;     /* Reduced vertical padding */
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
/* Overlay (optional for readability) */
.global-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.global-section > * {
  position: relative;
  z-index: 1;
}

/* === Left Column === */
.global-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.global-left h2 {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
  max-width: 90%;
}

/* Statistic Cards */
.global-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.global-card {
  background-color: rgba(255, 204, 0, 0.15); /* light golden */
  border: 2px solid #f2db76;
  border-radius: 12px;
  padding: 20px;
  width: 110px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.global-card span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: normal;
  color: #fff;
}

/* === Right Column === */
.global-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.global-right h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  color: #ffffff;
  margin-bottom: 10px;
}

.global-right p {
  font-size: 14px;
  text-align: left;
  margin-bottom: 20px;
  color: #f5f5f5;
}

.global-right .read-btn {
  background-color: #6e5c1e;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  margin-bottom: 20px;
}

.global-right .country-circle {
  position: absolute;
  top: -115%;
  right: 60px;
  transform: translate(50%, -50%);  /* Moves half outside */
  width: 300px;
  height: 300px;
  background-color: #a48d2d;
  border-radius: 50%;
  color: white;
  font-size: 200px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 3;
}


.global-right .country-circle small {
  font-size: 18px;
  font-weight: 500;
  margin-top: 6px;
}



/* === Flag Carousel Placeholder === */
.global-flags {
  display: flex;
  justify-content: right;
  gap: 12px;
  margin-top: 80px;
}

.global-flags img {
  width: 40px;
  height: 26px;
  object-fit: cover;
  border-radius: 4px;
}


/* World Section */
.world-of-artemis {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  font-family: Arial, sans-serif;
}

/* === Left Column === */
.world-of-artemis .left {
  flex: 1 1 50%;
  background-color: #a48d2d;
  color: white;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  box-sizing: border-box;
}

.world-of-artemis .left h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.world-of-artemis .left p {
  font-size: 15px;
  line-height: 1.6;
}

/* Map image below text */
.world-of-artemis .left img {
  width: 100%;
  margin-top: 30px;
  border: none;
  border-radius: 0;
}


/* === Right Column === */
.world-of-artemis .right {
  flex: 1 1 50%;
  position: relative;
  background: url('../images/artemis/artemis_hospital.png') center center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
}

/* Heading on top of hospital image */
.world-of-artemis .right h3 {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 30px;
  font-weight: bold;
  z-index: 2;
  color: white;
}

/* Contact info block */
.world-of-artemis .contact-box {
  background-color: #a48d2d;
  color: white;
  padding: 30px;
  font-size: 15px;
  line-height: 1.7;
}

.world-of-artemis .contact-box a {
  color: #ffffff;
  text-decoration: underline;
}

.world-of-artemis .contact-box a:hover {
  color: #f0f0f0;
}

/* ===== MOBILE OPTIMIZATIONS ===== */

/* ===== Floating Sidebar ===== */
.contact-sidebar {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.sidebar-icon {
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.sidebar-icon img {
  width: 28px;
  height: 28px;
}

.sidebar-icon:hover {
  transform: scale(1.1);
}

.sidebar-icon.whatsapp {
  background-color: #25D366;
}

.sidebar-icon.phone {
  background-color: #4A63D3;
}

.sidebar-icon.email {
  background-color: #FF9800;
}

.sidebar-icon:hover img {
  filter: brightness(0) invert(1);
}

/* Tablet and below */
@media (max-width: 992px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar ul {
    gap: 12px;
  }

  .navbar li {
    font-size: 13px;
  }

  .hero::after {
    display: none;
  }

  .hero {
    min-height: 50vh;
  }

  .hero .overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 30px 20px;
  }

  .hero .left,
  .hero .right {
    flex: 1 1 100%;
    align-items: center;
  }

  .hero .stats {
    justify-content: center;
  }

  .hero .highlights button {
    width: 100%;
    max-width: 350px;
    font-size: 1rem;
    padding: 12px;
    margin-bottom: 12px;
  }

  .hero .logo {
    width: 250px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .welcome {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 24px;
  }

  .welcome .video img {
    max-width: 380px;
  }

  .specialties {
    padding: 40px 20px 100px;
  }

  .specialties h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .specialties .buttons {
    gap: 15px;
    margin-bottom: 30px;
  }

  .centres {
    flex-direction: column;
    margin-top: 40px;
  }

  .centres .left,
  .centres .right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .centres .left {
    padding: 30px 20px;
  }

  .centres .left h3 {
    font-size: 1.7rem;
  }

  .centres .right {
    min-height: 500px;
  }

  .centres .right .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 92%;
  }

  .centres .right .grid div {
    padding: 18px 10px;
    font-size: 1rem;
  }

  .know-more {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
  }

  .know-more::before {
    display: none;
  }

  .know-more .left,
  .know-more .right {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  
  .know-more .left button {
    width: 100%;
    max-width: 280px;
  }

  .know-more .tech-images {
    justify-content: center;
  }

  .global-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px 20px;
  }

  .global-left,
  .global-right {
    align-items: center;
  }

  .global-left {
    gap: 30px;
  }

  .global-left h2 {
    text-align: center;
    font-size: 32px;
  }

  .global-cards {
    justify-content: center;
  }
  
  .global-right {
    margin-top: 30px;
  }

  .global-right .country-circle {
    position: static;
    transform: none;
    width: 200px;
    height: 200px;
    font-size: 6rem;
    margin-top: 20px;
  }
  
  .global-right .country-circle small {
    font-size: 1rem;
  }

  .global-flags {
    justify-content: center;
    margin-top: 30px;
  }

  .world-of-artemis {
    flex-direction: column;
  }

  .world-of-artemis .left {
    padding: 30px 20px;
    min-height: 350px;
  }

  .world-of-artemis .right {
    min-height: 400px;
  }

  /* Floating sidebar moves to bottom */
  .contact-sidebar {
    flex-direction: row;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    top: auto;
    background: white;
    padding: 10px 14px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  }

  .sidebar-icon {
    width: 45px;
    height: 45px;
  }

  .sidebar-icon img {
    width: 24px;
    height: 24px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .navbar {
    padding: 8px 12px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 8px;
  }

  .navbar li {
    font-size: 12.5px;
  }

  .hero {
    min-height: 45vh;
  }

  .hero .overlay {
    padding: 24px 15px;
    gap: 20px;
  }

  .hero .stat {
    padding: 14px;
    width: 100px;
  }

  .hero .stat h3 {
    font-size: 24px;
  }

  .hero .stat p {
    font-size: 12px;
  }

  .hero .highlights button {
    font-size: 0.95rem;
    padding: 11px;
    margin-bottom: 10px;
  }

  .hero .logo {
    width: 200px;
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .hero .tagline {
    font-size: 14px;
  }

  .welcome {
    padding: 30px 15px;
    gap: 20px;
  }

  .welcome .video img {
    max-width: 320px;
  }

  .welcome .intro h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .welcome .intro h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .welcome .intro p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .specialties {
    padding: 30px 15px 80px;
  }

  .specialties h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .specialties .buttons {
    margin-bottom: 24px;
  }

  .specialties .buttons button {
    padding: 8px 18px;
    font-size: 14px;
  }

  .specialties .specialty-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .specialties .specialty-icons div {
    width: auto;
    height: 110px;
    font-size: 13px;
  }

  .view-all {
    bottom: -24px;
    padding: 10px 24px;
    font-size: 13px;
  }

  .centres {
    margin-top: 30px;
  }

  .centres .left {
    padding: 24px 15px;
  }

  .centres .left h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }

  .centres .left p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .centres .right {
    min-height: 450px;
  }

  .centres .right .grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 90%;
  }
  
  .centres .right .grid div {
    font-size: 0.95rem;
    padding: 16px 8px;
  }

  .know-more {
    padding: 30px 15px;
    gap: 24px;
  }

  .know-more .left h3 {
    font-size: 24px;
  }

  .know-more .left button {
    padding: 9px 18px;
    font-size: 16px;
  }

  .know-more .right p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .know-more .tech-images {
    gap: 12px;
  }

  .know-more .tech-images .card {
    flex: 1 1 45%;
    padding: 12px;
  }

  .know-more .tech-images .card img {
    height: 100px;
  }

  .know-more .tech-images .card span {
    font-size: 13px;
  }

  .global-section {
    padding: 24px 15px 16px;
  }

  .global-left {
    gap: 24px;
  }

  .global-left h2 {
    font-size: 26px;
  }

  .global-cards {
    gap: 12px;
  }

  .global-card {
    width: 100px;
    padding: 16px;
    font-size: 18px;
  }

  .global-card span {
    font-size: 12px;
    margin-top: 6px;
  }

  .global-right h3 {
    font-size: 20px;
  }

  .global-right p {
    font-size: 13px;
  }

  .global-right .read-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .global-flags {
    gap: 10px;
    margin-top: 24px;
  }

  .global-flags img {
    width: 35px;
    height: 23px;
  }

  .world-of-artemis .left {
    padding: 24px 15px;
    min-height: 300px;
  }

  .world-of-artemis .left h3 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .world-of-artemis .left p {
    font-size: 14px;
  }

  .world-of-artemis .left img {
    margin-top: 20px;
  }

  .world-of-artemis .right {
    min-height: 350px;
  }
  
  .world-of-artemis .right h3 {
    position: static;
    margin-bottom: 20px;
    font-size: 24px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }
  
  .world-of-artemis .contact-box {
    padding: 20px 15px;
    font-size: 14px;
  }

  /* Floating sidebar */
  .sidebar-icon {
    width: 42px;
    height: 42px;
  }

  .sidebar-icon img {
    width: 22px;
    height: 22px;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .navbar {
    padding: 6px 10px;
  }

  .navbar li {
    font-size: 11.5px;
  }

  .hero .overlay {
    padding: 20px 12px;
    gap: 16px;
  }

  .hero .stat {
    padding: 12px;
    width: 90px;
  }
  
  .hero .stat h3 {
    font-size: 22px;
  }

  .hero .stat p {
    font-size: 11px;
  }

  .hero .highlights button {
    font-size: 0.9rem;
    padding: 10px;
    margin-bottom: 8px;
  }

  .hero .logo {
    width: 180px;
  }

  .hero h1 {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero .tagline {
    font-size: 13px;
  }

  .welcome {
    padding: 24px 12px;
    gap: 16px;
  }

  .welcome .video img {
    max-width: 280px;
  }

  .welcome .intro h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .welcome .intro h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .welcome .intro p {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .specialties {
    padding: 24px 12px 70px;
  }

  .specialties h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .specialties .buttons {
    gap: 10px;
    margin-bottom: 20px;
  }

  .specialties .buttons button {
    padding: 7px 16px;
    font-size: 13px;
  }

  .specialties .specialty-icons {
    gap: 10px;
  }

  .specialties .specialty-icons div {
    height: 100px;
    font-size: 12px;
  }

  .view-all {
    bottom: -22px;
    padding: 9px 20px;
    font-size: 12px;
  }

  .centres .left {
    padding: 20px 12px;
  }

  .centres .left h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .centres .left p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .centres .right {
    min-height: 400px;
  }

  .centres .right .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .centres .right .grid div {
    font-size: 0.9rem;
    padding: 14px 10px;
  }

  .know-more {
    padding: 24px 12px;
    gap: 20px;
  }

  .know-more .left h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .know-more .left button {
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
  }

  .know-more .right p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .know-more .tech-images {
    gap: 10px;
  }

  .know-more .tech-images .card {
    flex: 1 1 100%;
    padding: 10px;
  }

  .know-more .tech-images .card img {
    height: 90px;
  }

  .know-more .tech-images .card span {
    font-size: 12px;
  }

  .global-section {
    padding: 20px 12px 14px;
  }

  .global-left h2 {
    font-size: 22px;
  }

  .global-cards {
    gap: 10px;
  }

  .global-card {
    width: 90px;
    padding: 14px;
    font-size: 16px;
  }

  .global-card span {
    font-size: 11px;
    margin-top: 5px;
  }

  .global-right h3 {
    font-size: 18px;
  }

  .global-right p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .global-right .read-btn {
    padding: 7px 14px;
    font-size: 12px;
  }

  .global-right .country-circle {
    width: 180px;
    height: 180px;
    font-size: 5rem;
  }

  .global-right .country-circle small {
    font-size: 0.9rem;
  }

  .global-flags {
    gap: 8px;
    margin-top: 20px;
  }

  .global-flags img {
    width: 32px;
    height: 21px;
  }

  .world-of-artemis .left {
    padding: 20px 12px;
    min-height: 280px;
  }

  .world-of-artemis .left h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .world-of-artemis .left p {
    font-size: 13px;
  }

  .world-of-artemis .left img {
    margin-top: 16px;
  }

  .world-of-artemis .right {
    min-height: 320px;
  }

  .world-of-artemis .right h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .world-of-artemis .contact-box {
    padding: 18px 12px;
    font-size: 13px;
    line-height: 1.6;
  }

  /* Floating sidebar - smaller on small screens */
  .sidebar-icon {
    width: 38px;
    height: 38px;
  }

  .sidebar-icon img {
    width: 20px;
    height: 20px;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 18px;
  }

  .hero .logo {
    width: 160px;
  }

  .specialties h3 {
    font-size: 18px;
  }

  .centres .left h3 {
    font-size: 1.2rem;
  }

  .know-more .left h3 {
    font-size: 18px;
  }

  .global-left h2 {
    font-size: 20px;
  }

  .world-of-artemis .left h3,
  .world-of-artemis .right h3 {
    font-size: 18px;
  }

  .sidebar-icon {
    width: 36px;
    height: 36px;
  }

  .sidebar-icon img {
    width: 19px;
    height: 19px;
  }
}
/* Home icon */
.home-icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

/* Hover effect */
.home-icon:hover {
  transform: scale(1.2);
}

/* Optional: space adjustment so it matches text items */
.home-link {
  display: flex;
  align-items: center;
}
.phone-number {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
/* 📱 Mobile Devices */
@media (max-width: 768px) {
  .phone-number {
    font-size: 13px;
  }
}