/* ============================================================
   ALMAS AFZAL WEB STUDIO - MAIN STYLESHEET
   Theme: Deep Navy Blue + Pink/Purple Gradient Accents
   ============================================================ */

:root {
  --navy-dark: #0b0e2c;
  --navy-mid: #12163f;
  --navy-light: #171b4a;
  --pink: #ec1f7c;
  --pink-light: #ff4d9d;
  --purple: #8b1fec;
  --gradient-main: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  --gradient-text: linear-gradient(90deg, var(--pink-light), var(--purple));
  --text-light: #e9e9f3;
  --text-muted-light: #b3b3cc;
  --text-dark: #1a1a2e;
  --text-muted-dark: #6c6c86;
  --card-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f6f6fb;
  color: var(--text-dark);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

section {
  position: relative;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(236, 31, 124, 0.2);
}

.section-title {
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--text-dark);
}

.section-title.on-dark {
  color: #fff;
}

.section-subtitle {
  color: var(--text-muted-dark);
  max-width: 650px;
}

.btn-gradient-pink {
  background: var(--gradient-main);
  background-size: 200% auto;
  color: #fff !important;
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(236, 31, 124, 0.35);
}

.btn-gradient-pink:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(236, 31, 124, 0.5);
  color: #fff;
}

.btn-outline-light-pink {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light-pink:hover {
  background: #fff;
  color: var(--pink);
  transform: translateY(-3px);
}

.btn-outline-navy {
  border: 2px solid var(--navy-mid);
  color: #fff;
  background: transparent;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-navy:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.custom-navbar {
  background: rgba(11, 14, 44, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.custom-navbar.scrolled {
  padding: 8px 0;
  background: rgba(11, 14, 44, 0.97);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  height: 38px;
  width: auto;
  margin-right: 10px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.custom-navbar .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 6px;
  position: relative;
  padding: 8px 4px !important;
}

.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
  width: 100%;
}

.custom-navbar .nav-link.active,
.custom-navbar .nav-link:hover {
  color: #fff !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a1450 100%);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  z-index: 0;
}

.hero-section::before {
  width: 400px;
  height: 400px;
  background: var(--purple);
  top: -100px;
  left: -100px;
}

.hero-section::after {
  width: 350px;
  height: 350px;
  background: var(--pink);
  bottom: -80px;
  right: -80px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  color: var(--text-muted-light);
  letter-spacing: 3px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 10px 0 18px;
}

.hero-desc {
  color: var(--text-muted-light);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-badges span {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badges i {
  color: var(--pink-light);
  margin-right: 6px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -15px;
  background: var(--gradient-main);
  border-radius: 26px;
  opacity: 0.25;
  filter: blur(25px);
  z-index: 0;
}

/* ============================================================
   PAGE HEADER (Inner pages hero banner)
   ============================================================ */
.page-header {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a1450 100%);
  padding: 150px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--purple);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  top: -80px;
  left: -80px;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 15px;
}

.page-header-desc {
  color: var(--text-muted-light);
  max-width: 520px;
}

.page-header-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 90px 0;
  background: #f6f6fb;
}

.section-header-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.section-header-center .section-tag {
  justify-content: center;
}

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

.service-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 36px 28px;
  height: 100%;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(20, 20, 60, 0.04);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 31, 236, 0.15);
  border-color: transparent;
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 20px;
}

.service-icon.bg-1 { background: linear-gradient(135deg, #ec1f7c, #ff6ea9); }
.service-icon.bg-2 { background: linear-gradient(135deg, #8b1fec, #b06bff); }
.service-icon.bg-3 { background: linear-gradient(135deg, #2f6bff, #6ea2ff); }
.service-icon.bg-4 { background: linear-gradient(135deg, #ff9d1f, #ffc266); }
.service-icon.bg-5 { background: linear-gradient(135deg, #21c07a, #6be3ac); }
.service-icon.bg-6 { background: linear-gradient(135deg, #ec1f7c, #8b1fec); }

.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted-dark);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link i {
  transition: var(--transition);
  display: inline-block;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: var(--navy-dark);
  padding: 45px 0;
}

.stat-item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--pink-light);
  margin-bottom: 8px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  color: var(--text-muted-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: 90px 0;
  background: #fff;
}

.why-image-wrap {
  position: relative;
}

.why-image-wrap img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: 0 20px 45px rgba(20, 20, 60, 0.12);
}

.why-quote-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  max-width: 300px;
  box-shadow: 0 15px 40px rgba(20, 20, 60, 0.18);
  border-left: 4px solid var(--pink);
}

.why-quote-card p {
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-quote-card span {
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 600;
}

.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.why-list i {
  color: var(--purple);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* ============================================================
   YOUTUBE CHANNEL SECTION
   ============================================================ */
.youtube-section {
  padding: 90px 0;
  background: var(--navy-dark);
  overflow: hidden;
}

.youtube-section .section-title,
.youtube-section .section-subtitle {
  color: #fff;
}

.youtube-section .section-subtitle {
  color: var(--text-muted-light);
}

.youtube-section .why-list li {
  color: #fff;
}

.youtube-image-wrap {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
}

.youtube-image-wrap img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000, #ec1f7c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(236, 31, 124, 0.5);
  transition: var(--transition);
}

.youtube-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding: 90px 0;
  background: #f6f6fb;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(20, 20, 60, 0.05);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: 0 15px 35px rgba(20, 20, 60, 0.12);
  transform: translateY(-6px);
}

.testimonial-card p {
  color: var(--text-muted-dark);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.testimonial-name {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted-dark);
}

.testimonial-stars {
  color: #ffb400;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--gradient-main);
  padding: 30px 0;
}

.cta-strip h4 {
  color: #fff;
  font-weight: 700;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.9);
}

.cta-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  padding-top: 20px;
}

.footer-desc {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--pink-light);
  padding-left: 4px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--pink-light);
  margin-top: 3px;
}

.footer-contact a {
  color: var(--text-muted-light);
}

.footer-contact a:hover {
  color: var(--pink-light);
}

.footer-contact .small {
  color: #8888a8;
  font-size: 0.75rem;
}

/* ============================================================
   FOOTER - VU / YOUTUBE HIGHLIGHT BOX
   ============================================================ */
.footer-vu-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 22px 26px;
}

.footer-vu-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000, #ec1f7c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  margin: 0 auto;
}

.footer-vu-box h5 {
  color: #fff;
  font-weight: 700;
}

.footer-vu-desc {
  color: var(--text-muted-light);
  font-size: 0.88rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gradient-main);
  transform: translateY(-4px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 10px 0;
}

.copyright-text,
.footer-bottom-link {
  color: var(--text-muted-light);
  font-size: 0.85rem;
}

.footer-bottom-link:hover {
  color: var(--pink-light);
}

/* ============================================================
   NEWSLETTER (Home page)
   ============================================================ */
.newsletter-strip {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  padding: 35px 0;
}

.newsletter-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.newsletter-form .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 12px 20px;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  background: var(--navy-dark);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-weight: 600;
}

/* ============================================================
   POLICY / TERMS CONTENT PAGES
   ============================================================ */
.policy-section {
  padding: 80px 0 100px;
  background: #fff;
}

.policy-block {
  margin-bottom: 34px;
}

.policy-block h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.policy-block h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: var(--gradient-main);
}

.policy-block p {
  color: var(--text-muted-dark);
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-block ul {
  color: var(--text-muted-dark);
  line-height: 1.8;
  padding-left: 20px;
}

.policy-block ul li {
  margin-bottom: 6px;
}

.policy-contact-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.policy-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 500;
}

.policy-contact-list i {
  color: var(--pink);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(236, 31, 124, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top.show {
  display: flex;
}

/* ============================================================
   ANIMATED BLOB DECORATIONS (generic reusable)
   ============================================================ */
.blob-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  z-index: 0;
  animation: floatBlob 8s ease-in-out infinite;
}

@keyframes floatBlob {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-25px) scale(1.05);
  }
}