/*
 Theme Name:   Muzamna.com Sheikh Derma Theme v7
 Theme URI:    https://muzamna.com
 Description:  Sheikh Derma theme
 Author:       Muzamna.com
 Author URI:   https://muzamna.com
 Template:     generatepress
 Version:      1.0
*/


    /* ============================================
   BASE CSS - Shared Styles & Components
   ============================================ */

    /* ----------------------------------------
   CSS Custom Properties
   ---------------------------------------- */
    :root {
      /* Navy Color Scale */
      --navy-50: #e6eaf0;
      --navy-100: #c2ccd9;
      --navy-200: #9badc2;
      --navy-300: #738eaa;
      --navy-400: #557698;
      --navy-500: #375e86;
      --navy-600: #31567e;
      --navy-700: #294c73;
      --navy-800: #224269;
      --navy-900: #1a2744;
      --navy-950: #0a1628;

      /* Gold Color Scale */
      --gold-50: #fdf8e8;
      --gold-100: #faedc6;
      --gold-200: #f7e1a0;
      --gold-300: #f4d47a;
      --gold-400: #f1cb5e;
      --gold-500: #c9a45c;
      --gold-600: #b8944f;
      --gold-700: #9f7d3f;
      --gold-800: #866730;
      --gold-900: #5c4520;

      /* Burgundy Color Scale */
      --burgundy-50: #f5e9eb;
      --burgundy-100: #e6c8cd;
      --burgundy-200: #d5a4ac;
      --burgundy-300: #c4808b;
      --burgundy-400: #b86572;
      --burgundy-500: #6b2d3c;
      --burgundy-600: #8b3a4a;
      --burgundy-700: #6b2d3c;
      --burgundy-800: #5a2533;
      --burgundy-900: #3d1922;

      /* Typography */
      --font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;

      /* Transitions */
      --transition-fast: 0.3s ease;
      --transition-medium: 0.5s ease;
    }

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

    html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* This is fine */
}

/* If body or a wrapper has overflow-y: auto/scroll, smooth scroll breaks */
body {
  overflow-y: visible; /* NOT auto or scroll */
}

    body {
      font-family: var(--font-family);
      background-color: var(--navy-950);
      color: #ffffff;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }

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

    img {
      max-width: 100%;
      height: auto;
    }

    button {
      font-family: inherit;
      cursor: pointer;
      border: none;
      background: none;
    }

    input,
    select,
    textarea {
      font-family: inherit;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: var(--navy-950);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--gold-500);
      border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: #d4a853;
    }

    /* Selection */
    ::selection {
      background-color: var(--gold-500);
      color: var(--navy-950);
    }

    /* ----------------------------------------
   Container
   ---------------------------------------- */
   

    /* ----------------------------------------
   Common Buttons
   ---------------------------------------- */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      background-color: var(--gold-500);
      color: var(--navy-900);
      font-weight: 700;
      padding: 1rem 2rem;
      font-size: 1.125rem;
      border-radius: 9999px;
      transition: all var(--transition-fast);
    }

    .btn-primary:hover {
    background-color: var(--gold-600);
    box-shadow: 0 10px 25px -5px rgba(201, 164, 92, 0.2);
    transform: translateY(-2px);
    color: var(--burgundy-700);
}

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: white;
      padding: 1rem 2rem;
      font-size: 1.125rem;
      border-radius: 9999px;
      transition: all var(--transition-fast);
    }

    .btn-secondary:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    /* ----------------------------------------
   Section Header Pattern
   ---------------------------------------- */
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .section-label-line {
      width: 3rem;
      height: 2px;
      background-color: var(--gold-500);
    }

    .section-label-text {
      color: var(--gold-400);
      font-weight: 500;
    }

    .section-title {
      font-size: 1.875rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .section-title {
        font-size: 2.25rem;
      }
    }

    .section-title-lg {
      font-size: 2.25rem;
    }

    @media (min-width: 768px) {
      .section-title-lg {
        font-size: 3rem;
      }
    }

    .section-subtitle {
      color: rgba(255, 255, 255, 0.6);
      font-size: 1.125rem;
      max-width: 42rem;
    }

    /* ----------------------------------------
   Animations
   ---------------------------------------- */
    @keyframes fade-in {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slide-up {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes scroll-indicator {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(8px);
      }
    }

    @keyframes spin-slow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes pulse-slow {

      0%,
      100% {
        opacity: 0.1;
        transform: scale(1);
      }

      50% {
        opacity: 0.2;
        transform: scale(1.1);
      }
    }

    @keyframes pulse-slower {

      0%,
      100% {
        opacity: 0.1;
        transform: scale(1);
      }

      50% {
        opacity: 0.15;
        transform: scale(1.15);
      }
    }

    @keyframes breathe {

      0%,
      100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
      }

      50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.7;
      }
    }

    @keyframes fade-in {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes slide-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ============================================
   UTILITIES.CSS - Tailwind-compatible Utilities
   ============================================ */

    /* ----------------------------------------
   Layout
   ---------------------------------------- */
    .fixed {
      position: fixed;
    }

    .absolute {
      position: absolute;
    }

    .relative {
      position: relative;
    }

    .sticky {
      position: sticky;
    }

    .inset-0 {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
    }

    .top-0 {
      top: 0;
    }

    .top-20 {
      top: 5rem;
    }

    .top-full {
      top: 100%;
    }

    .bottom-0 {
      bottom: 0;
    }

    .bottom-8 {
      bottom: 2rem;
    }

    .bottom-20 {
      bottom: 5rem;
    }

    .left-0 {
      left: 0;
    }

    .left-10 {
      left: 2.5rem;
    }

    .right-0 {
      right: 0;
    }

    .right-10 {
      right: 2.5rem;
    }

    .-translate-x-1\/2 {
      transform: translateX(-50%);
    }

    .-translate-y-1\/2 {
      transform: translateY(-50%);
    }

    .z-10 {
      z-index: 10;
    }

    .z-50 {
      z-index: 50;
    }

    /* ----------------------------------------
   Display & Flexbox
   ---------------------------------------- */
    .block {
      display: block;
    }

    .hidden {
      display: none;
    }

    .flex {
      display: flex;
    }

    .inline-flex {
      display: inline-flex;
    }

    .grid {
      display: grid;
    }

    .flex-col {
      flex-direction: column;
    }

    .flex-wrap {
      flex-wrap: wrap;
    }

    .items-center {
      align-items: center;
    }

    .items-start {
      align-items: flex-start;
    }

    .items-end {
      align-items: flex-end;
    }

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

    .justify-between {
      justify-content: space-between;
    }

    .justify-end {
      justify-content: flex-end;
    }

    .gap-1 {
      gap: 0.25rem;
    }

    .gap-2 {
      gap: 0.5rem;
    }

    .gap-3 {
      gap: 0.75rem;
    }

    .gap-4 {
      gap: 1rem;
    }

    .gap-6 {
      gap: 1.5rem;
    }

    .gap-8 {
      gap: 2rem;
    }

    .gap-10 {
      gap: 2.5rem;
    }

    .gap-12 {
      gap: 3rem;
    }

    .gap-16 {
      gap: 4rem;
    }

    /* ----------------------------------------
   Grid
   ---------------------------------------- */
    .grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }

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

    .grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .col-span-1 {
      grid-column: span 1 / span 1;
    }

    .col-span-2 {
      grid-column: span 2 / span 2;
    }

    .order-1 {
      order: 1;
    }

    .order-2 {
      order: 2;
    }

    /* ----------------------------------------
   Sizing
   ---------------------------------------- */
    .w-4 {
      width: 1rem;
    }

    .w-5 {
      width: 1.25rem;
    }

    .w-6 {
      width: 1.5rem;
    }

    .w-8 {
      width: 2rem;
    }

    .w-10 {
      width: 2.5rem;
    }

    .w-12 {
      width: 3rem;
    }

    .w-14 {
      width: 3.5rem;
    }

    .w-16 {
      width: 4rem;
    }

    .w-20 {
      width: 5rem;
    }

    .w-24 {
      width: 6rem;
    }

    .w-28 {
      width: 7rem;
    }

    .w-32 {
      width: 8rem;
    }

    .w-40 {
      width: 10rem;
    }

    .w-48 {
      width: 12rem;
    }

    .w-64 {
      width: 16rem;
    }

    .w-72 {
      width: 18rem;
    }

    .w-80 {
      width: 20rem;
    }

    .w-96 {
      width: 24rem;
    }

    .w-full {
      width: 100%;
    }

    .h-1 {
      height: 0.25rem;
    }

    .h-4 {
      height: 1rem;
    }

    .h-5 {
      height: 1.25rem;
    }

    .h-6 {
      height: 1.5rem;
    }

    .h-8 {
      height: 2rem;
    }

    .h-10 {
      height: 2.5rem;
    }

    .h-12 {
      height: 3rem;
    }

    .h-14 {
      height: 3.5rem;
    }

    .h-16 {
      height: 4rem;
    }

    .h-20 {
      height: 5rem;
    }

    .h-24 {
      height: 6rem;
    }

    .h-32 {
      height: 8rem;
    }

    .h-40 {
      height: 10rem;
    }

    .h-48 {
      height: 12rem;
    }

    .h-52 {
      height: 13rem;
    }

    .h-64 {
      height: 16rem;
    }

    .h-72 {
      height: 18rem;
    }

    .h-80 {
      height: 20rem;
    }

    .h-96 {
      height: 24rem;
    }

    .min-h-screen {
      min-height: 100vh;
    }

    .max-w-md {
      max-width: 28rem;
    }

    .max-w-lg {
      max-width: 32rem;
    }

    .max-w-xl {
      max-width: 36rem;
    }

    .max-w-2xl {
      max-width: 42rem;
    }

    .max-w-3xl {
      max-width: 48rem;
    }

    .max-w-4xl {
      max-width: 56rem;
    }

    .max-w-6xl {
      max-width: 72rem;
    }

    .max-h-0 {
      max-height: 0;
    }

    .aspect-\[4\/3\] {
      aspect-ratio: 4 / 3;
    }

    .aspect-square {
      aspect-ratio: 1 / 1;
    }

    /* ----------------------------------------
   Spacing
   ---------------------------------------- */
    .p-2 {
      padding: 0.5rem;
    }

    .p-3 {
      padding: 0.75rem;
    }

    .p-4 {
      padding: 1rem;
    }

    .p-5 {
      padding: 1.25rem;
    }

    .p-6 {
      padding: 1.5rem;
    }

    .p-8 {
      padding: 2rem;
    }

    .p-10 {
      padding: 2.5rem;
    }

    .p-12 {
      padding: 3rem;
    }

    .px-3 {
      padding-left: 0.75rem;
      padding-right: 0.75rem;
    }

    .px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .px-5 {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .px-6 {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

    .px-8 {
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .py-2 {
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
    }

    .py-3 {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

    .py-4 {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }

    .py-5 {
      padding-top: 1.25rem;
      padding-bottom: 1.25rem;
    }

    .py-6 {
      padding-top: 1.5rem;
      padding-bottom: 1.5rem;
    }

    .py-8 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .py-10 {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    .py-12 {
      padding-top: 3rem;
      padding-bottom: 3rem;
    }

    .py-16 {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }

    .py-20 {
      padding-top: 5rem;
      padding-bottom: 5rem;
    }

    .py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }

    .pt-4 {
      padding-top: 1rem;
    }

    .pt-8 {
      padding-top: 2rem;
    }

    .pt-24 {
      padding-top: 6rem;
    }

    .pt-32 {
      padding-top: 8rem;
    }

    .pb-8 {
      padding-bottom: 2rem;
    }

    .pb-16 {
      padding-bottom: 4rem;
    }

    .pb-24 {
      padding-bottom: 6rem;
    }

    .m-0 {
      margin: 0;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .mb-1 {
      margin-bottom: 0.25rem;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    .mb-3 {
      margin-bottom: 0.75rem;
    }

    .mb-4 {
      margin-bottom: 1rem;
    }

    .mb-5 {
      margin-bottom: 1.25rem;
    }

    .mb-6 {
      margin-bottom: 1.5rem;
    }

    .mb-8 {
      margin-bottom: 2rem;
    }

    .mb-10 {
      margin-bottom: 2.5rem;
    }

    .mb-12 {
      margin-bottom: 3rem;
    }

    .mb-16 {
      margin-bottom: 4rem;
    }

    .mt-2 {
      margin-top: 0.5rem;
    }

    .mt-4 {
      margin-top: 1rem;
    }

    .mt-6 {
      margin-top: 1.5rem;
    }

    .mt-8 {
      margin-top: 2rem;
    }

    .mt-12 {
      margin-top: 3rem;
    }

    .space-y-2>*+* {
      margin-top: 0.5rem;
    }

    .space-y-3>*+* {
      margin-top: 0.75rem;
    }

    .space-y-4>*+* {
      margin-top: 1rem;
    }

    .space-y-6>*+* {
      margin-top: 1.5rem;
    }

    /* ----------------------------------------
   Typography
   ---------------------------------------- */
    .font-cairo {
      font-family: 'Cairo', sans-serif;
    }

    .font-medium {
      font-weight: 500;
    }

    .font-semibold {
      font-weight: 600;
    }

    .font-bold {
      font-weight: 700;
    }

    .text-xs {
      font-size: 0.75rem;
      line-height: 1rem;
    }

    .text-sm {
      font-size: 0.875rem;
      line-height: 1.25rem;
    }

    .text-base {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    .text-lg {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }

    .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }

    .text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }

    .text-5xl {
      font-size: 3rem;
      line-height: 1;
    }

    .text-6xl {
      font-size: 3.75rem;
      line-height: 1;
    }

    .text-center {
      text-align: center;
    }

    .text-right {
      text-align: right;
    }

    .text-left {
      text-align: left;
    }

    .leading-relaxed {
      line-height: 1.625;
    }

    .leading-loose {
      line-height: 2;
    }

    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .line-clamp-3 {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ----------------------------------------
   Colors - Text
   ---------------------------------------- */
    .text-white {
      color: #ffffff;
    }

    .text-white\/40 {
      color: rgba(255, 255, 255, 0.4);
    }

    .text-white\/50 {
      color: rgba(255, 255, 255, 0.5);
    }

    .text-white\/60 {
      color: rgba(255, 255, 255, 0.6);
    }

    .text-white\/70 {
      color: rgba(255, 255, 255, 0.7);
    }

    .text-white\/80 {
      color: rgba(255, 255, 255, 0.8);
    }

    .text-white\/90 {
      color: rgba(255, 255, 255, 0.9);
    }

    .text-navy-900 {
      color: var(--navy-900);
    }

    .text-gold-300 {
      color: var(--gold-300);
    }

    .text-gold-400 {
      color: var(--gold-400);
    }

    .text-gold-500 {
      color: var(--gold-500);
    }

    .text-burgundy-400 {
      color: var(--burgundy-400);
    }

    .text-green-400 {
      color: #4ade80;
    }

    /* ----------------------------------------
   Colors - Backgrounds
   ---------------------------------------- */
    .bg-navy-800 {
      background-color: var(--navy-800);
    }

    .bg-navy-900 {
      background-color: var(--navy-900);
    }

    .bg-navy-950 {
      background-color: var(--navy-950);
    }

    .bg-gold-400 {
      background-color: var(--gold-400);
    }

    .bg-gold-500 {
      background-color: var(--gold-500);
    }

    .bg-white {
      background-color: #ffffff;
    }

    .bg-white\/5 {
      background-color: rgba(255, 255, 255, 0.05);
    }

    .bg-white\/10 {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .bg-white\/20 {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .bg-white\/30 {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .bg-white\/50 {
      background-color: rgba(255, 255, 255, 0.5);
    }

    .hover\:bg-gold-600:hover {
      background-color: var(--gold-600);
    }

    .hover\:bg-white\/10:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    .hover\:bg-white\/20:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .hover\:bg-white\/50:hover {
      background-color: rgba(255, 255, 255, 0.5);
    }

    /* ----------------------------------------
   Gradients
   ---------------------------------------- */
    .bg-gradient-to-r {
      background-image: linear-gradient(to right, var(--tw-gradient-stops));
    }

    .bg-gradient-to-br {
      background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
    }

    .bg-gradient-to-b {
      background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
    }

    .from-gold-400 {
      --tw-gradient-from: var(--gold-400);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(241, 203, 94, 0));
    }

    .to-gold-600 {
      --tw-gradient-to: var(--gold-600);
    }

    .from-white\/10 {
      --tw-gradient-from: rgba(255, 255, 255, 0.1);
      --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
    }

    .to-white\/5 {
      --tw-gradient-to: rgba(255, 255, 255, 0.05);
    }

    /* ----------------------------------------
   Borders
   ---------------------------------------- */
    .border {
      border-width: 1px;
    }

    .border-2 {
      border-width: 2px;
    }

    .border-white\/10 {
      border-color: rgba(255, 255, 255, 0.1);
    }

    .border-white\/20 {
      border-color: rgba(255, 255, 255, 0.2);
    }

    .border-white\/30 {
      border-color: rgba(255, 255, 255, 0.3);
    }

    .border-gold-500 {
      border-color: var(--gold-500);
    }

    .border-navy-900 {
      border-color: var(--navy-900);
    }

    .border-navy-900\/30 {
      border-color: rgba(26, 39, 68, 0.3);
    }

    .border-t-navy-900 {
      border-top-color: var(--navy-900);
    }

    .rounded-lg {
      border-radius: 0.5rem;
    }

    .rounded-xl {
      border-radius: 0.75rem;
    }

    .rounded-2xl {
      border-radius: 1rem;
    }

    .rounded-3xl {
      border-radius: 1.5rem;
    }

    .rounded-full {
      border-radius: 9999px;
    }

    /* ----------------------------------------
   Effects
   ---------------------------------------- */
    .shadow-lg {
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

    .shadow-xl {
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .opacity-0 {
      opacity: 0;
    }

    .opacity-30 {
      opacity: 0.3;
    }

    .opacity-50 {
      opacity: 0.5;
    }

    .opacity-70 {
      opacity: 0.7;
    }

    .opacity-100 {
      opacity: 1;
    }

    .blur-3xl {
      filter: blur(64px);
    }

    .backdrop-blur-md {
      backdrop-filter: blur(12px);
    }

    /* ----------------------------------------
   Transforms
   ---------------------------------------- */
    .scale-x-0 {
      transform: scaleX(0);
    }

    .origin-left {
      transform-origin: left;
    }

    .rotate-12 {
      transform: rotate(12deg);
    }

    .rotate-6 {
      transform: rotate(6deg);
    }

    /* ----------------------------------------
   Transitions & Animation Utilities
   ---------------------------------------- */
    .transition-all {
      transition-property: all;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .transition-colors {
      transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .transition-transform {
      transition-property: transform;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
      transition-duration: 150ms;
    }

    .duration-300 {
      transition-duration: 300ms;
    }

    .duration-500 {
      transition-duration: 500ms;
    }

    .ease-out {
      transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }

    .animate-spin {
      animation: spin 1s linear infinite;
    }

    .animate-pulse {
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes spin {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: .5;
      }
    }

    /* ----------------------------------------
   Interactivity
   ---------------------------------------- */
    .cursor-pointer {
      cursor: pointer;
    }

    .pointer-events-none {
      pointer-events: none;
    }

    .select-none {
      user-select: none;
    }

    .group:hover .group-hover\:text-gold-400 {
      color: var(--gold-400);
    }

    .group:hover .group-hover\:scale-110 {
      transform: scale(1.1);
    }

    .group:hover .group-hover\:scale-x-100 {
      transform: scaleX(1);
    }

    .group:hover .group-hover\:opacity-100 {
      opacity: 1;
    }

    /* ----------------------------------------
   Responsive Design
   ---------------------------------------- */
    @media (min-width: 768px) {
      .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .md\:flex-row {
        flex-direction: row;
      }

      .md\:items-start {
        align-items: flex-start;
      }

      .md\:justify-start {
        justify-content: flex-start;
      }

      .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
      }

      .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
      }

      .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
      }

      .md\:w-1\/2 {
        width: 50%;
      }
    }

    @media (min-width: 1024px) {
      .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
      }

      .lg\:px-0 {
        padding-left: 0;
        padding-right: 0;
      }
    }


/* Custom Styles for Sheikh Al-Jildia Static Site 

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

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0a1628;
  color: #ffffff;
}*/

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a1628;
}

::-webkit-scrollbar-thumb {
  background: #c9a45c;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d4a853;
}

/* Selection */
::selection {
  background-color: #c9a45c;
  color: #0a1628;
}

/* Custom Animations */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Floating particles animation */
@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(10px, -20px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translate(-5px, -40px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(15px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

/* Line sweep animation */
@keyframes line-sweep {
  0% {
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scaleX(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scaleX(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scaleX(0);
    opacity: 0;
  }
}

/* Grid pulse animation */
@keyframes grid-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.5);
  }
}

/* Slow pulse for glow orbs */
@keyframes pulse-slow {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}

@keyframes pulse-slower {
  0%, 100% {
    opacity: 0.1;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.15);
  }
}

/* Breathing animation for center glow */
@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.7;
  }
}

/* Gradient shift animation */
@keyframes gradient-shift {
  0%, 100% {
    transform: translateX(-15%);
  }
  50% {
    transform: translateX(15%);
  }
}

/* Orbit animation for decorative rings */
@keyframes orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Twinkle animation for stars/dots */
@keyframes twinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Rising particles animation */
@keyframes rise {
  0% {
    transform: translateY(100%) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}

/* Animation Classes */
.animate-float-particle {
  animation: float-particle linear infinite;
}

.animate-line-sweep {
  animation: line-sweep 8s ease-in-out infinite;
}

.animate-grid-pulse {
  animation: grid-pulse 4s ease-in-out infinite;
}

.animate-pulse-slow {
  animation: pulse-slow 6s ease-in-out infinite;
}

.animate-pulse-slower {
  animation: pulse-slower 8s ease-in-out infinite;
}

.animate-breathe {
  animation: breathe 10s ease-in-out infinite;
}

.animate-gradient-shift {
  animation: gradient-shift 15s ease-in-out infinite;
}

.animate-orbit {
  animation: orbit 30s linear infinite;
}

.animate-twinkle {
  animation: twinkle 3s ease-in-out infinite;
}

.animate-rise {
  animation: rise linear infinite;
}

.animate-fade-in {
  animation: fade-in 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slide-up 0.8s ease-out forwards;
}

.animate-scroll {
  animation: scroll 2s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animation-delay-100 {
  animation-delay: 100ms;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

/* Line Clamp */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Smooth Transitions for Interactive Elements */
a, button, input, textarea, select {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Form Styles */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23c9a45c' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: left 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}

/* Header Scrolled State */
.header-scrolled {
  background-color: rgba(26, 39, 68, 0.95) !important;
  backdrop-filter: blur(12px);
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Testimonial card active state */
.testimonial-card.active {
  border-color: rgba(201, 164, 92, 0.5);
  box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.3);
}


.tinv-wishlist .tinv-modal .tinv-modal-inner {
    background: #0a1628;
}


select option {
    background: #0a1628;
}