/*=====================================
GOOGLE FONT
======================================*/
@import url("https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap");

/*=====================================
RESET
======================================*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", sans-serif;
  background: #f8fbff;
  color: #222;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.section {
  padding: 110px 0;
}

/*=====================================
COLORS
======================================*/

:root {
  --primary: #3348a5;
  --secondary: #8f88ca;
  --light: #f8fbff;
  --white: #fff;
  --text: #202124;
  --gray: #6f7283;
  --border: #e7ebf3;

  --gradient: linear-gradient(135deg, #8f88ca, #3348a5);

  --shadow: 0 20px 60px rgba(38, 56, 133, 0.1);

  --radius: 24px;
}

/*=====================================
BUTTONS
======================================*/

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 60px;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  transition: 0.35s;
  box-shadow: 0 18px 40px rgba(51, 72, 165, 0.2);
}

.btn-primary:hover {
  transform: translateY(-5px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 60px;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  transition: 0.35s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/*=====================================
SECTION TITLE
======================================*/

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 40px;
  background: #eef1ff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
}

/*=====================================
HEADER
======================================*/

header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  transition: 0.35s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo img {
  height: 60px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav a {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  transition: 0.35s;
}

nav a:hover {
  color: var(--primary);
}

.btn-whatsapp {
  padding: 13px 26px;
  border-radius: 60px;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  transition: 0.35s;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
}

.menu-btn {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--primary);
}

/*=====================================
HERO
======================================*/

.hero {
  padding-top: 170px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  background: #eef1ff;
  border-radius: 50%;
  left: -250px;
  top: -150px;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #f4f1ff;
  border-radius: 50%;
  right: -180px;
  bottom: -180px;
  z-index: -1;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 40px;
  background: #eef1ff;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-content h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #1f2430;
}

.hero-content p {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

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

.hero-stats div {
  background: #fff;
  padding: 24px 32px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  min-width: 170px;
  text-align: center;
}

.hero-stats span {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

/*=====================================
HEADER & HERO RESPONSIVE
======================================*/

@media (max-width: 992px) {
  .menu-btn {
    display: block;
    z-index: 10001;
  }

  .btn-whatsapp {
    display: none;
  }

  nav {
    position: fixed;
    top: 88px;
    right: -100%;
    width: 300px;
    height: calc(100vh - 88px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.35s;
    padding: 35px 25px;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content p {
    max-width: 700px;
  }

  .hero-buttons {
    justify-content: center;
    margin-bottom: 45px;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-container {
    height: 78px;
  }

  .logo img {
    height: 80px;
  }

  nav {
    top: 78px;
    width: 270px;
    height: calc(100vh - 78px);
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 70px;
  }

  .hero-container {
    gap: 45px;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-buttons a {
    width: 260px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .hero-stats div {
    min-width: auto;
    width: 100%;
    padding: 18px;
  }

  .hero-stats h3 {
    font-size: 28px;
  }

  .hero-image img {
    border-radius: 24px;
  }
}

@media (max-width: 576px) {
  .nav-container {
    height: 72px;
  }


  nav {
    top: 72px;
    width: 100%;
    right: -100%;
    height: calc(100vh - 72px);
    padding: 30px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons a {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding: 20px;
  }

  .hero-tag {
    font-size: 13px;
    padding: 8px 18px;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-image img {
    border-radius: 20px;
  }

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

/*=====================================
ABOUT
=====================================*/

.about {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(143, 136, 202, 0.08);
  border-radius: 50%;
  top: -140px;
  left: -140px;
}

.about::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(51, 72, 165, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: 0.4s;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-content {
  display: flex;
  flex-direction: column;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 10px 20px;
  border-radius: 40px;
  background: #eef1ff;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: 46px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-content p {
  font-size: 18px;
  line-height: 2;
  color: var(--gray);
  margin-bottom: 22px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  border: 1px solid transparent;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: #dfe5fb;
  box-shadow: 0 20px 45px rgba(51, 72, 165, 0.12);
}

.feature i {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 22px;
}

.feature span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--text);
}

/*=====================================
ABOUT RESPONSIVE
=====================================*/

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-content {
    text-align: center;
    align-items: center;
  }

  .about-content p {
    max-width: 720px;
  }

  .about-features {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .feature {
    text-align: right;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 36px;
  }

  .about-content p {
    font-size: 16px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 30px;
  }

  .feature {
    gap: 14px;
  }

  .feature i {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .feature span {
    font-size: 15px;
  }
} /*=====================================
SERVICES
=====================================*/

.services,
.health-services,
.target,
.values {
  background: #f7f9fd;
  position: relative;
}

.health-services,
.values {
  padding-top: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.35s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(51, 72, 165, 0.14);
}

.service-card i {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #eef1ff, #fff);
  color: var(--primary);
  font-size: 36px;

  transition: 0.35s;
}

.service-card:hover i {
  background: var(--gradient);
  color: #fff;
  transform: rotate(8deg);
}

.service-card h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.service-card p {
  color: var(--gray);
  font-size: 16px;
  line-height: 2;
  margin-top: auto;
}

.section-title p {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 2;
}

/*=====================================
TARGET CUSTOMERS
=====================================*/

.target .why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.target .why-card {
  background: #fff;
  border-radius: 26px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s;
}

.target .why-card:hover {
  transform: translateY(-8px);
}

.target .why-card i {
  width: 82px;
  height: 82px;
  margin: auto;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 30px;
}

.target .why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text);
}

.target .why-card p {
  color: var(--gray);
  line-height: 1.9;
}

/*=====================================
VALUES
=====================================*/

.values .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.values .service-card {
  min-height: 300px;
}

.values .service-card i {
  background: rgba(51, 72, 165, 0.08);
}

.values .service-card:hover i {
  background: var(--gradient);
}

/*=====================================
RESPONSIVE
=====================================*/

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .target .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .target .why-grid {
    grid-template-columns: 1fr;
  }

  .section-title p {
    font-size: 16px;
  }

  .service-card {
    padding: 36px 26px;
  }

  .service-card h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 30px 22px;
  }

  .service-card i {
    width: 74px;
    height: 74px;
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 20px;
  }
} /*=====================================
WHY SANAD
=====================================*/

.why {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(143, 136, 202, 0.08);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.why-content {
  max-width: 1200px;
  margin: auto;
}

.why-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  color: var(--gray);
  font-size: 19px;
  line-height: 2.2;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: #fff;
  border-radius: 28px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #dfe5fb;
}

.why-card i {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 34px;
}

.why-card h3 {
  font-size: 23px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 18px;
}

.why-card p {
  color: var(--gray);
  line-height: 2;
  margin-top: auto;
}

/*=====================================
VISION
=====================================*/

.vision {
  background: #f8fbff;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.vision-card {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient);
}

.vision-card:hover {
  transform: translateY(-8px);
}

.vision-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 34px;
}

.vision-card h2 {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 22px;
}

.vision-card p {
  color: var(--gray);
  font-size: 17px;
  line-height: 2;
}

/*=====================================
PARTNERS
=====================================*/

.partners {
  background: #fff;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.partner-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-10px);
}

.partner-card i {
  width: 85px;
  height: 85px;
  margin: auto;
  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 32px;
}

.partner-card h3 {
  font-size: 22px;
  color: var(--text);
  margin-bottom: 16px;
  font-weight: 800;
}

.partner-card p {
  color: var(--gray);
  line-height: 2;
  margin-top: auto;
}

/*=====================================
RESPONSIVE
=====================================*/

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .why-intro {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .vision-card {
    padding: 38px 28px;
  }

  .vision-card h2 {
    font-size: 30px;
  }

  .partner-card {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .vision-icon,
  .partner-card i,
  .why-card i {
    width: 72px;
    height: 72px;
    font-size: 28px;
  }

  .why-card,
  .partner-card {
    padding: 30px 22px;
  }

  .vision-card {
    padding: 30px 22px;
  }

  .vision-card h2 {
    font-size: 26px;
  }
} /*=====================================
CONTACT
=====================================*/

.contact {
  background: #f8fbff;
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-info h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  margin: 18px 0 20px;
}

.contact-info > p {
  font-size: 18px;
  color: var(--gray);
  line-height: 2;
  margin-bottom: 35px;
}

.info {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: 0.35s;
}

.info:hover {
  transform: translateX(-8px);
}

.info i {
  width: 62px;
  height: 62px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 22px;
}

.info span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.contact-info .btn-primary {
  margin-top: 18px;
}

.contact-image img {
  width: 100%;
  border-radius: 35px;
  box-shadow: var(--shadow);
}

/*=====================================
FOOTER
=====================================*/

footer {
  background: #1f2b63;
  color: #fff;
  padding: 80px 0 35px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 120px;
  margin-bottom: 25px;
}

.footer-slogan {
  max-width: 650px;
  font-size: 18px;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 35px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 35px;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d6dcff;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-bottom: 35px;
}

.footer-social a {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 19px;

  transition: 0.35s;
}

.footer-social a:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  margin-top: 10px;
  opacity: 0.8;
  font-size: 15px;
}

/*=====================================
RESPONSIVE
=====================================*/

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

  .info {
    justify-content: center;
  }

  .contact-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-info h2 {
    font-size: 34px;
  }

  .contact-info > p {
    font-size: 16px;
  }

  .info {
    padding: 18px;
  }

  .info span {
    font-size: 16px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-slogan {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    height: 70px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .footer-social {
    gap: 14px;
  }

  .footer-social a {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .copyright {
    font-size: 14px;
  }
}
