:root {
  --blue: #145ba4;
  --blue2: #0b4b8d;
  --navy: #082c57;
  --sky: #42a7e2;
  --yellow: #ffd51c;
  --cream: #f7f4ee;
  --white: #fff;
  --text: #101820;
  --muted: #65717f;
  --radius: 30px;
  --shadow: 0 24px 70px rgba(6, 37, 75, .16)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Poppins, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden
}

img {
  width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto
}

.section {
  padding: 110px 0
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  width: 0;
  z-index: 1000
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: .3s
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  padding: 9px 0
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white
}

.site-header.scrolled .brand {
  color: var(--navy)
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%
}

.brand strong,
.brand span {
  display: block
}

.brand strong {
  font-size: 16px;
  letter-spacing: .5px
}

.brand span {
  font-size: 8px;
  letter-spacing: 2.4px
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: white;
  font-size: 13px;
  font-weight: 600
}

.site-header.scrolled .main-nav {
  color: var(--navy)
}

.main-nav a {
  position: relative
}

.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: .25s
}

.main-nav a:hover::after {
  width: 100%
}

.nav-cta {
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 18px;
  border-radius: 999px
}

.menu-btn {
  display: none;
  background: none;
  border: 0
}

.menu-btn span {
  display: block;
  width: 27px;
  height: 2px;
  background: white;
  margin: 6px
}

.site-header.scrolled .menu-btn span {
  background: var(--navy)
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 130px 0 90px;
  color: white;
  overflow: hidden
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('assets/Home.png') center/cover no-repeat;
  transform: scale(1.03)
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 40, 84, .9), rgba(6, 84, 150, .48) 48%, rgba(3, 33, 66, .18)), linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .38))
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .3
}

.orb-one {
  width: 330px;
  height: 330px;
  background: #33b5f4;
  top: -100px;
  right: 12%;
  animation: float 7s ease-in-out infinite
}

.orb-two {
  width: 220px;
  height: 220px;
  background: #ffd51c;
  bottom: -120px;
  left: 40%;
  animation: float 9s ease-in-out infinite reverse
}

@keyframes float {
  50% {
    transform: translateY(25px) translateX(15px)
  }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: center
}

.eyebrow,
.section-kicker {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--yellow)
}

.hero h1 {
  font-size: clamp(52px, 7vw, 98px);
  line-height: .92;
  margin: 18px 0 24px;
  letter-spacing: -4px
}

.hero h1 em {
  font-size: .55em;
  color: var(--yellow);
  font-style: normal;
  letter-spacing: -2px
}

.hero-copy>p {
  max-width: 690px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .86)
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  transition: .25s
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--navy)
}

.btn-glass {
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px)
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(255, 255, 255, .8)
}

.hero-card {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(18px);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.hero-card-image {
  height: 235px;
  border-radius: 25px;
  overflow: hidden
}

.hero-card-image img {
  height: 100%;
  object-fit: cover
}

.hero-card-content {
  padding: 20px 10px 6px
}

.hero-card-content>p {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--yellow);
  font-weight: 800
}

.hero-card-content h3 {
  margin: 7px 0 18px;
  font-size: 23px
}

.quick-links {
  display: grid;
  gap: 8px
}

.quick-links a {
  padding: 11px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .1);
  font-size: 12px;
  display: flex;
  gap: 11px
}

.quick-links span {
  color: var(--yellow);
  font-weight: 800
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 10px
}

.scroll-cue span {
  width: 1px;
  height: 28px;
  background: white;
  animation: scrollcue 1.5s infinite
}

@keyframes scrollcue {
  50% {
    transform: scaleY(.45);
    transform-origin: bottom
  }
}

.about {
  background: linear-gradient(180deg, #fff, #f7fbff)
}

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

.photo-frame {
  position: relative;
  padding: 18px;
  border-radius: 48px;
  background: white;
  box-shadow: var(--shadow)
}

.photo-frame img {
  height: 570px;
  object-fit: cover;
  border-radius: 34px
}

.floating-label {
  position: absolute;
  right: -28px;
  bottom: 38px;
  background: var(--blue);
  color: white;
  padding: 20px 28px;
  border-radius: 20px;
  box-shadow: var(--shadow)
}

.floating-label strong,
.floating-label span {
  display: block
}

.floating-label span {
  font-size: 11px;
  opacity: .8
}

.section-kicker {
  color: var(--blue);
  margin-bottom: 14px
}

.section-kicker.light {
  color: var(--yellow)
}

.section-copy h2,
.section-heading h2,
.values-head h2,
.guide-copy h2,
.expertise-intro h2,
.contact-copy h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--navy);
  letter-spacing: -2px
}

.section-copy p,
.values-head p,
.guide-copy p,
.expertise-intro p,
.contact-copy p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted)
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px
}

.mini-stats div {
  padding: 18px;
  border-radius: 20px;
  background: white;
  border: 1px solid #e8edf2
}

.mini-stats strong,
.mini-stats span {
  display: block
}

.mini-stats strong {
  font-size: 27px;
  color: var(--blue)
}

.mini-stats span {
  font-size: 10px;
  color: var(--muted)
}

.services {
  position: relative;
  color: white;
  background: var(--navy);
  overflow: hidden
}

.services:before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #1c70bd;
  filter: blur(150px);
  right: -160px;
  top: -100px
}

.section-heading {
  text-align: center;
  position: relative
}

.section-heading h2 {
  color: white
}

.section-heading p {
  color: rgba(255, 255, 255, .65)
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px
}

.service-card {
  position: relative;
  min-height: 510px;
  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;
  transition: .35s
}

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

.service-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: .5s
}

.service-card:hover img {
  transform: scale(1.07)
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(4, 31, 65, .92));
  z-index: 1
}

.service-content {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px
}

.service-content span {
  color: var(--yellow);
  font-weight: 800
}

.service-content h3 {
  font-size: 28px;
  margin: 8px 0
}

.service-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .76)
}

.service-content a {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow)
}

.values {
  position: relative;
  background: #f5f7f9;
  overflow: hidden
}

.values-bg {
  position: absolute;
  inset: 0;
  background: url('assets/IMG_9220.jpg') center/cover;
  opacity: .11
}

.values-head {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 50px;
  align-items: end
}

.value-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 50px
}

.value-card {
  grid-column: span 2;
  background: rgba(255, 255, 255, .94);
  padding: 32px;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .08);
  min-height: 260px
}

.value-card:nth-child(4) {
  grid-column: 2/span 2
}

.value-card.blue {
  background: var(--blue);
  color: white
}

.value-card .icon {
  font-size: 38px;
  color: var(--yellow);
  height: 60px
}

.value-card h3 {
  font-size: 20px
}

.value-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted)
}

.value-card.blue p {
  color: rgba(255, 255, 255, .78)
}

.guide {
  background: white
}

.guide-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center
}

.guide-points {
  display: grid;
  gap: 12px;
  margin-top: 30px
}

.guide-points div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid #e9edf1
}

.guide-points b {
  width: 42px;
  color: var(--blue)
}

.guide-visual {
  position: relative;
  min-height: 620px
}

.image-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 76%;
  height: 540px;
  border-radius: 42px;
  overflow: hidden
}

.image-main img,
.image-small img {
  height: 100%;
  object-fit: cover
}

.image-small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: 300px;
  border: 15px solid white;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.guide-badge {
  position: absolute;
  right: 20px;
  bottom: 24px;
  background: var(--yellow);
  color: var(--navy);
  padding: 18px 25px;
  border-radius: 18px
}

.guide-badge strong,
.guide-badge span {
  display: block
}

.guide-badge span {
  font-size: 10px
}

.expertise {
  padding-top: 35px;
  background: linear-gradient(180deg, #fff, #f5f9fd)
}

.expertise-shell {
  position: relative;
  overflow: hidden;
  border-radius: 45px;
  padding: 65px;
  background: linear-gradient(120deg, rgba(9, 72, 137, .96), rgba(17, 95, 166, .9)), url('assets/Umrah-in-Saudi-Arabia-will-be-easier-than-ever.webp') center/cover;
  color: white
}

.expertise-intro {
  text-align: center;
  max-width: 850px;
  margin: auto
}

.expertise-intro h2 {
  color: white
}

.expertise-intro p {
  color: rgba(255, 255, 255, .75)
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px
}

.expertise-grid article {
  padding: 28px;
  border-radius: 25px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  text-align: center
}

.expertise-grid article div {
  font-size: 38px;
  color: var(--yellow)
}

.expertise-grid h3 {
  font-size: 18px
}

.expertise-grid p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72)
}

.contact {
  position: relative;
  background: linear-gradient(115deg, rgba(4, 47, 96, .93), rgba(17, 94, 163, .7)), url('assets/Pilgrims-walking-around-the-Kaaba-at-Masjid-al-Haram-in-Mecca-Saudi-Arabia-1.webp') center/cover;
  color: white
}

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

.contact-copy h2 {
  color: white
}

.contact-copy p {
  color: rgba(255, 255, 255, .75)
}

.btn-yellow {
  margin-top: 18px;
  background: var(--yellow);
  color: var(--navy)
}

.contact-card {
  background: rgba(255, 255, 255, .93);
  color: var(--text);
  padding: 38px;
  border-radius: 34px;
  box-shadow: var(--shadow)
}

.contact-card img {
  width: 100px;
  height: 100px;
  object-fit: contain
}

.contact-card h3 {
  color: var(--blue);
  font-size: 24px
}

.contact-card p {
  line-height: 1.8;
  color: var(--muted)
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 25px
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid #dde5ec
}

.contact-list span {
  color: var(--muted);
  font-size: 12px
}

.contact-list b {
  color: var(--navy);
  font-size: 13px
}

footer {
  padding: 26px 0;
  background: #071f3c;
  color: rgba(255, 255, 255, .7)
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  z-index: 90
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: .8s cubic-bezier(.2, .7, .2, 1)
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.delay-1 {
  transition-delay: .12s
}

.delay-2 {
  transition-delay: .24s
}

@media(max-width:980px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: white;
    color: var(--navy) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 35px;
    transition: .35s;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .15)
  }

  .main-nav.open {
    right: 0
  }

  .menu-btn {
    display: block;
    z-index: 102
  }

  .menu-btn.open span {
    background: var(--navy)
  }

  .hero-grid,
  .about-grid,
  .guide-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 140px
  }

  .hero-card {
    max-width: 560px
  }

  .about-grid,
  .guide-grid {
    gap: 45px
  }

  .photo-frame img {
    height: 460px
  }

  .floating-label {
    right: 15px
  }

  .service-grid {
    grid-template-columns: 1fr 1fr
  }

  .service-card:last-child {
    grid-column: 1/-1;
    min-height: 430px
  }

  .values-head {
    grid-template-columns: 1fr
  }

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

  .value-card,
  .value-card:nth-child(4) {
    grid-column: auto
  }

  .expertise-grid {
    grid-template-columns: 1fr
  }

  .guide-visual {
    min-height: 580px
  }
}

@media(max-width:650px) {
  .container {
    width: min(100% - 24px, 1180px)
  }

  .section {
    padding: 78px 0
  }

  .brand div {
    display: none
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px
  }

  .hero-grid {
    gap: 35px
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -2px
  }

  .hero-copy>p {
    font-size: 14px
  }

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

  .hero-badges {
    gap: 9px
  }

  .hero-card-image {
    height: 190px
  }

  .scroll-cue {
    display: none
  }

  .photo-frame {
    padding: 10px;
    border-radius: 28px
  }

  .photo-frame img {
    height: 370px;
    border-radius: 21px
  }

  .floating-label {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -40px 15px 0
  }

  .section-copy h2,
  .section-heading h2,
  .values-head h2,
  .guide-copy h2,
  .expertise-intro h2,
  .contact-copy h2 {
    font-size: 36px;
    letter-spacing: -1px
  }

  .mini-stats {
    grid-template-columns: 1fr
  }

  .service-grid {
    grid-template-columns: 1fr
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 440px
  }

  .value-grid {
    grid-template-columns: 1fr
  }

  .value-card {
    min-height: auto
  }

  .guide-visual {
    min-height: 460px
  }

  .image-main {
    width: 88%;
    height: 400px
  }

  .image-small {
    height: 210px;
    width: 52%;
    border-width: 8px
  }

  .guide-badge {
    right: 0;
    bottom: 0
  }

  .expertise-shell {
    padding: 42px 20px;
    border-radius: 28px
  }

  .contact-card {
    padding: 26px
  }

  .contact-list a {
    flex-direction: column;
    gap: 4px
  }

  .footer-row {
    flex-direction: column;
    text-align: center
  }

  .floating-contact {
    width: 50px;
    height: 50px
  }

  .hero-card {
    border-radius: 25px
  }

  .section-heading {
    text-align: left
  }
}

/* Darussalam official brand update */
:root {
  --slate: #283943;
  --blue: #165399;
  --blue-dark: #0C1C33;
  --navy: #0C1C33;
  --yellow: #FCD10C;
  --text: #283943;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text)
}

.brand img {
  object-fit: contain;
  background: transparent;
  border-radius: 0
}

.brand-type strong {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--yellow);
  font-size: 27px;
  line-height: .9
}

.brand-type span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: #fff
}

.site-header.scrolled .brand-type span {
  color: var(--slate)
}

.hero h1 span {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yellow)
}

.hero h1 em {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 5px;
  color: #fff;
  font-size: .42em
}

.section-kicker,
.service-content span {
  color: var(--yellow)
}

.btn-primary,
.nav-cta,
.value-card.blue {
  background: var(--blue)
}

.btn-primary2,
.nav-cta,
.value-card.yellow {
  background: var(--yellow);
  color: var(--navy)
}

.services,
footer {
  background: var(--blue-dark)
}

.hero-shade {
  background: linear-gradient(90deg, rgba(12, 28, 51, .97) 0%, rgba(12, 28, 51, .9) 42%, rgba(12, 28, 51, .34) 100%)
}

.contact {
  background: linear-gradient(115deg, rgba(12, 28, 51, .95), rgba(22, 83, 153, .76)), url('assets/Pilgrims-walking-around-the-Kaaba-at-Masjid-al-Haram-in-Mecca-Saudi-Arabia-1.webp') center/cover
}

.expertise-shell {
  background: linear-gradient(120deg, rgba(12, 28, 51, .97), rgba(22, 83, 153, .92)), url('assets/Umrah-in-Saudi-Arabia-will-be-easier-than-ever.webp') center/cover
}

.value-card .icon,
.expertise-grid article div {
  color: var(--yellow)
}

.contact-card img {
  width: 125px;
  height: 125px
}

@media(max-width:650px) {
  .brand img {
    width: 52px;
    height: 52px
  }

  .brand-type {
    display: block !important
  }

  .brand-type strong {
    font-size: 22px
  }

  .brand-type span {
    font-size: 7px;
    letter-spacing: 1.8px
  }

  .hero h1 em {
    font-size: .34em;
    letter-spacing: 3px
  }
}