@font-face {
  font-family: "Serotiva-Black";
  src: url(./font/OpenType-TT/Serotiva-Black.ttf);
}
@font-face {
  font-family: "Serotiva-Bold";
  src: url(./font/OpenType-TT/Serotiva-Bold.ttf);
}
@font-face {
  font-family: "Serotiva-Light";
  src: url(./font/OpenType-TT/Serotiva-Light.ttf);
}
@font-face {
  font-family: "Serotiva-Regular";
  src: url(./font/OpenType-TT/Serotiva-Regular.ttf);
}

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

/* Responsive Typography */
h1 {
  font-family: "Serotiva-Black";
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: clamp(1px, 0.5vw, 2px);
  line-height: 1.2;
  text-transform: uppercase;
}

h2,
h3 {
  font-family: "Serotiva-Bold";
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.3;
    text-transform: uppercase;
}

p {
  font-family: "Serotiva-Regular";
  font-size:22px;
  line-height:30px;
}

:root {
  --deep-green: #0f3d2e;
  --sand-beige: #f7efe5;
  --off-white: #fefefe;
  --gold: #c8b88a;
}

body {
  background-color: var(--deep-green);
  color: var(--off-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* LOGO */
.logo-main {
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  letter-spacing: 0.5px;
}

.logo-main img {
  height: clamp(50px, 8vw, 70px);
  width: auto;
}


/* Slider Controls */
/* .carousel-navigator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 100;
}

.slide-indicator {
  width: clamp(10px, 3vw, 12px);
  height: clamp(10px, 3vw, 12px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.slide-indicator.indicator-active {
  background: var(--gold);
  transform: scale(1.2);
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.slide-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 50%;
  cursor: pointer;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--dark-text);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.arrow-previous {
  left: clamp(1rem, 3vw, 2rem);
}

.arrow-next {
  right: clamp(1rem, 3vw, 2rem);
}

.explore-prompt {
  position: absolute;
  bottom: 1px;
  right: 10px;
  text-align: center;
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  color: inherit;
  opacity: 0.7;
  z-index: 100;
}

.bounce-indicator {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  animation: bounce 2s infinite;
} */

/* Content Section */
.content-section1 {
  background: white;
  color: var(--deep-green);
  padding: clamp(20px, 2vw, 10px) 0;
}

 



/* Statistics Cards */
/*  */


/* Extra small screens - still 2 columns but smaller */
@media (max-width: 480px) {

    .spiritual-headline{
        font-size: 1rem;
        /* line-height: 3px; */
    }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.6rem, 2vw, 1rem);
  }
  
  .stat-card {
    padding: clamp(0.8rem, 2.5vw, 1.2rem);
  }
  
  .stat-icon {
    width: clamp(30px, 6vw, 36px);
    height: clamp(30px, 6vw, 36px);
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    margin-bottom: 0.8rem;
  }
  
  .stat-number {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  }
  
  .stat-label {
    font-size: clamp(0.65rem, 1.6vw, 0.75rem);
  }
}

/* Minbar Section */

       /* Khutbah Section */
        .khutbah-wrapper {
            width: 100%;
            background-color: white;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .khutbah-wrapper.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .khutbah-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 5vw, 3rem);
            align-items: start;
            margin-bottom: clamp(2rem, 6vw, 4rem);
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            padding: 40px 20px;
            padding-bottom: 50px;
        }

        .khutbah-info h1 {
            margin-bottom: 0.5rem;
            color: var(--deep-green);
            font-size: 2.5rem;
            line-height: 35px;
            padding-top: 25px;
        }

        .khutbah-description {
            font-size: 22px;
            color: rgb(10, 44, 33);
            margin-bottom: 20px;
            font-weight: 800;
        }

        /* Topic Filters */
        .topic-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: clamp(0.5rem, 2vw, 0.75rem);
            margin-bottom: clamp(1.5rem, 4vw, 2rem);
            justify-content: start;
        }

        .topic-btn {
            padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1.2rem, 3vw, 1.5rem);
            background: rgba(15, 61, 46, 0.1);
            border: 1px solid rgba(14, 13, 13, 0.699);
            border-radius: 25px;
            color: var(--deep-green);
            font-size: 19px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
        }

        .topic-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .topic-btn:hover::before {
            left: 100%;
        }

        .topic-btn:hover,
        .topic-btn.selected {
            background: var(--deep-green);
            color: var(--gold);
            border: 1px solid var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        }

        .topic-btn.selected {
            animation: selectedPulse 2s infinite;
        }

        @keyframes selectedPulse {
            0%, 100% { box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); }
        }

        /* Mobile Navigation Controls */
        .mobile-nav-controls {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
            padding: 15px;
            background: rgba(15, 61, 46, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(15, 61, 46, 0.1);
        }

        .nav-arrow {
            background: var(--deep-green);
            color: var(--gold);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-arrow:hover {
            background: var(--gold);
            color: var(--deep-green);
            transform: scale(1.1);
        }

        .nav-arrow:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .video-counter {
            font-weight: 600;
            color: var(--deep-green);
            font-size: 16px;
        }

        /* Video Player Container */
        .video-player-wrapper {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .video-frame-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            max-width: 100%;
            background-color: #000;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: clamp(1.5rem, 4vw, 2rem);
            transition: all 0.5s ease;
        }

        .video-frame-container.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .video-frame-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            transition: opacity 0.3s ease;
        }

        /* Video Navigation Arrows - ON VIDEO */
        .video-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(15, 61, 46, 0.8);
            color: var(--gold);
            border: 2px solid var(--gold);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            opacity: 0;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .video-nav-arrow:hover {
            background: var(--gold);
            color: var(--deep-green);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
        }

        .video-nav-arrow.left {
            left: 15px;
        }

        .video-nav-arrow.right {
            right: 15px;
        }

        .video-frame-container:hover .video-nav-arrow {
            opacity: 1;
        }

        .video-nav-arrow:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        .video-nav-arrow:disabled:hover {
            background: rgba(15, 61, 46, 0.8);
            color: var(--gold);
            transform: translateY(-50%);
            box-shadow: none;
        }

        /* Loading Overlay */
        .video-loading-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 15;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .video-loading-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(212, 175, 55, 0.3);
            border-top: 3px solid var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Current Video Title */
        .current-video-title {
            background: linear-gradient(135deg, var(--deep-green), #1a5a42);
            color: var(--gold);
            padding: 15px 20px;
            border-radius: 10px;
            font-weight: 900;
            font-size: 19px;
            letter-spacing:1px;
            font-family: "Serotiva-Regular";
            text-align: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .khutbah-info h1 {
                font-size: 32px;
                font-family: "Serotiva-Black";
            }

            .content-section1 {
                padding: 10px 10px;
            }

            .khutbah-wrapper {
                padding: clamp(20px, 6vw, 40px) 0px;
            }

            .khutbah-container {
                grid-template-columns: 1fr;
                gap: clamp(1.5rem, 4vw, 2rem);
                padding: 0 15px;
            }

            .khutbah-info {
                order: 1;
            }

            .video-player-wrapper {
                order: 2;
                display: block !important;
                visibility: visible !important;
                margin-bottom: 25px;
            }

            .topic-buttons {
                justify-content: start;
                display: none; /* Hide on mobile, use navigation instead */
            }

            .mobile-nav-controls {
                display: flex;
            }

            .topic-btn {
                font-size: clamp(0.65rem, 1.8vw, 0.75rem);
                padding: clamp(0.4rem, 1.2vw, 0.5rem) clamp(0.8rem, 2vw, 1rem);
            }

            .video-frame-container {
                touch-action: pan-y;
                position: relative;
            }

            /* Always show arrows on mobile */
            .video-nav-arrow {
                opacity: 1;
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .video-nav-arrow.left {
                left: 10px;
            }

            .video-nav-arrow.right {
                right: 10px;
            }
        }

        /* Extra small screens */
        @media (max-width: 480px) {
            .khutbah-wrapper {
                padding: clamp(15px, 5vw, 30px) 0px;
            }

            .khutbah-container {
                padding: 0 10px;
            }

            .topic-buttons {
                gap: 0.3rem;
            }

            .topic-btn {
                font-size: 16px;
                padding: 0.55rem 0.70rem;
            }

            .nav-arrow {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .current-video-title {
                font-size: 14px;
                padding: 12px 15px;
            }

            .video-nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .video-nav-arrow.left {
                left: 8px;
            }

            .video-nav-arrow.right {
                right: 8px;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Animation for video transitions */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .video-frame-container.animate {
            animation: fadeInUp 0.5s ease;
        }

        /* Basic body styling */
        /* body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
        } */

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

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

        ::-webkit-scrollbar-thumb:hover {
            background: var(--gold);
        }
/* Empty State */
.empty-state {
  text-align: center;
  padding: 2rem;
  color: rgba(15, 61, 46, 0.5);
  font-style: italic;
}

/* Loading State */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Smooth Transitions */
.playlist-videos {
  transition: opacity 0.3s ease;
}

/* Instagram Posts Section */
.instagram-main {
 background-color:var(--deep-green);
  /* padding: 20px 0px; */
  width:100%;
  margin:auto;
  padding-bottom: 60px;
}

/* .instagram-section {
      width:100%;
      margin:auto;

}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  flex-wrap: wrap;
  gap: 1rem;
}

.instagram-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--deep-green);
  font-family: "Serotiva-Bold";
}

.instagram-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: rgba(15, 61, 46, 0.7);
  margin-left: clamp(0.5rem, 2vw, 1rem);
  font-family: "Serotiva-Regular";
}

.social-icons {
  display: flex;
  gap: clamp(0.5rem, 2vw, 0.75rem);
}

.social-icon {
  width: clamp(35px, 6vw, 40px);
  height: clamp(35px, 6vw, 40px);
  background: rgba(15, 61, 46, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--deep-green);
}

.social-icon:hover {
  background: var(--deep-green);
  color: var(--sand-beige);
  transform: translateY(-2px);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 25vw, 150px), 1fr));
  gap: clamp(0.5rem, 2vw, 1rem);
  max-width: 800px;
}

.instagram-post {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.instagram-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 61, 46, 0.2);
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 61, 46, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-icon {
  color: var(--sand-beige);
  font-size: clamp(1.5rem, 4vw, 2rem);
} */

/* Quote Section */
.qotd-main {
  width: 100%;
  background-color: white;
}

.qotd-main-wrapper {
  display: flex;
  gap: clamp(15px, 4vw, 20px);
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: clamp(40px, 8vw, 60px) 0px;
  flex-wrap: wrap;
}

.qotd-sidebar-panel {
  background-color: #fefefe;
  padding: clamp(25px, 6vw, 40px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.1);
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
  border: 1px solid #f7efe5;
}

.qotd-featured-card {
  background-color: #f7efe5;
  padding: clamp(15px, 4vw, 20px) clamp(25px, 6vw, 40px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 61, 46, 0.15);
  flex: 1;
  min-width: clamp(250px, 40vw, 300px);
  text-align: center;
  position: relative;
  border: 1px solid #c8b88a;
}

.qotd-main-heading {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 100;
  color: #0f3d2e;
  margin-bottom: clamp(15px, 4vw, 20px);
  font-family: "Serotiva-Bold";
}

.qotd-scholar-name {
  font-size: clamp(16px, 3vw, 18px);
  color: #0f3d2e;
  margin-bottom: clamp(20px, 5vw, 30px);
  opacity: 0.8;
}

.qotd-action-buttons {
  display: flex;
  gap: clamp(8px, 2vw, 10px);
  margin-bottom: clamp(30px, 6vw, 40px);
  flex-wrap: wrap;
  justify-content: center;
}

.qotd-share-control {
  background-color: #fefefe;
  border: 1px solid #c8b88a;
  padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
  border-radius: 6px;
  font-size: clamp(12px, 2.5vw, 14px);
  color: #0f3d2e;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.qotd-share-control:hover {
  background-color: #c8b88a;
  color: #fefefe;
  transform: translateY(-1px);
}

.qotd-highlights-title {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: bold;
  color: #0f3d2e;
  margin-bottom: clamp(15px, 4vw, 20px);
}

.qotd-highlights-grid {
  display: flex;
  gap: clamp(8px, 2vw, 10px);
  justify-content: center;
}

.qotd-highlight-button {
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  background-color: #fefefe;
  border: 1px solid #c8b88a;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qotd-highlight-button:hover {
  background-color: #c8b88a;
  transform: translateY(-2px);
}
.qotd-highlight-button i{
color:#0a2a1f;
}
.qotd-quote-symbol {
  font-size: clamp(40px, 10vw, 60px);
  color: #c8b88a;
}

.qotd-wisdom-text {
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.2;
  color: #0f3d2e;
  margin-bottom: clamp(15px, 4vw, 20px);
}

.qotd-attribution-text {
  font-size: clamp(14px, 3vw, 16px);
  color: #0f3d2e;
  margin-bottom: clamp(15px, 4vw, 20px);
  font-style: italic;
  font-family: "Serotiva-Regular";
}

.qotd-social-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 15px);
  flex-wrap: wrap;
}

.qotd-primary-share-btn {
  background-color: #0f3d2e;
  color: #fefefe;
  border: none;
  padding: clamp(10px, 3vw, 12px) clamp(20px, 5vw, 24px);
  border-radius: 6px;
  font-size: clamp(12px, 2.5vw, 14px);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.qotd-primary-share-btn:hover {
  background-color: #0a2a1f;
  transform: translateY(-1px);
}

.qotd-social-icon-circle {
  width: clamp(25px, 5vw, 30px);
  height: clamp(25px, 5vw, 30px);
  background-color: rgba(200, 184, 138, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f3d2e;
}

.qotd-social-icon-circle:hover {
  background-color:var(--deep-green);
  color: #fefefe;
  transform: scale(1.1);
}

/* Donation Section */
.donation-hero-container {
  background: linear-gradient(rgba(15, 61, 46, 0.8), rgba(15, 61, 46, 0.9));
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 61, 46, 0.3);
  overflow: hidden;
  position: relative;
}

.donation-content-wrapper {
  padding: clamp(40px, 8vw, 60px) clamp(40px, 10vw, 80px);
  text-align: center;
  position: relative;
  z-index: 2;
}

.donation-support-subtitle {
  font-family: "Serotiva-Bold";
  font-size: clamp(18px, 4vw, 22px);
  color: #c8b88a;
  font-weight: 400;
  margin-bottom: clamp(8px, 2vw, 10px);
  letter-spacing: 1px;
}

.donation-main-heading {
  /* font-family: "Serotiva-Black"; */
  font-size: clamp(32px, 8vw, 48px);
  color: #f7efe5;
  margin-bottom: clamp(8px, 2vw, 10px);
  line-height: 1.0;
}

.donation-description-text {
  font-size: clamp(16px, 4vw, 21px);
  color: #f7efe5;
  margin-bottom: clamp(24px, 6vw, 32px);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: clamp(24px, 5vw, 30px);
  font-weight: 300;
}

.donation-buttons-container {
  display: flex;
  gap: clamp(15px, 4vw, 20px);
  justify-content: center;
  flex-wrap: wrap;
}

.donation-primary-btn {
  background: linear-gradient(135deg, #c8b88a 0%, #b5a076 100%);
  color: #0f3d2e;
  border: none;
  padding: clamp(12px, 3vw, 16px) clamp(24px, 6vw, 32px);
  border-radius: 8px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: bold;
  cursor: pointer;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(200, 184, 138, 0.3);
  min-width: 150px;
}

.donation-primary-btn:hover {
  background: linear-gradient(135deg, #b5a076 0%, #a39464 100%);
}

.donation-secondary-btn {
  background: transparent;
  color: #f7efe5;
  border: 2px solid #c8b88a;
  padding: clamp(10px, 3vw, 14px) clamp(22px, 5vw, 30px);
  border-radius: 8px;
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.5px;
  min-width: 150px;
}

.donation-secondary-btn:hover {
  background: #c8b88a;
  color: #0f3d2e;
}

.donation-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.donation-floating-icon {
  position: absolute;
  font-size: clamp(20px, 4vw, 24px);
  color: #c8b88a;
  opacity: 0.3;
}

.donation-floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
}

.donation-floating-icon:nth-child(2) {
  top: 30%;
  right: 15%;
}

.donation-floating-icon:nth-child(3) {
  bottom: 25%;
  left: 15%;
}

.donation-floating-icon:nth-child(4) {
  bottom: 20%;
  right: 10%;
}

.donation-impact-stats {
  margin-top: clamp(30px, 6vw, 40px);
  display: flex;
  justify-content: center;
  gap: clamp(20px, 6vw, 40px);
  flex-wrap: wrap;
}

.donation-stat-item {
  text-align: center;
  padding: clamp(15px, 4vw, 20px);
  border-radius: 12px;
  background: rgba(247, 239, 229, 0.1);
  border: 1px solid rgba(200, 184, 138, 0.3);
  min-width: clamp(120px, 25vw, 150px);
}

.donation-stat-item:hover {
  background: rgba(247, 239, 229, 0.15);
}

.donation-stat-number {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: bold;
  color: #c8b88a;
  margin-bottom: clamp(6px, 2vw, 8px);
}

.donation-stat-label {
  font-size: clamp(12px, 2.5vw, 14px);
  color: #f7efe5;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Partners Section */
.partners-section {
  text-align: center;
  background-color: #0f3d2e;
  max-width: 1200px;
  padding: clamp(20px, 5vw, 30px) 0px;
  margin: auto;
}

.section-title2 {
  color: var(--gold);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-title3 {
  color: var(--deep-green);
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: clamp(15px, 4vw, 20px) 0px;
}

.section-subtitle {
  font-size: 1.2rem;
  padding: 8px;
  /* color: var(--sand-beige); */
  margin-bottom: clamp(15px, 4vw, 20px);
  /* font-weight: 300; */
}

.slider-container1 {
  position: relative;
  width: 100%;
  height: clamp(220px, 40vw, 280px);
  overflow: hidden;
  background: rgba(247, 239, 229, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(247, 239, 229, 0.2);
  box-shadow: 0 20px 40px rgba(15, 61, 46, 0.2);
}

.slider-track {
  display: flex;
  width: max-content;
  gap: clamp(20px, 5vw, 30px);
  padding: clamp(20px, 5vw, 30px);
  align-items: center;
  animation: slideRightToLeft 30s linear infinite;
  will-change: transform;
}

.partner-card {
  min-width: clamp(180px, 35vw, 250px);
  height: clamp(160px, 30vw, 220px);
  background: rgba(247, 239, 229, 0.15);
  border-radius: 16px;
  border: 1px solid rgba(200, 184, 138, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 30px) clamp(15px, 4vw, 20px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(15px);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(200, 184, 138, 0.3), transparent);
  transition: left 0.6s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 25px 50px rgba(15, 61, 46, 0.3);
  border-color: var(--gold);
  background: rgba(200, 184, 138, 0.2);
}

.partner-logo {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: clamp(10px, 3vw, 15px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo {
  transform: scale(1.1);
}

.partner-logo img {
  width: clamp(200px, 40vw, 260px);
  height: clamp(60px, 12vw, 80px);
  object-fit: cover;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
  transform: scale(1.1);
}

.partner-name {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: clamp(6px, 2vw, 8px);
  text-shadow: 0 2px 4px rgba(15, 61, 46, 0.5);
  text-align: center;
  line-height: 1.2;
}

.partner-type {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  color: var(--sand-beige);
  font-weight: 300;
  text-align: center;
  line-height: 1.4;
  margin-bottom: clamp(15px, 4vw, 20px);
}

.controls-hint {
  color: rgba(247, 239, 229, 0.7);
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  margin-top: clamp(20px, 5vw, 30px);
}

.click-hint {
  position: absolute;
  bottom: 5px;
  right: 8px;
  font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.partner-card:hover .click-hint {
  opacity: 1;
}

/* Story Section */
.main-upss {
  /* padding-top: clamp(30px, 10vw, 30px); */
  background-color: white;
  text-align: center;
}

.section-title2 h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: clamp(15px, 4vw, 20px);
  color: var(--deep-green, #0f3d2e);
}

.story-slider-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  /* padding: 0px clamp(15px, 4vw, 20px); */
  padding:0px 20px;
}

.story-slider {
  display: flex;
  gap: clamp(15px, 4vw, 20px);
  overflow-x: auto;
  scroll-behavior: smooth;
  /* padding: clamp(35px, 4vw, 20px); */
  padding-top: 35px;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.story-slider::-webkit-scrollbar {
  display: none;
}

.story-card {
  flex: 0 0 clamp(200px, 35vw, 312px);
  height: clamp(320px, 60vw, 500px);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  background: var(--deep-green, #0f3d2e);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
  background: var(--deep-green, #0f3d2e);
}

.story-card:hover .story-video {
  transform: scale(1.05);
}

.story-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(15px, 4vw, 25px);
  background: linear-gradient(transparent, rgba(15, 61, 46, 0.9));
  color: var(--off-white, #f9f9f9);
  border-radius: 0 0 20px 20px;
  text-align: left;
}

.story-title {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  margin-bottom: clamp(6px, 2vw, 8px);
  line-height: 1.3;
}

.story-description {
  font-size: clamp(11px, 2.5vw, 14px);
  opacity: 0.9;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes slideRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

/* Pause animation when spacebar is pressed */
.slider-track.paused {
  animation-play-state: paused;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) { 
    .section-title2{
        font-size: 32px;
    }
.main-banner{
    width:100%;
    padding-left:10px;
    padding-right:10px;
    margin-bottom:50px;
}
.qotd-main {
  width: 100%;
  background-color: white;
  padding:10px 10px;
}
.slider-container1 {
    position: relative;
    width: 100%;
    height: clamp(220px, 40vw, 280px);
    overflow: hidden;

    background: none; /* removes background */
    border-radius: 0; /* correct way to reset border radius */
    border: none;     /* remove border if not needed */
    box-shadow: 0 20px 40px rgba(15, 61, 46, 0.2); /* show shadow */
  }

  .revive-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    /* margin-bottom:0px; */
  }
  .story-slider-container{
    width:100%;
    padding: 0px;
  }

  .minbar-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    display: flex;
    flex-direction: column-reverse;
  }

  .carousel-controls {
      position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  }

  .instagram-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .instagram-subtitle {
    margin-left: 0;
  }

  .qotd-main-wrapper {
    flex-direction: column;
  }

  .qotd-sidebar-panel,
  .qotd-featured-card {
    min-width: auto;
  }
  .guidance-slide1 {
  background: url("https://i.ibb.co/ksG5zYP1/ZUHD-AU-New-Banner-28.jpg") no-repeat center center;
  background-size: cover;
}

.hearts-slide {
  background: url("/ZUHD AU New Banner-29.jpg") no-repeat center center;
  background-size: cover;
}

.wisdom-slide {
  background: url("/ZUHD AU New Banner-30.png") no-repeat center center;
  background-size: cover;
}

.community-slide {
  background: url("/ZUHD AU New Banner-31.png") no-repeat center center;
  background-size: cover;
}

.guidance-slide {
  background: url("/ZUHD AU New Banner-32.png") no-repeat center center;
  background-size: cover;
}
}
/* Mobile adjustments */
@media (max-width: 480px) {
      .guidance-slide1 {
  background: url("https://i.ibb.co/DqP0Bp4/ZUHD-AU-New-Banner-28.jpg") no-repeat center center;
  background-size: cover;
}
  .category-filters {
    gap: 0.4rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .qotd-social-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* If using <img> inside slides */
  .slide-img {
    width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: cover;
  }

  /* If using background images on divs */
  .hearts-slide,
  .wisdom-slide,
  .community-slide,
  .guidance-slide {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}


/* Utility Classes */
.text-center-mobile {
  text-align: left;
}


@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }
}

.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .show-mobile {
    display: block;
  }
  .minbar-content h2{
    text-align: center;
  }
  .minbar-subtitle{
    text-align: center;
  }
}

/* Focus and Accessibility */
.sacred-action-btn:focus,.sacred-action-btn1:focus,
.filter-btn:focus,
.social-icon:focus,
.donation-primary-btn:focus,
.donation-secondary-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  text-align: center;
}

.scroll-arrow {
  display: block;
  margin-top: 0.5rem;
  animation: bounce 2s infinite;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

/* Performance optimizations */
.slider-track,
.story-slider,
.content-slider {
  backface-visibility: hidden;
  perspective: 1000px;
}

.partner-card,
.story-card,
.media-card {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Smooth scrolling for all containers */
.story-slider,
.content-slider {
  scroll-snap-type: x mandatory;
}

.story-card,
.media-card {
  scroll-snap-align: center;
}

/* Add subtle gradient overlay */
.slider-container::before,
.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.slider-container::before {
  left: 0;
  background: linear-gradient(to right, var(--deep-green), transparent);
}

.slider-container::after {
  right: 0;
  background: linear-gradient(to left, var(--gold), transparent);
}

/* Islamic cards special styling */
.islamic-card {
  background: rgba(200, 184, 138, 0.2);
  border: 1px solid rgba(200, 184, 138, 0.4);
}

.islamic-card:hover {
  background: rgba(200, 184, 138, 0.3);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(200, 184, 138, 0.2);
}

/* External link indicator */
.external-link::after {
  content: "↗";
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.external-link:hover::after {
  opacity: 1;
}
/* Banner Styles - Enhanced Responsive */
.banner {
    width: 100%;
    max-width: 1100px;
    height: 300px;
    background-image: 
        linear-gradient(135deg, #0f3d2e65 0%, #1a5a436c 50%, #0f3d2ea8 100%),
        url('/600x200.png'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 2rem auto;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.3);
    border: 1px solid #c8b88ab2;
}


.banner-content {
    text-align: center;
    z-index: 2;
    position: relative;
    padding: 1rem;
}

.channel-name {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 35px;
        z-index: 2;

}

.update-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #f0f0f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s ease-in-out infinite;
    margin-bottom: 20px;
    z-index: 1;
}

.subscribe-btn {
    display: inline-block;
    background: linear-gradient(45deg, #C8B88A, #d4c49a);
    color: #0F3D2E;
    padding: 12px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 184, 138, 0.3);
    animation: bounce 3s infinite;
    border: 2px solid transparent;
    min-height: 44px; /* Better touch target */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 184, 138, 0.5);
    background: var(--deep-green);
    color: var(--gold);
    border-color: #F7EFE5;
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle {
    position: absolute;
    border: 2px solid rgba(200, 184, 138, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.circle:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.circle:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 30px;
    right: 80px;
    animation-delay: 2s;
    animation-direction: reverse;
}

.circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 80px;
    animation-delay: 4s;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #C8B88A;
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

.floating-dot:nth-child(4) {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.floating-dot:nth-child(5) {
    top: 70%;
    right: 20%;
    animation-delay: 1s;
}

.floating-dot:nth-child(6) {
    top: 20%;
    right: 30%;
    animation-delay: 2s;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(200, 184, 138, 0.5);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(200, 184, 138, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }

/* LARGE DESKTOP - 1200px and above */
@media (min-width: 1200px) {
    .banner {
        margin: 3rem auto;
    }
}

/* DESKTOP - 1024px to 1199px */
@media (max-width: 1199px) and (min-width: 1024px) {
    .footer-top {
        gap: 1.5rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .newsletter {
        padding: 1.25rem;
    }
}

/* TABLET LANDSCAPE - 768px to 1023px */
@media (max-width: 1023px) and (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .newsletter {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
    
    .banner {
        padding: 20px 20px;
        height: 250px;
        margin: 1.5rem auto;
    }
    
    .circle:nth-child(1) {
        width: 120px;
        height: 120px;
        top: 15px;
        left: 30px;
    }
    
    .circle:nth-child(2) {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 50px;
    }
    
    .circle:nth-child(3) {
        width: 60px;
        height: 60px;
        left: 60px;
    }
}

/* TABLET PORTRAIT - 768px and below */
@media (max-width: 768px) {
    .banner {
    width: 100%;
    max-width: 1100px;
    height: 163px;
    background-image: 
        linear-gradient(135deg, #0f3d2e65 0%, #1a5a436c 50%, #0f3d2ea8 100%),
        url('/600x200.png'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: 2rem auto;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.3);
    border: 1px solid #c8b88ab2;
}
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        align-items: center;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
 .footer-column {
        text-align:start;
    } 
    
    .footer-column ul li a:hover {
        transform: none; /* Remove slide effect on mobile */
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
      .newsletter h3 {
        text-align: start;
        font-size: 0.95rem;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        padding: 1rem 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Banner Mobile Styles */
    .banner {
        height: 200px;
        margin: 1rem auto;
        border-radius: 10px;
        background:transparent;
        box-shadow: none;
    }
    
    .banner-content {
        padding:20px 0px;
    }
    
    .channel-name {
        margin-bottom: 8px;
        font-size:25px;
    }
    
    .update-text {
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    
    .subscribe-btn {
        padding: 10px 20px;
        letter-spacing: 0.5px;
    }
    
    .circle {
        display: none;
    }
    
    .floating-dot {
        width: 6px;
        height: 6px;
    }
}

/* MOBILE LANDSCAPE - 640px and below */
@media (max-width: 640px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 0.75rem;
    }
    
    .footer-top {
        gap: 1.5rem;
    }
    
    .flogo {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
    }
    
    .logo-text {
        font-size:19px;
    }
    
    .footer-column h3 {
        font-size:30px;
    }
    
    .footer-column ul li a {
        font-size:19px;
    }
    
    .newsletter {
        padding: 1.25rem;
    }
    
    .newsletter p {
        font-size: 0.85rem;
        text-align: start;
        padding: 0px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .banner {
        height: 180px;
        margin: 0.75rem auto;
    }
    
    .floating-dot {
        display: none; /* Hide on smaller screens for cleaner look */
    }
}

/* MOBILE PORTRAIT - 480px and below */
@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.75rem 0;
    }
    
    .footer-content {
        padding: 0 0.5rem;
    }
    
    .footer-top {
        gap: 1.25rem;
    }
    
    .flogo {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .footer-column h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-column ul li a {
        font-size: 0.8rem;
        padding: 0.15rem 0;
    }
    
    .newsletter {
        padding: 1rem;
    }
    
    .newsletter h3 {
        text-align: start;
        font-size: 0.95rem;
    }
    
    .newsletter p {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        text-align: start;
        padding: 0px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .footer-links {
        gap: 0.5rem;
    }
    
   .banner {
    width: 100%;
    max-width: 1100px;
    height: 163px;
    background-image: 
        linear-gradient(135deg, #0f3d2e65 0%, #1a5a436c 50%, #0f3d2ea8 100%),
        url('/600x200.png'); /* Replace with your actual image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* margin: 2rem auto; */
    padding: 100px 7px;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 61, 46, 0.3);
    border: 1px solid #c8b88ab2;
}
    
    .subscribe-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* EXTRA SMALL MOBILE - 360px and below */
@media (max-width: 360px) {
    .footer-content {
        padding: 0 0.25rem;
    }
    
    .footer-top {
        gap: 1rem;
    }
    
    .newsletter {
        padding: 0.75rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .banner {
        height: 145px;
        margin: 0.25rem auto;
    }
    
    .subscribe-btn {
        padding: 6px 12px;
        font-weight: bold;
        font-size: 0.75rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .footer-column,
    .flogo,
    .social-link,
    .newsletter-form button,
    .subscribe-btn,
    .banner::before {
        animation: none;
        transition: none;
    }
    
    .circle,
    .floating-dot {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .footer {
        background: #000000;
        color: #ffffff;
    }
    
    .footer-column h3,
    .social-link,
    .update-text {
        color: #ffffff;
    }
    
    .banner {
        background: #000000;
        border: 2px solid #ffffff;
    }
    
    .channel-name {
        color: #ffffff;
        font-size:22px;
        margin-bottom: 10px;
    }
}

/* Focus States for Better Accessibility */
.social-link:focus,
.newsletter-form button:focus,
.subscribe-btn:focus,
.footer-links a:focus {
    outline: 2px solid #C8B88A;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .footer {
        background: none !important;
        color: #000000 !important;
    }
    
    .banner {
        display: none;
    }
    
    .social-links,
    .newsletter-form {
        display: none;
    }
    
    .footer-column h3::after {
        background: #000000;
    }
}



        /* lectures page css  */

    .lectures-main {
    padding-top: 100px;
    min-height:85vh;

    background-image: url('https://i.ibb.co/VcTJczHN/04-Lectures-1920x500.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.events-main{
     padding-top: 100px;
    min-height:85vh;

    background-image: url('https://i.ibb.co/p6J1SHN1/02-Events-1920x500.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark overlay */lectures-main
.lectures-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust overlay strength here */
    z-index: 1;
}

/* Make sure text content is above the overlay */
.lectures-main > * {
    position: relative;
    z-index: 2;
}

        /* Filter Section */
        .filter-section {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-dropdown {
            position: relative;
            min-width: 200px;
        }

        .filter-button {
            width: 100%;
            padding: 15px 20px;
            background: rgba(244, 228, 193, 0.9);
            color: #2d5a3d;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .filter-button:hover {
            background: #f4e4c1;
        }

        .filter-dropdown.active .filter-button {
            background: #f4e4c1;
        }

        .filter-arrow {
            transition: transform 0.3s ease;
        }

        .filter-dropdown.active .filter-arrow {
            transform: rotate(180deg);
        }

        .filter-options {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(244, 228, 193, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            margin-top: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
            max-height: 200px;
            overflow-y: auto;
        }

        .filter-dropdown.active .filter-options {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .filter-option {
            padding: 12px 20px;
            color: #2d5a3d;
            cursor: pointer;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid rgba(45, 90, 61, 0.1);
        }

        .filter-option:last-child {
            border-bottom: none;
        }

        .filter-option:hover {
            background-color: rgba(45, 90, 61, 0.1);
        }

        /* Topic Tags */
        .topic-tags {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .topic-tag {
            padding: 8px 20px;
            background: transparent;
            border: 1px solid rgba(244, 228, 193, 0.5);
            color: #f4e4c1;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .topic-tag:hover,
        .topic-tag.active {
            background: rgba(244, 228, 193, 0.2);
            border-color: #f4e4c1;
        }

        /* Islamic Platform Wrapper */
        .islamic-platform-wrapper {
            /* max-width: 1200px; */
            margin: 0 auto;
            /* padding: 20px; */
        }

        /* Hero Section */
        .tarbiyyah-hero-banner {
            /* background: linear-gradient(135deg, #C8B88A 0%, #0F3D2E 100%); */
            border-radius: 20px;
            padding: 40px 0px ;
            /* margin-bottom: 30px; */
            position: relative;
            overflow: hidden;
            /* min-height: 300px; */
        }

        .hero-main-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 2;
        }
        .elfsight-app-eb6ebd11-08cf-49ca-8c1a-69a026654577{
    width:100%;
    height:100%;
}


        .hero-title-section h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #F7EFE5;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .palestine-series-label {
            color: #F7EFE5;
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .scholar-featured-image {
            position: relative;
            width: 300px;
            height: 200px;
        }

        .scholar-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .islamic-geometric-pattern {
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(247,239,229,0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(247,239,229,0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.3;
        }

        .video-play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .video-play-overlay:hover {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .compact-play-btn {
            transform: translate(-50%, -50%) scale(0.8);
        }

        /* Section Header */
        .content-section-title {
            margin-bottom: 30px;
        }

        .content-section-title h2 {
            font-size: 3rem;
            color: #f4e4c1;
            margin-bottom: 5px;
        }

        .series-description-text {
            color: #C8B88A;
            font-size:25px;
            font-weight: 600;

        }

        /* Video Grid */
        .educational-videos-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
        }

        .islamic-video-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(15,61,46,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            backdrop-filter: blur(10px);
        }

        .islamic-video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(15,61,46,0.15);
        }

        .featured-video-card {
            grid-row: span 2;
        }

        .hijrah-video-thumbnail,
        .scholar-portrait-thumbnail,
        .multiple-scholars-thumbnail {
            height: 150px;
            position: relative;
            overflow: hidden;
        }

        .featured-video-card .hijrah-video-thumbnail {
            height: 200px;
        }

        /* Camel Silhouette */
        .desert-camel-silhouette {
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, #C8B88A 0%, #0F3D2E 100%);
            position: relative;
        }

        .desert-camel-silhouette::after {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 20%;
            width: 60%;
            height: 40px;
            background: #0F3D2E;
            clip-path: polygon(0% 100%, 15% 60%, 25% 80%, 35% 50%, 45% 70%, 55% 40%, 65% 60%, 75% 30%, 85% 50%, 100% 100%);
        }

        /* Scholar Thumbnails */
        .elderly-scholar-bg,
        .young-scholar-bg {
            background: #0F3D2E;
        }

        .scholar-avatar-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 35px auto;
            position: relative;
        }

        .elderly-scholar-style {
            background: radial-gradient(circle, #F7EFE5 30%, #C8B88A 70%);
        }

        .young-scholar-style {
            background: radial-gradient(circle, #F7EFE5 30%, #0F3D2E 70%);
        }

        .scholar-avatar-image::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 15px;
            background: white;
            border-radius: 15px 15px 0 0;
        }

        /* Multi Scholar */
        .multiple-scholars-thumbnail {
            background: #0F3D2E;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scholars-group-container {
            display: flex;
            gap: 10px;
        }

        .mini-scholar-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: radial-gradient(circle, #F7EFE5 30%, #C8B88A 70%);
            position: relative;
        }

        .mini-scholar-avatar::after {
            content: '';
            position: absolute;
            top: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 15px;
            height: 8px;
            background: white;
            border-radius: 8px 8px 0 0;
        }

        /* Video Info */
        .video-details-section {
            padding: 15px;
        }

        .video-details-section h3 {
            font-size: 1.1rem;
            color: #f4e4c1;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .islamic-category-tag {
            color: #C8B88A;
            font-size: 0.9rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
           .lectures-main {
    padding-top: 100px;
    min-height: 100vh;

    background-image: url('/images/150ppi/04\ Lectures.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
            /* .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            } */

            .lectures-title {
                font-size: 2.5rem;
            }

            .filter-section {
                flex-direction: column;
                align-items: center;
            }

            .filter-dropdown {
                width: 100%;
                max-width: 300px;
            }

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

            .hero-main-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .hero-title-section h1 {
                font-size: 2rem;
            }
            
            .educational-videos-grid {
                grid-template-columns: 1fr;
                grid-template-rows: auto;
            }
            
            .featured-video-card {
                grid-row: span 1;
            }
            
            .featured-video-card .hijrah-video-thumbnail {
                height: 150px;
            }
        }

        @media (max-width: 480px) {
            .islamic-platform-wrapper {
                padding: 10px;
            }
            
            .tarbiyyah-hero-banner {
                padding: 20px;
            }
            
            .hero-title-section h1 {
                font-size: 1.5rem;
            }
        }

        .quotes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filter Section */
.filter-section {
    margin-bottom: 30px;
    padding: 20px 0;
}

.filter-controls {
    display: flex;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-dropdown1 {
    padding: 15px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
     background: #f4e4c1;
    font-size: 14px;
    color: #666;
    min-width: 170px;
    cursor: pointer;
}

.filter-dropdown:focus {
    outline: none;
    border-color: var(--deep-green);
}

.filter-btn {
    padding: 8px 20px;
  background: #f4e4c1;
    color: rgb(121, 120, 120);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.filter-btn:hover {
    background-color: #0a2f22;
}

/* Quotes Grid */
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.quote-card {
    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}

.quote-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-text {
    font-size: 22px;
    line-height:30px;
    color: #333;
    margin-bottom: 15px;
    flex-grow: 1;
}

.quote-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    font-size: 16px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.social-icons i:hover {
    color: var(--deep-green);
}

.social-icons .fa-twitter:hover {
    color: #1da1f2;
}

.social-icons .fa-facebook-f:hover {
    color: #4267b2;
}

/* Hidden class for filtering */
.quote-card.hidden {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .quotes-container {
        padding: 15px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-dropdown {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .quotes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .quote-card {
        padding: 15px;
    }
    
    .quote-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .quotes-container {
        padding: 10px;
    }
    
    .quote-card {
        padding: 12px;
        min-height: 120px;
    }
    
    .quote-text {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .author {
        font-size: 13px;
    }
    
    .social-icons i {
        font-size: 14px;
        padding: 3px;
    }
}

/* Tablet specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .quotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* about-section */
.zuhd-about-container {
    width:100%;
    margin:auto; 
    /* padding:40px 20px;  */
    background-color:white;
}

/* Animation Keyframes */
@keyframes zuhdFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zuhdFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zuhdFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zuhdFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zuhdScaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zuhdLineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes zuhdPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes zuhdBreathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes zuhdWordReveal {
    from {
        opacity: 0.3;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

   .zuhd-header-section {
            width: 100%;
            height:80vh;
            text-align: center;
            opacity: 0;
            animation: zuhdFadeInDown 1s ease-out forwards;
            animation-delay: 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        /* Video Background */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        /* Overlay */
        .zuhd-header-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(16, 71, 16, 0.5);
            z-index: -1;
        }

        .about-main-section {
            max-width: 1200px;
            margin: auto;
            padding: 40px 40px;
            background: #f5f5f5;
            min-height: 50vh;
        }

        /* Animation */
        @keyframes zuhdFadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Content styling */
        .header-content {
            position: relative;
            z-index: 2;
            margin-top: 100px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }

        .header-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            /* font-weight: bold; */
        }

        .header-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Fallback background image */
        .video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23104710"/><text x="50%" y="50%" text-anchor="middle" fill="white" font-size="48" >ZUHD GUIDANCE</text></svg>');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -3;
            display: none;
        }

        /* Show fallback when video fails to load */
        .video-background.error + .video-fallback {
            display: block;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .zuhd-header-section {
                height: 100vh;
                padding: 20px;
            }

            .header-content h1 {
                font-size: 2.5rem;
            }

            .header-content p {
                font-size: 1.2rem;
                padding: 0 20px;
            }

            .about-main-section {
                padding: 20px 20px;
            }

            /* Ensure portrait video covers properly on mobile */
            .video-background {
                object-fit: cover;
                object-position: center;
            }
        }

        /* Additional responsive breakpoints */
        @media (max-width: 480px) {
            .header-content h1 {
                font-size: 1.9rem;
            }

            .header-content p {
                font-size: 1.1rem;
            }
        }

        /* Landscape mobile devices */
        @media (max-width: 768px) and (orientation: landscape) {
            .zuhd-header-section {
                height: 100vh;
            }
            
            .video-background {
                object-fit: cover;
            }
        }

/* Vision Section */

.zuhd-section-title{
    font-size: 2.5rem;
    /* color: #0a2f22; */
    text-align:center;
    margin-top:40px;
    text-transform:uppercase;
}
.zuhd-section-title3{
    font-size: 3rem;
    color: #0a2f22;
    padding: 2px 0px;
    text-transform:uppercase;
}
.zuhd-vision-text1 {
    font-size:1.2rem;
    line-height: 30px;
    /* color: #0a2f22; */
    max-width: 1200px;
    opacity: 0;
    animation: zuhdFadeInUp 0.8s ease-out forwards;
    animation-delay: 1.3s;
    text-align:center;
    margin-bottom:50px;
}

/* Founders Section */
.zuhd-founders-section {
    margin-bottom: 30px;
}

.zuhd-founder-card {
     display: flex; 
    /* align-items: flex-start; */
    gap: 30px;
    max-width: 1200px;
    opacity: 0;
    animation: zuhdFadeInLeft 1s ease-out forwards;
    animation-delay: 2.3s;
}

.zuhd-founder-image-container {
    flex-shrink: 0;
    width:400px;
    height:380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(15, 61, 46, 0.1);
    border: 3px solid var(--gold);
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    cursor: pointer;
}

/* .zuhd-founder-image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 25px rgba(15, 61, 46, 0.2);
} */

.zuhd-founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* transition: filter 0.3s ease; */
}

/* .zuhd-founder-image-container:hover .zuhd-founder-image {
    filter: brightness(1.1) contrast(1.1);
} */

.zuhd-founder-info {
    flex: 1;
}
.Founder{
    color:var(--deep-green);
    text-transform: uppercase;
    font-size:2.2rem;
    padding:0px 0px;
}
.zuhd-founder-description1 {
    font-size:22px;
    line-height: 1.6;
    color:var(--deep-green);
}


    /* About Section */
     .zuhd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.tawheed-heading {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.ilm-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.ilm-section:last-child {
  margin-bottom: 0;
}

.ilm-section.reverse {
  flex-direction: row-reverse;
}

.hadith-content {
  flex: 1;
  padding: 20px;
}

.hadith-content p {
  font-size: 1.2rem;
  line-height: 30px;
  color: #ffffff;
}

.wisdom-quote {
  color: #ffffff;
}

.sunnah-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5px;
}

.sunnah-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
  .course1{
    font-size:1.2rem;
    list-style: 30px;
    text-align: center;
  }

/* Mobile Responsive */
@media (max-width: 768px) {
  .ilm-section,
  .ilm-section.reverse {
    flex-direction: column;
    text-align: center;
  }
.about-main-section{
    padding: 5px 0px;
}
.tawheed-heading  {
    font-size: 2.5rem;
    padding: 0px;
  }

  .hadith-content p{
    font-size: 1.1rem;
    line-height: 25px;
  }

  .course1{
    font-size: 1.2rem;
    list-style: 25px;
    text-align: center;
  }
}


        /* Courses Section */
        .madrasah-section {
            color:var(--deep-green);
            background-color: white;
            padding: 40px 20px;
        }

        .courses-bismillah {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
            text-transform: uppercase;
        }

        .dars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .fiqh-card {
            background-color:var(--deep-green);
            color: #ffffff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .fiqh-card:hover {
            transform: translateY(-5px);
        }

        .course-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            /* color: #ffffff; */
         text-align:center;

        }
@media (max-width: 768px) {
    .zuhd-section-title{
    font-size: 2rem;
   padding: 0px 12px;
       /* margin-bottom: 20px; */

}
.zuhd-vision-text{
    font-size:1.2rem;
    padding: 0px 10px;
    text-align: center;
    line-height: 25px;
}
.zuhd-section-title3 {
    font-size: 2rem;
    /* color: #0a2f22; */
    text-align: center;
    padding: 10px 0px;
}

    .tawheed-heading {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .ilm-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-bottom: 60px;
    }

    .ilm-section.reverse {
        flex-direction: column;

    }
.wisdom-quote {
          font-size:19px;
            line-height:25px;
                    text-align: center;

        }
     .hadith-content {
        font-size: 19px;
        padding: 10px 10px;
        line-height: 25px;
    } 

    .sunnah-image img {
        width: 100%;
        max-width: 400px;
    }

    .courses-bismillah {
        font-size: 2.5rem;
        margin-bottom:15px;
    }

    .fiqh-card {
        padding: 20px;
        /* margin-right: 10px; */
        /* text-align: center; */
    }

    .course-title {
        font-size:1.5rem;
    }

    .zuhd-container,
    .madrasah-section {
        padding: 20px 15px;
    }
}


  .zuhd-timeline-dot:hover {
            background-color: var(--deep-green);
            border-color: var(--gold);
            transform: scale(1.3);
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
        }

        .zuhd-timeline-dot.zuhd-pulse {
            animation: zuhdPulse 2s ease-in-out infinite;
            animation-delay: 4s;
        }

        .zuhd-timeline-content {
            padding: 0 5px;
        }

        .zuhd-timeline-year {
            font-size: clamp(1.2rem, 3vw, 1.4rem);
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        }

        .zuhd-timeline-description {
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #e0e0e0;
            line-height: 1.6;
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
        }

        /* Animations */
        @keyframes zuhdLineGrow {
            0% {
                transform: scaleX(0);
            }
            100% {
                transform: scaleX(1);
            }
        }

        @keyframes zuhdFadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zuhdScaleIn {
            0% {
                transform: scale(0);
            }
            100% {
                transform: scale(1);
            }
        }

        @keyframes zuhdPulse {
            0%, 100% {
                box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
            }
            50% {
                box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .zuhd-timeline-container {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .zuhd-timeline-line {
                display: none;
            }

            .zuhd-timeline-item {
                width: 80%;
                max-width: 300px;
            }

            .zuhd-timeline-dot {
                width: 20px;
                height: 20px;
            }
        }
/* Word animation styles */
.zuhd-word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0.3;
    transform: translateY(10px);
    animation: zuhdWordReveal 0.5s ease-out forwards;
}

.zuhd-word:nth-child(1) { animation-delay: 2s; }
.zuhd-word:nth-child(2) { animation-delay: 2.05s; }
.zuhd-word:nth-child(3) { animation-delay: 2.1s; }
.zuhd-word:nth-child(4) { animation-delay: 2.15s; }
.zuhd-word:nth-child(5) { animation-delay: 2.2s; }
.zuhd-word:nth-child(6) { animation-delay: 2.25s; }
.zuhd-word:nth-child(7) { animation-delay: 2.3s; }
.zuhd-word:nth-child(8) { animation-delay: 2.35s; }
.zuhd-word:nth-child(9) { animation-delay: 2.4s; }
.zuhd-word:nth-child(10) { animation-delay: 2.45s; }

/* Scroll animations */
.zuhd-scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.zuhd-scroll-animate.zuhd-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax effect */
.zuhd-parallax {
    transition: transform 0.1s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zuhd-about-container {
        padding: 30px 15px;

    }
    .zuhd-main-title{
    font-size: 3rem;
}
    .zuhd-header-section {
    width: 100%;
    height: 100vh;
    text-align: center; /* Center horizontally */
    /* margin-bottom: 60px; */
    opacity: 0;
    animation: zuhdFadeInDown 1s ease-out forwards;
    animation-delay: 0.2s;

    display: flex; /* Flexbox for centering */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */

    /* background-image: url('/images/150ppi/01\ MOB.png'); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    .zuhd-founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .zuhd-founder-image-container {
        width: 180px;
        height: 190px;
    }

    .zuhd-timeline-container {
        flex-direction: column;
        gap: 40px;
        align-items: stretch;
    }

    .zuhd-timeline-line {
        display: none;
    }

    .zuhd-timeline-item {
        width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        animation: zuhdFadeInLeft 0.6s ease-out forwards;
    }

    .zuhd-timeline-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .zuhd-timeline-content {
        padding: 0;
        flex: 1;
    }
}

@media (max-width: 480px) {
.zuhd-section-title2{
        display:none;
        font-size: 2rem;

}
.zuhd-timeline-container {
    display:none;
                align-items: center;
                gap: 40px;
            }
    .Founder{
    color:var(--deep-green);
    text-transform: uppercase;
    font-size:28px;
    padding:0px 0px;
}
    .nourish-hero-carousel {
  min-height:70vh;
  position: relative;
  overflow: hidden;
}
    .zuhd-about-container {
        padding: 60px 10px;
    }
     .hadith-content p{
    font-size: 1rem;
}

    /* .zuhd-header-section {
        margin-bottom: 40px;
    } */

    .zuhd-vision-section,
    .zuhd-founders-section {
        margin-bottom: 10px;
    }

    .tawheed-heading{
        font-size: 2rem;
    }
    .zuhd-founder-card {
        gap: 15px;
    }

    .zuhd-founder-image-container {
        width: 180px;
        height: 190px;
    }

    .zuhd-timeline-item {
        gap: 15px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading states */
.zuhd-loading {
    opacity: 0;
    pointer-events: none;
}

/* Focus states for accessibility */
.zuhd-founder-image-container:focus,
.zuhd-timeline-dot:focus {
    outline: 2px solid var(--deep-green);
    outline-offset: 2px;
}
/* donate now css  */
/* Animation Keyframes */
@keyframes zuhdFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zuhdFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zuhdSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zuhdSlideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zuhdScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zuhdPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes zuhdShimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

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

.zuhd-donation-container {
    min-height: 100vh;
}

/* Hero Section */
.zuhd-hero-section {
    position: relative;
    height:85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zuhd-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.zuhd-hero-image {
    /* margin-top: 100px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) sepia(20%);
    animation: zuhdFloat 6s ease-in-out infinite;
}

.zuhd-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-green) 0%, rgba(15, 61, 46, 0.39) 100%);
}

.zuhd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.zuhd-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--sand-beige);
    margin-bottom: 20px;
    opacity: 0;
    animation: zuhdFadeInDown 1s ease-out forwards;
    animation-delay: 0.5s;
}

.zuhd-hero-title {
    /* font-size: clamp(3rem, 8vw, 6rem); */
    color: var(--off-white);
    margin-bottom: 40px;
    letter-spacing: 2px;
     font-family: "Serotiva-Black";
     font-weight: 600;
    opacity: 0;
    animation: zuhdFadeInUp 1s ease-out forwards;
    animation-delay: 0.8s;
}

.zuhd-support-btn {
    background: linear-gradient(135deg, var(--gold), #d4c49a);
    color: var(--deep-green);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: zuhdScaleIn 1s ease-out forwards;
    animation-delay: 1.2s;
    position: relative;
    overflow: hidden;
}

.zuhd-support-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.zuhd-support-btn:hover::before {
    left: 100%;
}

.zuhd-support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 184, 138, 0.3);
}

.zuhd-support-btn i {
    animation: zuhdFloat 2s ease-in-out infinite;
}

/* Payment Section */
.zuhd-payment-section {
    padding: 70px 20px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, var(--deep-green) 0%, #0a2f22 100%);
}

.zuhd-payment-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: zuhdScaleIn 1s ease-out forwards;
    animation-delay: 0.3s;
    position: relative;
    overflow: hidden;
}

.zuhd-payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--deep-green));
}

.zuhd-payment-header {
    text-align: center;
    margin-bottom: 30px;
}

.zuhd-payment-title {
    font-size: 2rem;
    color: var(--deep-green);
    font-weight: 400;
}

/* Payment Methods */
.zuhd-payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.zuhd-payment-option {
    flex: 1;
    min-width: 120px;
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--off-white);
    opacity: 0;
    animation: zuhdFadeInUp 0.6s ease-out forwards;
}

.zuhd-payment-option:nth-child(1) { animation-delay: 0.6s; }
.zuhd-payment-option:nth-child(2) { animation-delay: 0.8s; }
.zuhd-payment-option:nth-child(3) { animation-delay: 1s; }

.zuhd-payment-option:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200, 184, 138, 0.2);
}

.zuhd-payment-option.zuhd-active {
    border-color: var(--deep-green);
    background: var(--sand-beige);
}

.zuhd-payment-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.zuhd-payment-logo i {
    font-size: 1.5rem;
    color: var(--deep-green);
}

.zuhd-payment-logo span {
    font-size: 0.9rem;
    color: var(--deep-green);
    font-weight: 500;
}

/* Donation Causes */
.zuhd-donation-causes {
    margin-bottom: 30px;
}

.zuhd-causes-title {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 20px;
    font-weight: 500;
}

.zuhd-cause-item {
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
    animation: zuhdSlideInLeft 0.6s ease-out forwards;
}

.zuhd-cause-item:nth-child(2) { animation-delay: 1.2s; }
.zuhd-cause-item:nth-child(3) { animation-delay: 1.4s; }

.zuhd-cause-item:hover {
    border-color: var(--gold);
    background: var(--sand-beige);
    transform: translateX(10px);
}

.zuhd-cause-item.zuhd-selected {
    border-color: var(--deep-green);
    background: var(--sand-beige);
}

.zuhd-cause-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.zuhd-cause-name {
    font-size: 1.1rem;
    color: var(--deep-green);
      font-family: "Serotiva-Bold";
    /* font-weight: 600; */
}

.zuhd-cause-toggle input[type="radio"] {
    display: none;
}

.zuhd-radio-label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--deep-green);
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.zuhd-radio-label::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--deep-green);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

input[type="radio"]:checked + .zuhd-radio-label::after {
    transform: translate(-50%, -50%) scale(1);
}

.zuhd-cause-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Amount Section */
.zuhd-amount-section {
    margin-bottom: 30px;
}

.zuhd-amount-title {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 20px;
    font-weight: 600;
      font-family: "Serotiva-Bold";

}

.zuhd-amount-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.zuhd-amount-btn {
    flex: 1;
    min-width: 80px;
    padding: 12px 20px;
    border: 2px solid var(--deep-green);
    background: var(--off-white);
    color: var(--deep-green);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    animation: zuhdFadeInUp 0.4s ease-out forwards;
}

.zuhd-amount-btn:nth-child(1) { animation-delay: 1.6s; }
.zuhd-amount-btn:nth-child(2) { animation-delay: 1.7s; }
.zuhd-amount-btn:nth-child(3) { animation-delay: 1.8s; }
.zuhd-amount-btn:nth-child(4) { animation-delay: 1.9s; }

.zuhd-amount-btn:hover {
    background: var(--sand-beige);
    transform: translateY(-2px);
}

.zuhd-amount-btn.zuhd-amount-active {
    background: var(--deep-green);
    color: var(--off-white);
}

.zuhd-custom-amount {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    opacity: 0;
    animation: zuhdFadeInUp 0.4s ease-out forwards;
    animation-delay: 2s;
}

.zuhd-custom-amount:focus {
    outline: none;
    border-color: var(--deep-green);
}

/* Donate Button */
.zuhd-donate-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--deep-green), #0a2f22);
    color: var(--off-white);
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    animation: zuhdScaleIn 0.6s ease-out forwards;
    animation-delay: 2.2s;
    position: relative;
    overflow: hidden;
}

.zuhd-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.zuhd-donate-btn:hover::before {
    left: 100%;
}

.zuhd-donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 61, 46, 0.3);
}

.zuhd-donate-btn i {
    animation: zuhdPulse 2s ease-in-out infinite;
}

/* Causes Section */
.zuhd-causes-section {
    display: flex;
    gap: 0;
    min-height: 400px;
}

.zuhd-cause-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    animation: zuhdFadeInUp 1s ease-out forwards;
}

.zuhd-cause-card:nth-child(1) { animation-delay: 0.5s; }
.zuhd-cause-card:nth-child(2) { animation-delay: 0.8s; }

.zuhd-cause-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.zuhd-cause-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}

.zuhd-cause-card:hover .zuhd-cause-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.zuhd-cause-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 61, 46, 0.9));
    padding: 40px 30px 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.zuhd-cause-card:hover .zuhd-cause-overlay {
    transform: translateY(0);
}

.zuhd-cause-card-title {
    color: var(--off-white);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
      font-family: "Serotiva-Bold";

}

/* Modal */
.zuhd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.zuhd-modal-overlay.zuhd-show {
    opacity: 1;
    visibility: visible;
}

.zuhd-modal {
    background: var(--off-white);
    border-radius: 15px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.zuhd-modal-overlay.zuhd-show .zuhd-modal {
    transform: scale(1);
}

.zuhd-success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: zuhdPulse 1s ease-in-out;
}

.zuhd-modal h3 {
    color: var(--deep-green);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.zuhd-modal p {
    color: #666;
    margin-bottom: 25px;
}

.zuhd-modal-btn {
    background: var(--deep-green);
    color: var(--off-white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.zuhd-modal-btn:hover {
    background: #0a2f22;
}

/* Responsive Design */
@media (max-width: 768px) {
    .zuhd-hero-title {
        font-size: 3rem;
    }

    .zuhd-payment-card {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .zuhd-payment-methods {
        flex-direction: column;
    }

    .zuhd-amount-options {
        flex-direction: column;
    }

    .zuhd-causes-section {
        flex-direction: column;
        min-height: auto;
    }

    .zuhd-cause-card {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .zuhd-hero-content {
        padding: 0 15px;
    }

    .zuhd-payment-section {
        padding: 40px 10px;
    }

    .zuhd-support-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation Keyframes */
@keyframes ziyaratFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ziyaratFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ziyaratFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ziyaratScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ziyaratPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes ziyaratGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(200, 184, 138, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(200, 184, 138, 0.6);
    }
}

.ziyarat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}

.ziyarat-header {
    height:85vh; /* Ensures full hero section */
    margin-bottom: 30px;
    opacity: 0;
    animation: ziyaratFadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;

    background-image: url('https://i.ibb.co/BHK5gBck/06-ziyarat-1920x500.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
}

/* Overlay */
.ziyarat-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust for desired darkness */
    z-index: 1;
}

/* Title Styling */
.ziyarat-title {
    position: relative;
    z-index: 2;
    font-size:3rem;
    color: var(--off-white);
    margin-bottom: 20px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 1px;

    padding-top: 0; /* You had an empty value – removed it */
}


.ziyarat-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    z-index:1;
    justify-content: center;
}

.ziyarat-nav-btn {
    padding: 8px 20px;
    border: 2px solid var(--off-white);
    background: transparent;
    color: var(--off-white);
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    animation: ziyaratFadeInUp 0.6s ease-out forwards;
}

.ziyarat-nav-btn:nth-child(1) { animation-delay: 0.4s; }
.ziyarat-nav-btn:nth-child(2) { animation-delay: 0.5s; }
.ziyarat-nav-btn:nth-child(3) { animation-delay: 0.6s; }

.ziyarat-nav-btn:hover {
    background: var(--deep-green);
    color: var(--off-white);
    transform: translateY(-2px);
}

.ziyarat-nav-btn.ziyarat-active {
    background: var(--deep-green);
    color: var(--off-white);
}

/* Responsive adjustments for featured section */
@media (max-width: 768px) {
    .ziyarat-featured-content {
        flex-direction: column;
    }
    .ziyarat-header {
    height: 100vh; /* Ensures full hero section */
    margin-bottom: 30px;
    opacity: 0;
    animation: ziyaratFadeInUp 1s ease-out forwards;
    animation-delay: 0.2s;

    background-image: url('/images/150ppi/06\ Mob.png'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    flex-direction: column;
}
  
}


/* Responsive Design */
@media (max-width: 768px) {
    .ziyarat-main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ziyarat-container {
        padding: 15px;
    }

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

    .ziyarat-featured-info {
        padding: 20px;
    }

}
@media (max-width: 480px) {
    .ziyarat-title {
        font-size: 2rem;
        text-align: center;
    }

    .ziyarat-nav {
        flex-direction: column;
        align-items: center;
    }

    .ziyarat-nav-btn {
        width: 100%;
        max-width: 200px;
    }

    .ziyarat-card-content {
        padding: 15px;
    }

    .ziyarat-card-title {
        font-size: 1rem;
    }

    .ziyarat-video-container {
        height: 200px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


        .ziyarat-main-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            /* background: rgba(255, 255, 255, 0.9); */
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .ziyarat-header-section {
            text-align: center;
            padding: 40px 0px   0px;
            /* background: linear-gradient(135deg, #f8f6f0 0%, #f0ede2 100%); */
        }

        .ziyarat-main-title {
            font-size: 48px;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }

        .ziyarat-navigation-menu {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .ziyarat-nav-link {
            font-size: 16px;
            color: #666;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .ziyarat-nav-link--active {
            color: #2c2c2c;
            font-weight: 500;
        }

        .ziyarat-nav-link--active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: #c4985a;
            border-radius: 1px;
        }

        .ziyarat-nav-link:hover {
            color: #c4985a;
            transform: translateY(-2px);
        }

        .ziyarat-content-wrapper {
            display: flex;
            padding: 40px;
            gap: 40px;
            align-items: flex-start;
        }

        .ziyarat-left-content {
            flex: 1;
        }

        .ziyarat-video-showcase {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 25px;
            background: #000;
        }

        .ziyarat-thumbnail-display {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, #8B7355 0%, #A0905C 50%, #8B7355 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ziyarat-kaaba-illustration {
            width: 80%;
            height: 80%;
            background: linear-gradient(135deg, #6B5B47 0%, #8B7355 100%);
            position: relative;
            border-radius: 8px;
            box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .ziyarat-kaaba-illustration::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 15%;
            right: 15%;
            bottom: 60%;
            background: linear-gradient(135deg, #5A4D3A 0%, #7A6B58 100%);
            border-radius: 4px;
        }

        .ziyarat-kaaba-illustration::after {
            content: '';
            position: absolute;
            top: 30%;
            left: 10%;
            right: 10%;
            bottom: 20%;
            background: linear-gradient(135deg, #4A3D2A 0%, #6A5B48 100%);
            border-radius: 6px;
            box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.4);
        }

        .ziyarat-minaret-tower {
            position: absolute;
            top: 15%;
            right: 20%;
            width: 8px;
            height: 40%;
            background: linear-gradient(135deg, #7A6B58 0%, #5A4D3A 100%);
            border-radius: 4px;
        }

        .ziyarat-minaret-tower::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -2px;
            width: 12px;
            height: 12px;
            background: radial-gradient(circle, #9A8B78 0%, #7A6B58 100%);
            border-radius: 50%;
        }

        .ziyarat-minaret-tower::after {
            content: '';
            position: absolute;
            top: -5px;
            left: 1px;
            width: 6px;
            height: 8px;
            background: #5A4D3A;
            border-radius: 3px 3px 0 0;
        }

        .ziyarat-play-control {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .ziyarat-play-control:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background: rgba(255, 255, 255, 1);
        }

        .ziyarat-play-control::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid #c4985a;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .ziyarat-arch-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30px;
            background: repeating-linear-gradient(
                90deg,
                #8B7355 0px,
                #8B7355 15px,
                #A0905C 15px,
                #A0905C 30px
            );
            border-radius: 0 0 15px 15px;
        }

        .ziyarat-experience-title {
            font-size: 28px;
            font-weight: 400;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: 1px;
              font-family: "Serotiva-Bold";

        }

        .ziyarat-experience-description {
            font-size:22px;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ziyarat-right-content {
            flex: 0 0 300px;
            position: relative;
        }

        .ziyarat-map-interface {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 0;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            height:500px;
            overflow: hidden;
        }

        .ziyarat-google-embed {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 15px;
        }

        .ziyarat-map-overlay {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.95);
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            z-index: 10;
        }

        .ziyarat-map-title {
            font-size: 14px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 4px;
        }

        .ziyarat-map-subtitle {
            font-size: 12px;
            color: #666;
        }

        .ziyarat-ad-banner {
            margin-top: 20px;
            background: linear-gradient(135deg, #fff5e6 0%, #ffeaa7 100%);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            border: 2px solid #fdcb6e;
            box-shadow: 0 8px 20px rgba(253, 203, 110, 0.2);
        }

        .ziyarat-ad-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c2c2c;
            margin-bottom: 8px;
        }

        .ziyarat-ad-text {
            font-size: 13px;
            color: #666;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .ziyarat-ad-button {
            background: linear-gradient(135deg, #c4985a 0%, #d4a574 100%);
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .ziyarat-ad-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(196, 152, 90, 0.4);
        }

        @media (max-width: 768px) {
            .ziyarat-header-section{
                padding:0px;
            }
            .ziyarat-content-wrapper {
                flex-direction: column;
                padding: 20px;
            }
            
            .ziyarat-right-content {
                flex: none;
                width: 100%;
            }
            
            .ziyarat-navigation-menu {
                flex-direction: column;
                gap: 15px;
            }
            
            .ziyarat-main-title {
                font-size: 36px;
            }

            .ziyarat-map-interface {
                height: 300px;
                padding: 0px 20px;
                 margin-bottom: 0px;
            }
        }

        .ziyarat-loading-placeholder {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            background: linear-gradient(135deg, #e8f4fd 0%, #b8ddf0 100%);
            color: #666;
            font-size: 14px;
            border-radius: 15px;
        }
/* maktab css  */
  /* Banner Section */
        .banner-wrapper3{
            height:80vh;
            background-image: url('https://i.ibb.co/LXmcQp3T/05-Maktab-1920x500.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
 .banner-wrapper1 {
            height:85vh;
            background-image: url('https://i.ibb.co/spks1NDv/09-Islamic-scholars-1920x500.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .banner-overlay3 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:rgba(10, 59, 10, 0.479);
        }
 .banner-overlay1 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:rgba(10, 59, 10, 0.479);
        }

        .banner-text {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 600px;
            padding: 0 20px;
        }

        .main-heading {
            font-size:3rem;  
            /* font-weight: 700; */
            
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            text-align: center;
            /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
        }

        .sub-heading {
            font-size:1.2rem;
             /* font-weight: 700;  */
             width: 600px;
            letter-spacing: 0.1em;
            text-align: center;
            /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
            margin-bottom:20px;
        }
.sub-heading2 {
            font-size:1.2rem;
             /* font-weight: 700;  */
          width: 600px;
            letter-spacing: 0.1em;
            /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); */
        }
        .primary-btn {
            background-color: transparent;
            color: white;
            border: 2px solid var(--gold);
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            margin-top: 30px;
        }

        .primary-btn:hover {
            background-color: rgb(216, 208, 135);
            color: var(--deep-green);
        }

        .secondary-btn {
            background-color: var(--primary-brown);
            border: 2px solid var(--primary-brown);
            color: white;
            margin-top: 3rem;
        }

        .secondary-btn:hover {
            background-color: var(--secondary-brown);
            border-color: var(--secondary-brown);
        }

        /* Content Section */
        .content-wrapper {
            background-color: var(--warm-white);
            /* padding: 80px 0 100px; */
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .content-title {
            /* font-size: clamp(2rem, 4vw, 2.5rem); */
            font-weight: 600;
            text-align: center;
            /* margin-bottom: 2rem; */
            color: var(--text-dark);
        }

        .content-description1 {
            font-size: 22px;
            text-align: center;
            max-width: 1000px;
            margin-bottom:35px;
            line-height:25px;
        }

        /* Services Grid */
        .services-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .service-box {
            text-align: center;
            padding: 0 1rem;
        }

        .service-icon {
            color: var(--primary-brown);
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }

        .service-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom:10px;
            color: var(--text-dark);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .service-info {
            color: var(--text-medium);
            font-size:22px;
            line-height:30px;
            font-weight: 400;
        }

        /* Action Section */
        .action-wrapper {
            text-align: center;
            padding-top: 2rem;
        }

        /* Classes Section */
        .programs-section {
            margin-top: 5rem;
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--cream) 0%, var(--light-beige) 100%);
            border-radius: 20px;
            margin-bottom: 3rem;
        }

        .programs-heading {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .programs-subtitle {
            font-size: 1.3rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .programs-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .program-item {
            background: var(--warm-white);
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .program-item.highlighted {
            border-color: var(--primary-brown);
            transform: scale(1.02);
        }

        .program-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .program-label {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-brown);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .program-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin: 0;
            flex: 1;
        }

        .program-age {
            background: var(--secondary-brown);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            white-space: nowrap;
        }

        .program-text {
            color: var(--text-medium);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .program-details {
            margin-bottom: 2rem;
        }

        .program-detail {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        }

        .program-detail:last-child {
            border-bottom: none;
        }

        .detail-key {
            font-weight: 600;
            color: var(--text-dark);
        }

        .detail-value {
            color: var(--text-medium);
            font-weight: 500;
        }

        .program-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-brown), var(--secondary-brown));
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .program-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
        }

        /* Special Programs */
        .extras-section {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 2px solid rgba(139, 69, 19, 0.2);
        }

        .extras-heading {
            font-size: 2.2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .extras-layout {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .extra-item {
            background: var(--warm-white);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
            border: 1px solid rgba(139, 69, 19, 0.1);
        }

        .extra-item:hover {
            transform: translateY(-5px);
        }

        .extra-symbol {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .extra-item h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .extra-item p {
            color: var(--text-medium);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            .banner-wrapper {
                height: 80vh;
            }
              .banner-wrapper {
            height: 100vh;
            background-image: url('/images/150ppi/05\ Mob.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .services-layout {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
            
            .content-wrapper {
                padding: 0px 0 0px;
            }
            
            .content-description {
                margin-bottom: 4rem;
            }

            .section-paragraph{

    font-size: 19px !important;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 25px;
    text-align: center !important;
    padding: 0px 20px;
}
            .programs-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .program-item {
                padding: 2rem;
            }

            .program-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .program-age {
                align-self: flex-start;
            }

            .extras-layout {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .programs-section {
                margin-top: 3rem;
                padding: 3rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .main-heading {
                font-size: 2.5rem;
                letter-spacing: 0.1em;
            }
            
            .sub-heading {
                font-size:1.2rem;
                letter-spacing: 0.15em;
                width:100%;
                /* padding:0px 120px; */
            }
            .sub-heading2{
                font-size:1.2rem;
                 letter-spacing: 0.15em;
                width:100%;
                /* padding:0px 120px; */
            }
            .content-title1 {
    line-height: 41px !important;
    font-size: 2rem !important;
    margin-bottom: 15px;
    text-align: center;
    padding:20px 0px;
    /* margin-top: 20px; */
}
            .primary-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .content-title {
                font-size: 1.8rem;
            }
            
            .content-description {
                font-size: 1rem;
            }
            
            .service-name {
                font-size:25px;
            }
            
            .service-info {
                font-size:19px;
                line-height: 25px;
                margin-bottom: 0px;
            }
            
            .content-container {
                padding: 0 15px;
            }

            .programs-heading {
                font-size: 2rem;
            }

            .programs-subtitle {
                font-size: 1.1rem;
            }

            .program-item {
                padding: 1.5rem;
            }

            .program-title {
                font-size: 1.3rem;
            }

            .extra-item {
                padding: 1.5rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-box {
            animation: fadeInUp 0.6s ease forwards;
        }

        .service-box:nth-child(1) { animation-delay: 0.1s; }
        .service-box:nth-child(2) { animation-delay: 0.2s; }
        .service-box:nth-child(3) { animation-delay: 0.3s; }



        /* event css  */
         /* Events Header */
        .events-header {
            /* background: var(--dark-green); */
            /* padding: 4rem 0 3rem; */
            text-align: center;
            color: white;
        }

        .events-title {
            font-size: 3rem;
            /* font-weight: 700; */
            letter-spacing: 0.15em;
            /* margin-top: rem; */
            text-transform: uppercase;
        }

        .events-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            margin-bottom: 3rem;
            opacity: 0.9;
            letter-spacing: 0.05em;
        }

        /* .search-container {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        } */

        .category-select {
            background:var(--gold);
            border:1px solid var(--dark-green);
            padding: 12px 20px;
            border-radius: 4px;
            font-size: 1rem;
            color:rgb(23, 70, 23);
            min-width: 200px;
            /* font-family: 'Inter',; */
        }

        .filter-btn {
            background: var(--gold );
            color:var(--deep-green);
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            /* font-family: 'Inter', sans-serif; */
        }

        .filter-btn:hover {
            background: var(--secondary-brown);
        }

        /* Events Content */
        .events-content {
            /* background: white; */
            padding: 4rem 0;
            min-height: 60vh;
        }

        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .upcoming-title {
            font-size: 2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .events-grid {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .event-card {
            background: rgb(255, 255, 255);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px var(--shadow);
            display: flex;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .event-image {
            width: 200px;
            height: 150px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .event-details {
            padding: 2rem;
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .event-info h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--deep-green);
            margin-bottom: 0.5rem;
        }

        .event-date {
            color:rgb(25, 63, 27);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .event-location {
            color:rgb(25, 63, 27);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .view-details-btn {
            background: var(--dark-green);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            /* font-family: 'Inter', sans-serif; */
            white-space: nowrap;
        }

        .view-details-btn:hover {
            background: var(--secondary-brown);
        }

        /* Host Event Section */
        .host-event-section {
            background: var(--dark-green);
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .host-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .host-description {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        .contact-btn {
            background: var(--gold);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;

        }

        .contact-btn:hover {
             background: transparent; 
            border: 1px solid ;
        }

        /* No Events Message */
        .no-events {
            text-align: center;
            padding: 3rem 0;
            color: var(--text-medium);
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .event-card {
                flex-direction: column;
            }

            .event-image {
                width: 100%;
                height: 200px;
            }

            .event-details {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .view-details-btn {
                align-self: stretch;
                text-align: center;
            }

            .search-container {
                flex-direction: column;
                gap: 1rem;
                padding: 0 20px;
            }

            .category-select {
                width: 100%;
                max-width: 300px;
            }

            .events-title {
                font-size: 2.5rem;
            }

            .events-subtitle {
                font-size: 1rem;
                padding: 0 20px;
            }

            .upcoming-title {
                font-size: 1.5rem;
            }

            .host-title {
                font-size: 2rem;
            }

            .host-description {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            /* .events-header {
                padding: 3rem 0 2rem;
            } */

            .events-title {
                font-size: 2rem;
            }

            .events-subtitle {
                font-size: 0.9rem;
            }
             /* .consultation-islamic-button {
                padding: 15px 15px;
             } */

            .event-details {
                padding: 1.5rem;
            }

            .event-info h3 {
                font-size: 1.2rem;
            }

            .event-date, .event-location {
                font-size: 0.85rem;
            }
        }

         
        /* Hero Section */
        .consultation-hero-section {
            background: url("https://i.ibb.co/nsBpr52P/03-Islamic-consultation-1920x500.png") center center / cover no-repeat; /* Desktop background */
            height:85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--off-white);
            position: relative;
            margin-bottom: 0px;
        }

      .consultation-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 112, 62, 0.322); 
    z-index: 1;
}
      
  .consultation-hero-section1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(26, 112, 62, 0.5); /* Or use #0f3d2e80 */
    z-index: 1;
}
   
.consultation-hero-section > * {
            position: relative;
            z-index: 2;
            padding: 0 1rem; /* px-4 */
        }
        .consultation-hero-section{
                        width: 100%;
        }
        .consultation-hero-section1 > * {
            position: relative;
            z-index: 2;
            padding: 0 1rem; /* px-4 */
        }

        .consultation-hero-content h1 {
            font-size: 3rem; 
            margin-bottom: 1rem; /* mb-4 */
            letter-spacing: 2px; /* tracking-wide */
            color: var(--off-white);
            line-height: 48px; /* leading-[85px] */
        }
   .consultation-hero-content1 h1 {
            font-size: 2.5rem; 
            margin-bottom: 1rem; /* mb-4 */
            letter-spacing: 2px; /* tracking-wide */
            color: var(--off-white);
            line-height: 48px; /* leading-[85px] */
        }

        .consultation-hero-content1 p {
            font-size: 1.2rem; /* text-lg */
            margin-bottom:30; /* mb-4 */
            max-width: 600px; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
            line-height: 30px; /* leading-8 */
            /* color: var(--sand-beige); */
            text-align: center;
        }
        .consultation-hero-content p {
            font-size: 1.2rem; /* text-lg */
            margin-bottom:30; /* mb-4 */
            max-width: 600px; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
            line-height: 30px; /* leading-8 */
            color: var(--sand-beige);
            text-align: center;
        }

        .consultation-cta-button {
            background: var(--gold);
            border: 2px solid var(--gold);
            color: var(--deep-green);
            padding: 15px 40px; /* px-10 py-6 */
            font-size: 1rem; /* text-base */
            text-transform: uppercase;
            letter-spacing: 1px; /* tracking-wide */
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px; /* rounded-md */
            font-weight: 600; /* font-semibold */
            margin-top: 1rem; /* mt-4 */
        }

        .consultation-cta-button:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Services Section */
        .consultation-services-section {
            padding: 80px 0; /* py-20 */
            background: var(--sand-beige);
        }

        .consultation-container {
            max-width: 1200px; /* max-w-7xl */
            margin: 0 auto;
            padding: 0 20px; /* px-4 */
        }

        .consultation-section-title {
            text-align: center;
            font-size: 2.5rem; /* text-4xl */
            margin-bottom: 3rem; /* mb-12 */
            color: var(--deep-green);
        }

        .consultation-services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
            gap: 30px 30px; /* gap-8 lg:gap-x-10 lg:gap-y-8 */
            margin-bottom: 10px;
            max-width: 1100px; /* max-w-4xl */
            margin-left: auto;
            margin-right: auto;
        }

        .consultation-service-card {
            background: transparent;
            padding: 0;
            text-align: left;
            border-radius: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 15px; /* gap-4 */
        }

        .consultation-service-card:hover {
            transform: translateX(5px);
            box-shadow: none;
        }

        .consultation-service-icon {
            width: 120px; /* w-32 */
            height: 120px; /* h-32 */
            margin: 0;
            background: var(--gold);
            border-radius: 8px; /* rounded-lg */
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-green);
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(200, 184, 138, 0.3); /* shadow-lg shadow-gold/30 */
        }

        .consultation-service-icon i {
            font-size: 40px; /* h-10 w-10 */
        }

        .consultation-service-card h3 {
            font-size: 1.5rem; /* text-2xl */
            margin-bottom: 8px; /* mb-2 */
            color: var(--deep-green);
            font-weight: 600; /* font-semibold */
        }

        .consultation-service-card p {
            color: #555557; /* text-gray-700 */
            line-height: 30px; /* leading-8 */
            font-size: 1.2rem; /* text-lg */
        }

        .consultation-service-content {
            flex: 1;
        }

        /* Islamic Banner Section */
        .consultation-islamic-banner {
            background: var(--deep-green);
            padding: 60px 0; /* py-16 */
            text-align: center;
            color: var(--off-white);
        }

        .consultation-banner-content h2 {
            font-size: 2.5rem; /* text-4xl */
            margin-bottom: 1rem; /* mb-4 */
            color: var(--off-white);
        }

        .consultation-banner-content p {
            font-size: 1.2rem; /* text-lg */
            margin-bottom: 2rem; /* mb-8 */
            color: var(--sand-beige);
            max-width: 1000px; /* max-w-5xl */
            margin-left: auto;
            margin-right: auto;
            line-height: 30px; /* leading-8 */
        }

        .consultation-islamic-button {
            background: var(--gold);
            border: 2px solid var(--gold);
            color: var(--deep-green);
            padding: 15px 35px; /* px-9 py-6 */
            font-size: 1rem; /* text-base */
            font-weight: 600; /* font-semibold */
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px; /* rounded-md */
            text-transform: uppercase;
            letter-spacing: 1px; /* tracking-wide */
        }

        .consultation-islamic-button:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Doctor Section */
        .consultation-doctor-section {
            padding: 80px 0; /* py-20 */
            background-color: var(--deep-green); /* Added from React component */
        }

        .consultation-doctor-container {
            max-width: 1200px; /* max-w-6xl */
            margin: 0 auto;
            display: grid;
            grid-template-columns: 500px 1fr; /* md:grid-cols-[500px_1fr] */
            gap: 40px; /* md:gap-10 lg:gap-16 */
            align-items: center;
        }

        .consultation-doctor-image-wrapper {
            text-align: center;
        }

        .consultation-doctor-image {
            width: 500px; /* w-[500px] */
            height: 500px; /* h-[500px] */
            border-radius: 15px; /* rounded-xl */
            background: var(--deep-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--off-white);
            font-size: 60px;
            font-weight: bold;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(15, 61, 46, 0.2); /* shadow-xl shadow-deep-green/20 */
            overflow: hidden;
            position: relative;
        }

        .consultation-doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .consultation-doctor-content {
            text-align: center; /* md:text-left */
        }

        .consultation-doctor-content h3 {
            font-size: 30px; /* text-3xl */
            color: var(--gold);
            margin-bottom: 5px; /* mb-1 */
        }

        .consultation-doctor-content .doctor-title {
            font-size:22px; /* text-lg */
            color: var(--gold);
            margin-bottom: 15px; /* mb-4 */
        }

        .consultation-doctor-content p {
            color: var(--off-white); /* text-off-white */
            line-height: 30px; /* leading-8 */
            font-size: 22px; /* text-lg */
            margin-bottom: 30px; /* mb-8 */
        }

        .consultation-doctor-credentials {
            background: var(--sand-beige);
            padding: 20px; /* p-5 */
            border-radius: 8px; /* rounded-lg */
            border-left: 4px solid var(--gold);
        }

        .consultation-doctor-credentials h4 {
            color: var(--deep-green);
            margin-bottom: 15px; /* mb-4 */
            font-size:25px !important; /* text-lg */
            font-weight: bold;
        }

        .consultation-doctor-credentials ul {
            list-style: none;
            padding: 0;
            margin: 0;
            color: #666; /* text-gray-700 */
        }

        .consultation-doctor-credentials li {
            margin-bottom: 8px; /* mb-2 */
            position: relative;
            padding-left: 20px; /* pl-5 */
            font-size: 17px;
            text-align:center; /* text-base */
        }

        /* .consultation-doctor-credentials li:before {
            content: "✓";
            position: absolute;
            left: 102px;
            color: var(--gold);
            font-weight: bold;
        } */
 /* Services Section */
        .consultation-services-section {
            padding: 150px 0 70px;
            margin-top: -130px;
            background: var(--sand-beige);
        }

        .consultation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .consultation-section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 5rem;
            color: var(--deep-green);
        }

        .consultation-services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 30px;
            margin-bottom:10px;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }

        .consultation-service-card {
            background: transparent;
            padding: 0;
            text-align: left;
            border-radius: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .consultation-service-card:hover {
            transform: translateX(5px);
            box-shadow: none;
        }

        .consultation-service-icon {
            width: 120px;
            height: 120px;
            margin: 0;
            background: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--deep-green);
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(200, 184, 138, 0.3);
        }
.consultation-service-icon i {
    font-size: 40px;
}

        .consultation-service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: var(--deep-green);
            /* font-weight: 600; */
        }

        /* .consultation-service-card p {
            color: #555557;
            line-height:30px;
             font-size:22px; 
        } */

        .consultation-service-content {
            flex: 1;
        }

        /* Islamic Banner Section */
        .consultation-islamic-banner {
            background: var(--deep-green);
            padding: 60px 0;
            text-align: center;
            color: var(--off-white);
        }

        .consultation-banner-content h2 {
            font-size:2.5rem;
            margin-bottom: 1rem;
            color: var(--gold);
        }

        .consultation-banner-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--sand-beige);
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            line-height:30px;
        }

        .consultation-islamic-button {
            background: var(--gold);
            border: 2px solid var(--gold);
            color: var(--deep-green);
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .consultation-islamic-button:hover {
            background: transparent;
            color: var(--gold);
            transform: translateY(-2px);
        }

      .consultation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Doctor Section */
        .consultation-doctor-section {
            padding: 40px 0;
        }

        .consultation-doctor-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 500px 1fr;
            gap: 40px;
            align-items: center;
        }

        .consultation-doctor-image-wrapper {
            text-align: center;
        }

        .consultation-doctor-image {
            width: 500px;
            height:500px;
            border-radius: 15px;
            background: var(--deep-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--off-white);
            font-size: 60px;
            font-weight: bold;
            margin: 0 auto;
            box-shadow: 0 10px 30px rgba(15, 61, 46, 0.2);
            overflow: hidden;
            position: relative;
        }

        .consultation-doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .consultation-doctor-content h3 {
            font-size: 30px;
            color: var(--gold);
            margin-bottom: 5px;
          text-transform: uppercase;
        }

        .consultation-doctor-content .doctor-title {
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .consultation-doctor-content p {
            color: #ffffff;
            line-height: 30px;
            font-size: 22px;
            margin-bottom: 30px;
        }

        .consultation-doctor-credentials {
            background: var(--sand-beige);
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid var(--gold);
        }

        .consultation-doctor-credentials h4 {
            color: var(--deep-green);
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: bold;
        }

        .consultation-doctor-credentials ul {
            list-style: none;
            color: #3f3e3e;
        }

        .consultation-doctor-credentials li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            font-size: 16px;
        }

        .consultation-doctor-credentials li:before {
            content: "✓";
            position: absolute;
            left:150px;
            color: var(--deep-green);
            font-weight: bold;
        } 

        .consultation-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .consultation-fade-in.consultation-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Tablet Responsive Design */
        @media (max-width: 1024px) {
            .consultation-doctor-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .consultation-doctor-image {
                width: 200px;
                height: 200px;
            }
            .consultation-doctor-content {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            .consultation-hero-content h1{
                font-size: 2.5rem;
                    margin-bottom:10px;
            }

              .consultation-hero-content1 h1{
                font-size: 2.5rem;
                    margin-bottom:10px;
            }

                .consultation-hero-content p {
            font-size: 1.2rem; /* text-lg */
            margin-bottom:20px; /* mb-4 */
            max-width: 600px; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
            line-height: 30px; /* leading-8 */
            color: var(--sand-beige);
        }
   .consultation-hero-content1 p {
            font-size: 1.2rem; /* text-lg */
            margin-bottom:20px; /* mb-4 */
            max-width: 600px; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
            line-height: 30px; /* leading-8 */
            color: var(--sand-beige);
        }
            .consultation-doctor-section {
                padding: 60px 0;
            }

            .consultation-container {
                padding: 0 15px;
            }

            .consultation-doctor-container {
                gap: 30px;
            }

            .consultation-doctor-image {
                width: 230px;
                height:200px;
                font-size: 50px;
            }

            .consultation-doctor-content h3 {
                font-size: 24px;
                margin-bottom: 10px;
            }

            .consultation-doctor-content .doctor-title {
                font-size: 1rem;
                margin-bottom: 15px;
            }

            .consultation-doctor-content p {
                font-size: 18px;
                line-height: 26px;
                margin-bottom: 25px;
                padding: 0 10px;
            }

            .consultation-doctor-credentials {
                padding: 15px;
                margin: 0 10px;
            }

            .consultation-doctor-credentials h4 {
                font-size: 1rem;
                margin-bottom: 12px;
            }

            .consultation-doctor-credentials li {
                font-size: 14px;
                margin-bottom: 6px;
            }

                 .consultation-hero-section {
    background: url('/images/150ppi/03\ Mob.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--off-white);
    position: relative;
}

            .consultation-services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 100%;
            }

            .consultation-doctor-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .consultation-doctor-image {
                width: 280px !important;
                height:200px !important;
                font-size: 50px;
            }

            .consultation-container {
                padding: 0 15px;
            }

            .consultation-banner-content h2 {
                font-size: 2rem;
            }
            .consultation-service-card h3{
                margin-bottom: 0px;
                font-size: 1.5rem;
            }
        }

        /* Small Mobile Responsive Design */
        @media (max-width: 480px) {
             .consultation-services-section {
            padding: 40px 0; /* py-20 */
            background: var(--sand-beige);
        }
             .consultation-hero-content h1{
                 font-size: 2rem;
                    margin-bottom:10px;
                    line-height: 45px;
                    /* line-height: 30px; */
            }  
            .consultation-hero-content1 p{
                font-size: 1.1rem;
            }

            .consultation-cta-button{
                padding: 15px 15px;
            }

             .consultation-islamic-button {
                padding: 15px;
             }
            .consultation-hero-content{
                padding-top: 50px;
            }
            
            
            .consultation-hero-content1 h1{
                 font-size: 2rem;
                    margin-bottom:10px;
                    line-height: 45px;
                    text-align: center;

            }

.consultation-banner-content p{
    font-size: 1.1rem;
}
            .consultation-service-card p {
            color: #555557; /* text-gray-700 */
            line-height:25px; /* leading-8 */
            font-size:1rem; /* text-lg */
        }

.consultation-service-icon {
    width: 100px;
    height: 80px;
    margin: 0;
    background: var(--gold);
    border-radius: 8px;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(200, 184, 138, 0.3);
}
          .consultation-hero-content p {
            font-size: 1.1rem; /* text-lg */
            margin-bottom:20px; /* mb-4 */
            max-width: 600px; /* max-w-xl */
            margin-left: auto;
            margin-right: auto;
            line-height:25px; /* leading-8 */
            color: var(--sand-beige);
        }

        .consultation-islamic-banner{
            padding: 20px 0px;
        }
            .consultation-doctor-section {
                padding: 40px 0;
            }

            .consultation-doctor-image {
                width: 230px !important ;
                height: 200px !important;
                font-size: 40px;
            }

            .consultation-doctor-content h3 {
                font-size: 30px;
           margin-bottom: 10px;

            }

            .consultation-doctor-content .doctor-title {
                font-size:19px;
                font-weight:800;
                padding: 0px;
                margin-bottom:5px;
            }

            .consultation-doctor-content p {
                font-size:19px;
                line-height: 25px;
                padding: 0 5px;
            }

            .consultation-doctor-credentials {
                padding: 27px 20px;
                margin: 0 5px;
            }

            .consultation-doctor-credentials h4 {
                font-size: 28px;
                line-height: 25px;
            }

            .consultation-doctor-credentials li {
                font-size: 19px;
                padding-left: 10px;
                line-height:25px;
            }
                 .consultation-hero-section {
    background: url('/images/150ppi/03\ Mob.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--off-white);
    position: relative;
}
.consultation-section-title{
    font-size: 2rem !important;
}
            .consultation-services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                max-width: 100%;
            }

            .consultation-doctor-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }   

            .consultation-container {
                padding: 0 15px;
            }

            .consultation-banner-content h2 {
                font-size: 2rem ;
            }
            .consultation-service-card h3{
                margin-bottom: 0px;
                font-size: 1.2rem;
            }
        }

        /* Animation for scroll reveal */
        .consultation-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .consultation-fade-in.consultation-visible {
            opacity: 1;
            transform: translateY(0);
        }

       
        


        /* Q/A  */


        .qna-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

      .qna-header {
    height:85vh;
    text-align: center;
    margin-bottom: 40px;

    background-image: url('/images/150ppi/08\ FAQs.png'); /* Replace with your actual path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

/* Overlay */
.qna-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust for darker or lighter overlay */
    z-index: 1;
}

/* Title Styling */
.qna-title {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

        .qna-subtitle {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 30px;
                        z-index:1;

        }

        .qna-ask-button {
            background: var(--gold);
            border: none;
            color: var(--deep-green);
            padding: 12px 30px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index:1;
        }

        .qna-ask-button:hover {
            background: var(--deep-green);
            border: 1px solid var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        /* Search Section */
        .qna-search-section {
            margin-bottom: 30px;
        }

        .qna-search-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e5e5;
            border-radius: 8px;
            font-size: 1rem;
            background: var(--off-white);
            transition: border-color 0.3s ease;
        }

        .qna-search-input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .qna-search-input::placeholder {
            color: #999;
        }

        /* Category Tabs */
        .qna-category-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            border-bottom: 2px solid #e5e5e5;
        }

        .qna-tab {
            background: none;
            border: none;
            padding: 12px 20px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            border-bottom: 3px solid transparent;
            font-weight: 500;
        }

        .qna-tab.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
            font-weight: 600;
        }

        .qna-tab:hover {
            color: white;

        }

        /* Questions List */
        .qna-questions-list {
            background: var(--off-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(15, 61, 46, 0.1);
        }

        .qna-question-item {
            padding: 20px 25px;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .qna-question-item:last-child {
            border-bottom: none;
        }

        .qna-question-item:hover {
            background: var(--sand-beige);
            padding-left: 35px;
        }

        .qna-question-text {
            font-size: 1.05rem;
            color: var(--deep-green);
            font-weight: 500;
            line-height: 1.5;
        }

        .qna-question-item::after {
            content: "→";
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gold);
            font-size: 1.2rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .qna-question-item:hover::after {
            opacity: 1;
        }

        /* Answer Section (Hidden by default) */
        .qna-answer {
            padding: 20px 25px;
            background: #f8f9fa;
            border-top: 1px solid #e5e5e5;
            display: none;
            animation: slideDown 0.3s ease;
        }

        .qna-answer.show {
            display: block;
        }

        .qna-answer-text {
            color: #555;
            line-height: 1.7;
            font-size: 1rem;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading Animation */
        .qna-loading {
            text-align: center;
            padding: 40px;
            color: var(--deep-green);
            display: none;
        }

        .qna-loading.show {
            display: block;
        }

        .qna-spinner {
            width: 40px;
            height: 40px;
            border: 4px solid var(--sand-beige);
            border-top: 4px solid var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .qna-container {
                padding: 20px 15px;
            }
 .qna-header {
    height: 100vh;
    text-align: center;
    margin-bottom: 40px;

    background-image: url('/images/150ppi/08\ Mob.png'); /* Replace with your actual path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-direction: column;
}

            .qna-title {
                font-size: 2.5rem;
            }

            .qna-category-tabs {
                flex-wrap: wrap;
            }

            .qna-question-item {
                padding: 15px 20px;
            }

            .qna-question-item:hover {
                padding-left: 25px;
            }
        }

        /* Fade in animation */
        .qna-fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .qna-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }


        /* contact us  */


          .contact-body {
            color: var(--gold);
            line-height: 1.6;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .contact-navbar {
            background: var(--white);
            box-shadow: 0 2px 20px var(--shadow-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .contact-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-logo {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }

        .contact-nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .contact-nav-links a {
            text-decoration: none;
            color: var(--gold);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .contact-nav-links a:hover,
        .contact-nav-links a.contact-nav-active {
            color: var(--primary-green);
            background: var(--light-gold);
        }

        /* Header */
        .contact-header {
            margin-top: 80px;
            text-align: center;
            padding: 80px 0;
            /* background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%); */
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .contact-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%); */
        }

        .contact-header-content {
            position: relative;
            z-index: 2;
        }

        .contact-main-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 7rem;
            font-weight: 700;
            color:white;
            margin-bottom: 24px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
        }

        .contact-main-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
        }

       
        /* Quick Contact Bar */
        .contact-quick-contact {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }

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

        .contact-quick-contact-item {
            text-align: center;
            padding: 25px;
            background: var(--cream);
            border-radius: 16px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid var(--gold);
        }

        .contact-quick-contact-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--shadow-light);
            background: var(--light-gold);
        }

        .contact-quick-contact-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .contact-quick-contact-title {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .contact-quick-contact-desc {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Contact Form Section */
        .contact-form-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin: 60px 0;
        }

        .contact-form {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }

        .contact-form-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-form-group {
            margin-bottom: 25px;
        }

        .contact-form-label {
            display: block;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 8px;
        }

        .contact-form-input,
        .contact-form-textarea,
        .contact-form-select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--gold);
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: var(--gold);
        }

        .contact-form-input:focus,
        .contact-form-textarea:focus,
        .contact-form-select:focus {
            outline: none;
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
        }

        .contact-form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .contact-submit-btn {
            background: var(--gold);
            color: var(--deep-green);
            border: none;
            padding: 18px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .contact-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px var(--shadow-medium);
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
        }

        /* Contact Info */
        .contact-info {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .contact-info-content {
            position: relative;
            z-index: 2;
        }

        .contact-info-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.2rem;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-info-icon {
            font-size: 2rem;
            margin-top: 5px;
            color: var(--light-gold);
        }

        .contact-info-content-text h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--light-gold);
        }

        .contact-info-content-text p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Services Grid */
        .contact-services-section {
            margin: 80px 0;
        }

        .contact-services-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 3rem;
            color: var(--primary-green);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .contact-services-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
            border-radius: 2px;
        }

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

        .contact-service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
            transition: all 0.3s ease;
        }

        .contact-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px var(--shadow-medium);
            border-color: var(--accent-gold);
        }

        .contact-service-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            display: block;
            color: var(--accent-gold);
        }

        .contact-service-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }

        .contact-service-desc {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Map Section */
        .contact-map-section {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            margin: 60px 0;
            box-shadow: 0 12px 40px var(--shadow-light);
            text-align: center;
        }

        .contact-map-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }

        .contact-map-placeholder {
            background: var(--cream);
            border: 2px dashed var(--accent-gold);
            border-radius: 16px;
            padding: 80px 20px;
            margin: 30px 0;
            color: var(--text-light);
        }

        .contact-map-placeholder h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-green);
        }

        .contact-download-btn {
            background: var(--accent-gold);
            color: var(--primary-green);
            border: none;
            padding: 18px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .contact-download-btn:hover {
            background: var(--light-gold);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-form-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .contact-nav-links {
                display: none;
            }

            .contact-main-title {
                font-size: 3rem;
            }

            .contact-form,
            .contact-info {
                padding: 30px 20px;
            }

            .contact-services-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 480px) {
            .contact-container {
                padding: 0 15px;
            }

            .contact-main-title {
                font-size: 2.5rem;
            }

            .contact-quick-contact-grid {
                grid-template-columns: 1fr;
            }
        }



        /* privcy policy  */
        /* .privacy-body {
            font-family: 'Inter';
            background: var(--cream);
            color: var(--text-dark);
            line-height: 1.7;
        } */

        .privacy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .privacy-navbar {
            background: var(--white);
            box-shadow: 0 2px 20px var(--shadow-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .privacy-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .privacy-logo {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .privacy-nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .privacy-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .privacy-nav-links a:hover,
        .privacy-nav-links a.privacy-nav-active {
            color: var(--primary-green);
            background: var(--light-gold);
        }

        /* Header */
        .privacy-header {
            margin-top: 80px;
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .privacy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .privacy-header-content {
            position: relative;
            z-index: 2;
        }

        .privacy-main-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
        }

        .privacy-main-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
        }

        /* Main Content */
        .privacy-main-content {
            padding: 80px 0;
        }

        /* Table of Contents */
        .privacy-toc-section {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }

        .privacy-toc-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .privacy-toc-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
        }

        .privacy-toc-item {
            background: var(--cream);
            padding: 15px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border-left: 4px solid var(--accent-gold);
        }

        .privacy-toc-item:hover {
            background: var(--light-gold);
            transform: translateX(10px);
        }

        .privacy-toc-item a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
        }

        /* Privacy Sections */
        .privacy-section {
            background: var(--white);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 40px;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }

        .privacy-section-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.2rem;
            color: var(--primary-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 3px solid var(--light-gold);
            padding-bottom: 15px;
        }

        .privacy-section-icon {
            font-size: 2.5rem;
        }

        .privacy-section-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .privacy-section-content ul,
        .privacy-section-content ol {
            margin: 20px 0;
            padding-left: 30px;
        }

        .privacy-section-content li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }

        .privacy-highlight-box {
            background: linear-gradient(135deg, var(--light-gold), #f8f0d6);
            border: 2px solid var(--accent-gold);
            border-radius: 16px;
            padding: 30px;
            margin: 30px 0;
        }

        .privacy-highlight-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .privacy-islamic-principle {
            background: linear-gradient(135deg, var(--cream), var(--light-gold));
            border: none;
            border-left: 5px solid var(--accent-gold);
            padding: 30px;
            margin: 30px 0;
            border-radius: 16px;
            box-shadow: 0 4px 15px var(--shadow-light);
            transition: all 0.3s ease;
        }

        .privacy-islamic-principle:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .privacy-principle-name {
            font-weight: 700;
            color: var(--primary-green);
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .privacy-principle-arabic {
            font-style: italic;
            color: var(--accent-gold);
            margin-bottom: 15px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Contact Section */
        .privacy-contact-section {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
            border-radius: 24px;
            padding: 60px;
            text-align: center;
            margin: 60px 0;
        }

        .privacy-contact-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .privacy-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .privacy-contact-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .privacy-contact-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .privacy-contact-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--light-gold);
        }

        .privacy-contact-value {
            font-size: 1.1rem;
        }

        /* Last Updated */
        .privacy-last-updated {
            background: var(--accent-gold);
            color: var(--primary-green);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            margin-top: 40px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .privacy-nav-links {
                display: none;
            }

            .privacy-main-title {
                font-size: 3rem;
            }

            .privacy-section {
                padding: 30px 20px;
            }

            .privacy-section-title {
                font-size: 1.8rem;
            }

            .privacy-contact-section {
                padding: 40px 20px;
            }

            .privacy-toc-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .privacy-container {
                padding: 0 15px;
            }

            .privacy-main-title {
                font-size: 2.5rem;
            }

            .privacy-section {
                padding: 25px 15px;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        .privacy-toc-item:focus,
        .privacy-nav-links a:focus {
            outline: 2px solid var(--accent-gold);
            outline-offset: 2px;
        }


       */

        /* calender css  */
            .calendar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Navigation */
        .calendar-navbar {
            background: var(--white);
            box-shadow: 0 2px 20px var(--shadow-light);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .calendar-nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .calendar-logo {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-green);
            text-decoration: none;
        }

        .calendar-nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .calendar-nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 8px;
        }

        .calendar-nav-links a:hover,
        .calendar-nav-links a.calendar-nav-active {
            color: var(--primary-green);
            background: var(--light-gold);
        }

        /* Header */
        .calendar-header {
            margin-top: 80px;
            text-align: center;
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .calendar-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .calendar-header-content {
            position: relative;
            z-index: 2;
        }



        .calendar-main-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 24px;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
        }

        .calendar-main-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
        }

        /* Main Content */
        .calendar-main-content {
            padding: 80px 0;
        }

        /* Current Date Display */
        .calendar-current-date-banner {
            background: linear-gradient(135deg, var(--accent-gold), #d4b876);
            color: var(--primary-green);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 50px;
            box-shadow: 0 12px 40px var(--shadow-light);
        }

        .calendar-hijri-date {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .calendar-gregorian-date {
            font-size: 1.2rem;
            opacity: 0.8;
        }

        /* Calendar Grid */
        .calendar-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .calendar-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 12px 40px var(--shadow-light);
            border: 1px solid rgba(201, 169, 110, 0.15);
        }

        .calendar-card-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .calendar-card-icon {
            font-size: 2.5rem;
        }

        /* Prayer Times */
        .calendar-prayer-times-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .calendar-prayer-time-card {
            background: var(--cream);
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .calendar-prayer-time-card:hover {
            border-color: var(--accent-gold);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .calendar-prayer-name {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .calendar-prayer-time {
            font-size: 1.4rem;
            color: var(--accent-gold);
            font-weight: 700;
        }

        .calendar-prayer-arabic {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 5px;
        }

        /* Islamic Events */
        .calendar-events-list {
            list-style: none;
        }

        .calendar-event-item {
            background: var(--cream);
            padding: 25px;
            border-radius: 16px;
            margin-bottom: 20px;
            border-left: 5px solid var(--accent-gold);
            transition: all 0.3s ease;
        }

        .calendar-event-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .calendar-event-date {
            font-weight: 700;
            color: var(--primary-green);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .calendar-event-name {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.3rem;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .calendar-event-description {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Download Section */
        .calendar-download-section {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: var(--white);
            padding: 60px;
            border-radius: 24px;
            text-align: center;
            margin: 60px 0;
        }

        .calendar-download-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .calendar-download-description {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .calendar-download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .calendar-download-btn {
            background: var(--accent-gold);
            color: var(--primary-green);
            border: none;
            padding: 18px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .calendar-download-btn:hover {
            background: var(--light-gold);
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
        }

        /* Islamic Months Overview */
        .calendar-months-overview {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 12px 40px var(--shadow-light);
            margin-top: 40px;
        }

        .calendar-months-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .calendar-month-card {
            background: var(--cream);
            padding: 25px;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .calendar-month-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px var(--shadow-light);
        }

        .calendar-month-card.calendar-current {
            background: var(--light-gold);
            border-color: var(--accent-gold);
        }

        .calendar-month-name {
            font-weight: 600;
            color: var(--primary-green);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .calendar-month-status {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .calendar-month-card.calendar-current .calendar-month-status {
            color: var(--accent-gold);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .calendar-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .calendar-nav-links {
                display: none;
            }

            .calendar-main-title {
                font-size: 3rem;
            }

            .calendar-hijri-date {
                font-size: 2rem;
            }

            .calendar-card {
                padding: 30px 20px;
            }

            .calendar-download-section {
                padding: 40px 20px;
            }

            .calendar-download-buttons {
                flex-direction: column;
                align-items: center;
            }

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

        @media (max-width: 480px) {
            .calendar-container {
                padding: 0 15px;
            }

            .calendar-main-title {
                font-size: 2.5rem;
            }

            .calendar-prayer-times-grid {
                grid-template-columns: 1fr;
            }
        }

/* widget css youtube  */
.yottie-widget-feed-section-search-form-input{
    border: 1px solid white;
    color:white;
    width: 100%;
    border-radius:7px;
}
.yottie-widget-feed-section-search-form {
    position: relative;
    width: 40%;
    margin-bottom: 0;
    height: 50px;
}
.yottie-widget-feed-section-search-form-button-icon {
    display: block;
    height: 22px;
    width: 22px;
    fill: #c8b88a;
    -webkit-transition: fill .5s;
    -o-transition: fill .5s;
    transition: fill .5s;
}
.yottie-widget-feed-section-search-form-button {
    position: absolute;
    right: 10px;
    top:7px;
    padding: 4px 10px 8px;
    width: 12px;
    height: 12px;
    display: inline-block;
    cursor: pointer;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.yottie-widget-feed-section-search-form-input {
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.89);
    outline: 0;
    padding: 6px 11px;
    width: 100%;
    color: #c8b88a;
    line-height: 1;
    font-size: 13px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: 0 0;
    height: 40px;
}
@media (max-width: 480px)  {
#yottie-1 .yottie-widget-feed-section-search-form {
    position: relative;
    width: 100%;
    margin-bottom: 0px;
    height: 50px;
}
}
      
/* consulation page serivces css  */

/* ===========================
          SLIDER STYLES
          =========================== */
  
        /* ===========================
           SLIDER STYLES
           =========================== */
        .offer-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            margin: auto;
            padding: 2rem 0;
            background-color: var(--dark-green);
            color: var(--off-white);
        }

        .main-heading1 {
            margin-bottom: 4rem;
            color: var(--gold);
            position: relative;
            font-size: 2.5rem;
        }
/* 
        .main-heading1::after {
            content: '';
            position: absolute;
            bottom: -1rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--sand-beige));
            border-radius: 2px;
        } */

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            margin-top: 3rem;
        }

        .offer-slider-track {
            display: flex;
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            gap: 2rem;
            padding-bottom: 1rem;
            -webkit-overflow-scrolling: touch;
        }

        /* Hide scrollbar for aesthetic purposes */
        .offer-slider-track::-webkit-scrollbar {
            display: none;
        }
        .offer-slider-track {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .offer-card {
            flex: 0 0 auto;
            width: calc((100% / 3) - (2rem * 2 / 3));
            scroll-snap-align: start;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(200, 184, 138, 0.3);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            color: var(--off-white);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .offer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--sand-beige));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

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

        .offer-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .card-icon {
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

    .offer-card img{
        width:140px;
       }

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

        .card-text {
            font-size: 22px;
            color: var(--off-white);
            transition: color 0.3s ease;
            text-align: center;
             font-family: "Serotiva-Bold";
        }

        .offer-card:hover .card-text {
            color: var(--sand-beige);
        }

        /* Slider Navigation Buttons */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 10px;
            pointer-events: none;
        }

        .slider-btn {
            background: rgba(0, 0, 0, 0.5);
            color: var(--off-white);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .slider-btn:hover {
            background: rgba(0, 0, 0, 0.7);
            transform: scale(1.1);
        }

        .slider-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background: rgba(0, 0, 0, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .offer-card {
                width: calc((100% / 2) - (2rem / 2));
            }
        }

        @media (max-width: 768px) {
            .main-heading1 {
                font-size: 2.5rem;
            }
            .offer-card {
                width: 100%;
                padding: 1.5rem;
            }
            .card-text {
                font-size: 19px;
            }
            .slider-btn {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .main-heading1 {
                font-size: 2rem;
                margin-bottom: 10px;
                padding: 0px 7px;
            }
            .offer-container {
                padding: 1rem 0;
            }
            .offer-slider-track {
                gap: 1rem;
                padding: 0 20px 1rem;
            }
            .offer-card {
                padding: 1.2rem;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .offer-card {
            animation: fadeInUp 0.6s ease forwards;
        }

        .offer-card:nth-child(1) { animation-delay: 0.1s; }
        .offer-card:nth-child(2) { animation-delay: 0.2s; }
        .offer-card:nth-child(3) { animation-delay: 0.3s; }
        .offer-card:nth-child(4) { animation-delay: 0.4s; }
        .offer-card:nth-child(5) { animation-delay: 0.5s; }
        .offer-card:nth-child(6) { animation-delay: 0.6s; }
        .offer-card:nth-child(7) { animation-delay: 0.7s; }
        .offer-card:nth-child(8) { animation-delay: 0.8s; }
        .offer-card:nth-child(9) { animation-delay: 0.9s; }
        .offer-card:nth-child(10) { animation-delay: 1s; }
        .offer-card:nth-child(11) { animation-delay: 1.1s; }
        .offer-card:nth-child(12) { animation-delay: 1.2s; }
        .offer-card:nth-child(13) { animation-delay: 1.3s; }
        .offer-card:nth-child(14) { animation-delay: 1.4s; }
        .offer-card:nth-child(15) { animation-delay: 1.5s; }
        /* usps line  */

           /* Scrolling Section */
        .scroll-section {
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
            background-color: white;
        }

        .scroll-content {
            display: flex;
            width: max-content;
            animation: scroll 40s linear infinite;
        }

        .marquee-track {
            display: flex;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .item {
            display: flex;
            align-items: center;
            padding: 5px 30px;
            margin-right: 40px;
            /* font-weight: bold; */
            color:var(--deep-green);
            font-size:22px;
            white-space: nowrap;
             font-family: "Serotiva-Bold";
        }

        .item img {
            width: 65px;
            height: 65px;
            margin-right: 10px;
        }

        /* shorts css  */

        /* Shorts Section */
.main-shorts {
  padding: 10px 0; /* Equivalent to py-8 md:py-12 lg:py-16 */
  /* background-color: white; */
    margin: auto;

}

.shorts-container {
  width: 100%;
}

/* .section-header {
  font-size: 2rem; 

  color: var(--deep-green);
  text-align: center;
  padding: 0px 0; 
   margin-bottom: 32px; 
} */

.content-slider {
  display: flex;
  gap: 20px; /* Equivalent to gap-5 */
  overflow-x: auto;
  padding-bottom: 16px; /* Equivalent to pb-4 */
  scroll-behavior: smooth;
  justify-content: center; /* Equivalent to justify-center md:justify-start */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.content-slider::-webkit-scrollbar {
  display: none;
}

.media-card {
  flex: 0 0 250px; /* Equivalent to flex-none w-[250px] */
  height: 350px; /* Equivalent to h-[350px] */
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep-green);
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Equivalent to transition-all duration-300 ease-in-out */
}

.media-card:hover {
  /* transform: translateY(-8px); Equivalent to hover:-translate-y-2 */
  box-shadow: 0 10px 20px rgba(15, 61, 46, 0.3); /* Equivalent to hover:shadow-xl hover:shadow-[rgba(15,61,46,0.3)] */
}

.video-frame,
.video-content {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  object-fit: cover; /* For video tag */
  display: block; /* For video tag */
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px; /* Equivalent to p-5 */
  background: linear-gradient(to top, rgba(15, 61, 46, 0.9), transparent); /* Equivalent to bg-gradient-to-t from-[rgba(15,61,46,0.9)] to-transparent */
  color: var(--off-white);
  opacity: 0;
  transform: translateY(20px); /* Equivalent to translate-y-5 */
  transition: all 0.3s ease; /* Equivalent to transition-all duration-300 ease-in-out */
}

.media-card:hover .card-info {
  opacity: 1; /* Equivalent to group-hover:opacity-100 */
  transform: translateY(0); /* Equivalent to group-hover:translate-y-0 */
}

.content-title1 {
  line-height:30px;
  font-size:2.5rem; /* Equivalent to text-base */
  margin-bottom:15px;
  text-align: center;
  /* margin-top:60px; */
}

.content-description {
  line-height:25px;
  font-size:22px; /* Equivalent to text-xs */
}

.slider-navigation {
  display: flex;
  justify-content: center;
  gap: 16px; /* Equivalent to gap-4 */
  margin-top: 32px; /* Equivalent to mt-8 md:mt-12 */
}

.nav-btn {
  width: 40px; /* Equivalent to w-10 */
  height: 40px; /* Equivalent to h-10 */
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--off-white);
  color: var(--deep-green);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* For icon size, though SVG handles it */
  transition: all 0.3s ease; /* Equivalent to transition-all duration-300 */
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--off-white);
  transform: scale(1.1); /* Equivalent to hover:scale-110 */
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px; /* Equivalent to gap-2 */
  margin-top: 16px; /* Equivalent to mt-4 md:mt-5 */
}

.dot-indicator {
  width: 12px; /* Equivalent to w-3 */
  height: 12px; /* Equivalent to h-3 */
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease; /* Equivalent to transition-all duration-300 */
}

.dot-indicator.active {
  opacity: 1; /* Equivalent to opacity-100 */
  transform: scale(1.25); /* Equivalent to scale-125 */
}

/* Responsive Adjustments (based on md: and lg: breakpoints) */
@media (min-width: 768px) {
  /* md breakpoint */
  .main-shorts {
    padding: 48px 0; /* md:py-12 */
  }
  .section-header {
    font-size: 2.5rem; /* md:text-4xl */
     margin-bottom: 48px;
    padding:0px 0px !important;
  }

  .media-card {
    flex: 0 0 313px; /* md:w-[313px] */
    height: 400px; /* md:h-[400px] */
  }
  .content-title {
    font-size: 18px; /* md:text-lg */
  }
  .content-description {
    font-size: 14px; /* md:text-sm */
  }
  .nav-btn {
    width: 48px; /* md:w-12 */
    height: 48px; /* md:h-12 */
  }
  .slider-navigation {
    margin-top: 48px; /* md:mt-12 */
  }
  .slider-indicators {
    margin-top: 20px; /* md:mt-5 */
  }
}

@media (min-width: 1024px) {
  /* lg breakpoint */
  .section-header {
    font-size: 2.5rem; /* lg:text-5xl */
  }
}

        /* Footer Styles - Enhanced Responsive */
        .footer {
            background: var(--deep-green);
            color: var(--cream);
            padding: 3rem 0 0 0;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0;
            margin-bottom: 2rem;
        }

        /* Desktop grid layout */
        @media (min-width: 769px) {
            .footer-top {
                grid-template-columns: 1fr 1fr 1fr 1.2fr;
                gap: 3rem;
            }
        }

        /* Tablet Landscape */
        @media (min-width: 769px) and (max-width: 1023px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            animation: fadeInUp 0.6s ease forwards;
            padding: 20px 0;
            border-bottom: 1px solid rgba(245, 242, 233, 0.1);
        }

        @media (min-width: 769px) {
            .footer-column {
                padding: 0;
                border-bottom: none;
                text-align: left;
            }
        }

        .footer-column:last-child {
            border-bottom: none;
        }

        .footer-column:nth-child(1) {
            animation-delay: 0.1s;
        }
        .footer-column:nth-child(2) {
            animation-delay: 0.2s;
        }
        .footer-column:nth-child(3) {
            animation-delay: 0.3s;
        }
        .footer-column:nth-child(4) {
            animation-delay: 0.4s;
        }

        .footer-column h3 {
            color: var(--gold);
            font-size: 1rem;
            margin-bottom: 0;
            position: relative;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
        }

        @media (min-width: 769px) {
            .footer-column h3 {
                font-size: 20px;
                margin-bottom: 1.5rem;
                text-transform: uppercase;
                letter-spacing: 2px;
                display: block;
                padding: 0;
                cursor: default;
            }
        }

        /* Mobile accordion arrow */
        .footer-column:not(.newsletter) h3::before {
            /* font-family: "Font Awesome 5 Free"; */
            font-weight: 900;
            content: "\f078";
            position: static;
            margin-left: 10px;
            transition: transform 0.3s ease;
            display: block;
            order: 1;
        }

        @media (min-width: 769px) {
            .footer-column:not(.newsletter) h3::before {
                display: none;
            }
        }

        .footer-column.active h3::before {
            transform: rotate(180deg);
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        @media (min-width: 769px) {
            .footer-column ul {
                max-height: none;
                overflow: visible;
            }
        }

        .footer-column.active ul {
            max-height: 500px;
            padding-bottom: 10px;
        }

        .footer-column ul li {
            margin-bottom: 8px;
        }

        .footer-column ul li a {
            color: var(--cream);
            text-decoration: none;
            font-size:18px;
            transition: all 0.3s ease;
            /* opacity: 0.8; */
            display: block;
            padding: 0.2rem 0;
            font-weight: 400;
              font-family: "Serotiva-Regular";
              letter-spacing:1px;
              text-transform: uppercase;

        }

        .footer-column ul li a:hover {
            color: var(--gold);
            opacity: 1;
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .footer-column ul li a:hover {
                transform: none;
            }
        }

        .newsletter {
            background: transparent;
            padding: 30px 0;
            border-radius: 0;
            border: none;
            text-align: center;
        }

        @media (min-width: 769px) {
            .newsletter {
                padding: 0;
                text-align: left;
            }
        }

        .newsletter h3 {
            margin-bottom: 0.5rem;
            padding: 10px 0px;
            color: var(--gold);
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .newsletter p {
            font-size: 18px;
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.4;
            padding: 0px 0px;
            color: var(--cream);
        }

        @media (min-width: 769px) {
            .newsletter p {
                font-size: 18px;
                margin-bottom: 1.5rem;
                padding: 0;
                text-align:start;
            }
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            padding: 0 0px;
        }

        @media (min-width: 769px) {
            .newsletter-form {
                flex-direction: row;
                gap: 0;
                padding: 0;
            }
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid rgba(245, 242, 233, 0.2);
            border-radius: 0;
            background: transparent;
            color: var(--cream);
            font-size: 14px;
            min-width: 0;
        }

        .newsletter-form input::placeholder {
            color: rgba(245, 242, 233, 0.6);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--gold);
        }

        .newsletter-form button {
            padding: 12px 24px;
            background: var(--gold);
            color: var(--deep-green);
            border: 1px solid var(--gold);
            border-radius: 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
            white-space: nowrap;
            min-height: 44px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (min-width: 769px) {
            .newsletter-form button {
                border-left: none;
            }
        }

        .newsletter-form button:hover {
            background: rgba(200, 155, 60, 0.8);
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
            flex-wrap: wrap;
            justify-content:start;
        }

        @media (min-width: 769px) {
            .social-links {
                justify-content: flex-start;
            }
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: transparent;
            border: 1px solid rgba(245, 242, 233, 0.2);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cream);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .social-link img {
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
        }

        .social-link:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--deep-green);
            transform: translateY(-2px);
        }

        /* Fallback for missing social icons */
        .social-link i {
            font-size: 16px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(245, 242, 233, 0.1);
            padding: 2rem 0 1rem 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            opacity: 0.7;
            flex-wrap: wrap;
            gap: 1rem;
            text-align: center;
        }

        @media (min-width: 769px) {
            .footer-bottom {
                flex-direction: row;
                text-align: left;
            }
        }

        .copyright {
            font-size: 18px;
            color: var(--cream);
        }

        .footer-links {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        @media (min-width: 769px) {
            .footer-links {
                gap: 1rem;
                justify-content: flex-start;
            }
        }

        .footer-links a {
            color: var(--cream);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 18px;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.container {
          max-width: 1200px;
          margin: 0 auto;
          padding: 0 20px;
      }
      /* About Section */
      .about-section {
          /* padding: 100px 0; */
          background: linear-gradient(135deg, var(--warm-beige) 0%, #f9f7f0 100%);
          display: flex;
          align-items: center;
          gap: 80px;
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 20px;
          padding-right: 20px;
      }
      .about-content {
          flex: 1;
          padding-right: 40px;
      }
      .section-heading {
          /* font-family: 'Amiri', serif; */
          font-size: 2.3rem;
          font-weight: 700;
          color: var(--primary-green);
          margin-bottom: 10px;
          position: relative;
      }
      .section-heading::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 60px;
          height: 4px;
          background: var(--accent-gold);
          border-radius: 2px;
      }
      .section-paragraph {
          font-size:22px;
          color: var(--text-dark);
          margin-bottom: 25px;
          line-height:25px;
          text-align: justify;
      }
      .about-image-wrapper {
          flex: 1;
          position: relative;
      }
      .about-image {
          width: 100%;
          height: 400px;
          object-fit: cover;
          border-radius: 20px;
          box-shadow: 0 20px 40px var(--shadow);
          transition: transform 0.3s ease;
      }
      .about-image:hover {
          transform: translateY(-10px);
      }
      /* Curriculum Section */
      .curriculum-section {
          padding:50px 0;
          background: var(--white);
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 20px;
          padding-right: 20px;
      }
      .curriculum-heading {
          text-align: center;
          margin-bottom: 60px;
          font-size: 2.8rem;
      }
      .curriculum-grid {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
          gap: 60px;
      }
      .curriculum-item {
          background: var(--warm-beige);
          padding: 40px;
          border-radius: 20px;
          box-shadow: 0 15px 30px var(--shadow);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          position: relative;
          overflow: hidden;
      }
      .curriculum-item::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: var(--gradient);
      }
      .curriculum-item:hover {
          transform: translateY(-10px);
          box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      }
      .curriculum-subtitle {
          /* font-family: 'Amiri', serif; */
          font-size: 27px;
          /* font-weight: 700; */
          color: var(--primary-green);
          margin-bottom: 20px;
      }
      /* Teachers & Venues Section */
      .teachers-venues-section {
          /* padding: 100px 0; */
          background: var(--primary-green);
          color: var(--white);
          display: flex;
          align-items: center;
          gap: 80px;
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 20px;
          padding-right: 20px;
      }
      .teachers-image-wrapper {
          flex: 1;
      }
      .teachers-image {
          width: 100%;
          height: 400px;
          object-fit: cover;
          border-radius: 20px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }
      .teachers-content {
          flex: 1;
          padding-left: 40px;
      }
      .section-heading-white {
          /* font-family: 'Amiri', serif; */
          font-size: 2.5rem;
          color: var(--white);
          margin-bottom:25px;
          position: relative;
      }
      .section-heading-white::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 60px;
          height: 4px;
          background: var(--accent-gold);
          border-radius: 2px;
      }
      .section-paragraph-white {
          font-size:22px;
          color: rgba(255, 255, 255, 0.9);
          margin-bottom: 25px;
          line-height:25px;
          text-align: justify;
      }
      /* Community Section */
      .community-section {
          padding: 100px 0;
          background: linear-gradient(135deg, var(--warm-beige) 0%, #f9f7f0 100%);
          text-align: center;
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 20px;
          padding-right: 20px;
      }
      .section-heading-center-green {
          /* font-family: 'Amiri', serif; */
          font-size: 2.8rem;
          font-weight: 700;
          color: var(--primary-green);
          margin-bottom: 40px;
          position: relative;
      }
      .section-heading-center-green::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 60px;
          height: 4px;
          background: var(--accent-gold);
          border-radius: 2px;
      }
      .community-description {
          font-size: 1.2rem;
          max-width: 800px;
          margin: 0 auto;
          line-height: 1.8;
      }
      /* Calendar & Downloads Section */
      .calendar-downloads-section {
          padding: 100px 0;
          background: var(--white);
          max-width: 1200px;
          margin: 0 auto;
          padding-left: 20px;
          padding-right: 20px;
      }
      .section-heading-center-green-alt { /* Renamed from maktab-section-heading3 */
          /* font-family: 'Amiri', serif; */
          font-size: 2.5rem;
          font-weight: 700;
          color: var(--primary-green);
          margin-bottom:20px;
          text-align: center;
          position: relative;
      }
      .section-heading-center-green-alt::after {
          content: '';
          position: absolute;
          bottom: -10px;
          left: 50%;
          transform: translateX(-50%);
          width: 60px;
          height: 4px;
          background: var(--accent-gold);
          border-radius: 2px;
      }
      .calendar-description {
          text-align: center;
          font-size:22px;
          margin-bottom:30px;
          max-width: 700px;
          margin-left: auto;
          margin-right: auto;
      }
      .calendar-content {
          display: flex;
          align-items: center;
          gap: 60px;
      }
      .calendar-image-wrapper {
          flex: 1;
      }
      .calendar-image {
          width: 100%;
          height: 700px;
          object-fit: cover;
          border-radius: 20px;
          box-shadow: 0 20px 40px var(--shadow);
      }
      .calendar-download-area {
          flex: 1;
          text-align: center;
          background: var(--warm-beige);
          padding: 50px 40px;
          border-radius: 20px;
          box-shadow: 0 15px 30px var(--shadow);
      }
      .calendar-download-title {
          /* font-family: 'Amiri', serif; */
          font-size: 1.8rem;
          font-weight: 700;
          color: var(--primary-green);
          margin-bottom: 20px;
      }
      .calendar-download-text {
          font-size:20px;
          color: var(--text-light);
          margin-bottom: 30px;
      }
      .button {
          display: inline-block;
          padding: 15px 35px;
          background: var(--gradient);
          color: var(--white);
          text-decoration: none;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.1rem;
          transition: all 0.3s ease;
          box-shadow: 0 10px 20px rgba(45, 90, 39, 0.3);
          border: 1px solid var(--gold);
      }
      .button:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 30px rgba(45, 90, 39, 0.4);
      }
      /* Rules & Regulations Section */
        /* Rules & Regulations Section */
        .rules-regulations-section {
            padding: 100px 0;
            background: var(--secondary-green);
            color: var(--white);
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
            border-radius: 15px;
        }

        .section-heading-center-white {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 30px;
            position: relative;
            font-weight: 600;
        }

        .section-heading-center-white::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        .rules-description {
            font-size: 22px;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            text-align: center;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
        }

        .main-images-rules {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
        }

        .rules-image-wrapper {
            flex: 1;
            max-width: 550px;
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .rules-image-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .rules-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        .rules-image-wrapper:hover .rules-image {
            transform: scale(1.05);
        }

        /* PDF Download Button */
        /* .pdf-download-container {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        } */

        /* .pdf-download-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--accent-gold);
            color: var(--secondary-green);
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(200, 184, 138, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 30px;
            margin-top:20px;
        } */

        /* .pdf-download-btn:hover {
            background: #d4c99a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(200, 184, 138, 0.4);
        }

        .pdf-download-btn:active {
            transform: translateY(-1px);
        } */

        /* .pdf-icon {
            width: 24px;
            height: 24px;
            fill: currentColor;
        } */

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            /* .rules-regulations-section {
                padding: 60px 15px;
            } */

            .section-heading-center-white {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }
/* 
            .rules-description {
                font-size: 18px;
                margin-bottom: 30px;
            } */

            /* .main-images-rules {
                flex-direction: column;
                gap: 25px;
                margin-bottom: 40px;
            } */
/* 
            .rules-image {
                height: 300px;
                object-fit: contain;
            } */
/* 
            .pdf-download-container {
                flex-direction: column;
                gap: 15px;
                margin-top: 30px;
            } */

            /* .pdf-download-btn {
                padding: 12px 25px;
                font-size: 16px;
                width: 100%;
                max-width: 300px;
                justify-content: center;
            } */
        }

        @media (max-width: 480px) {
            .section-heading-center-white {
                font-size: 1.8rem;
            }

            /* .rules-description {
                font-size: 16px;
                padding: 0 10px;
            } */
/* 
            .rules-image {
                height: 250px;
                border-radius: 15px;
            } */

            /* .rules-image-wrapper {
                border-radius: 15px;
            } */

            /* .pdf-download-btn {
                padding: 10px 20px;
                font-size: 14px;
            } */

            /* .pdf-icon {
                width: 20px;
                height: 20px;
            } */
        }

        /* Additional Enhancement - Image Labels */
        .image-label {
            position: absolute;
            bottom:96px;
            left: 15px;
            right: 15px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        /* Loading Animation for Images */
        .rules-image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: translateX(-100%);
            animation: shimmer 1.5s infinite;
            z-index: 1;
        }

        @keyframes shimmer {
            100% {
                transform: translateX(100%);
            }
        }
      /* Responsive Design */
      @media (max-width: 768px) {
          .about-section,
          .teachers-venues-section,
          .calendar-content {
              flex-direction: column;
              gap: 40px;
              text-align: center;
          }
          .about-content,
          .teachers-content {

              padding: 0 20px;
              justify-content: center;
          }
          .curriculum-grid {
              grid-template-columns: 1fr;
              gap:0px;
          }
          .curriculum-item {
              padding: 30px;
          }
           .curriculum-subtitle {
          /* font-family: 'Amiri', serif; */
          font-size: 25px;
          /* font-weight: 700; */
          color: var(--primary-green);
          margin-bottom: 20px;
          text-align: center;
      }
          .section-heading,
          .section-heading-white,
          .section-heading-center-green,
          .section-heading-center-green-alt,
          .section-heading-center-white {
              font-size: 2rem;
              padding: 20px 20px;
          }
          .curriculum-heading {
              font-size: 2rem;
              margin-bottom:10px;
              padding: 0px 10px;
          }
          .about-section,
          .curriculum-section,
          .teachers-venues-section,
          .community-section,
          .calendar-downloads-section,
          .rules-regulations-section {
              padding: 0px 0;
          }
          .section-paragraph-white {
          font-size:19px;
          color: rgba(255, 255, 255, 0.9);
          margin-bottom:10px;
          line-height:25px;
          text-align:center;
      }
      }
      @media (max-width: 480px) {
        .section-heading,
          .section-heading-white,
          .section-heading-center-green,
          .section-heading-center-green-alt,
          .section-heading-center-white {
              font-size: 2rem;
              padding: 20px 20px;
          }
       .main-images-rules {
    flex-direction:column;
    justify-content: space-between;
    padding:0px 20px;

}
 .rules-image-wrapper {
          max-width:400px;
          margin: 0 auto;
          object-fit:cover;
      }
        .section-header{
            padding:20px 0px;
        }
          .curriculum-grid {
              grid-template-columns: 1fr;
          }
          .curriculum-item {
              padding: 25px;
          }
          .calendar-download-area {
              padding: 30px 25px;
          }
          .about-image{
              height:230px;
          }
          .teachers-image {
              height:290px;
          }
          .calendar-image {
              height:490px;
          }
          .rules-image {
              height:300px;
              object-fit: contain;
          }
      }
      /* Animation for scroll effects */
      @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
      }
      .curriculum-item {
          animation: fadeInUp 0.6s ease-out;
      }
      .curriculum-item:nth-child(2) {
          animation-delay: 0.2s;
      }


        .sacred-journey-container {
            display: flex;
            min-height: 70vh;
            position: relative;
            max-width: 1200px;
            margin: auto;

        }

        .makkah-content-wrapper {
            flex: 1;
            padding: 0px 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .holy-video-frame {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(15, 61, 46, 0.2);
            margin-bottom: 40px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .holy-video-frame:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(15, 61, 46, 0.35);
        }

        .kaaba-video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--deep-green), #1a5940, #25704f);
            position: relative;
            overflow: hidden;
        }

        .sacred-kaaba-silhouette {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 100px;
            background: rgba(0,0,0,0.4);
            border-radius: 10px;
            opacity: 0.7;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .masjid-architecture-base {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            height: 60px;
            background: rgba(15, 61, 46, 0.8);
            border-radius: 5px 5px 20px 20px;
        }

        .minaret-tower {
            position: absolute;
            width: 8px;
            background: var(--deep-green);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .minaret-tower:nth-child(1) { 
            left: 10px; 
            bottom: 60px; 
            height: 80px;
        }
        .minaret-tower:nth-child(2) { 
            left: 30px; 
            bottom: 75px; 
            height: 95px;
        }
        .minaret-tower:nth-child(3) { 
            right: 30px; 
            bottom: 75px; 
            height: 95px;
        }
        .minaret-tower:nth-child(4) { 
            right: 10px; 
            bottom: 60px; 
            height: 80px;
        }

        .islamic-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(247, 239, 229, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 2px solid var(--gold);
        }

        .islamic-play-button:hover {
            background: var(--off-white);
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(200, 184, 138, 0.4);
        }

        .play-triangle-icon {
            width: 0;
            height: 0;
            border-left: 20px solid var(--deep-green);
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 4px;
        }

        .makkah-experience-title {
            font-size:2rem;
            color: white;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: revealeTextUpward 1s ease forwards 0.5s;
            position: relative;
        }

        .makkah-experience-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), #b5a373);
            border-radius: 2px;
            animation: goldLineExpansion 1.5s ease forwards 1.5s;
        }

        .spiritual-journey-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: white;
            max-width: 450px;
            opacity: 0;
            transform: translateY(30px);
            animation: revealeTextUpward 1s ease forwards 1s;
            margin-bottom: 30px;
        }

        .sacred-explore-button {
            padding: 15px 35px;
            background: linear-gradient(135deg, var(--gold), #b5a373);
            color: var(--deep-green);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            max-width: 200px;
            opacity: 0;
            transform: translateY(30px);
            animation: revealeTextUpward 1s ease forwards 1.5s;
            position: relative;
            overflow: hidden;
        }

        .sacred-explore-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .sacred-explore-button:hover::before {
            left: 100%;
        }

        .sacred-explore-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(200, 184, 138, 0.4);
        }

        .arabia-map-section {
            width: 30%;
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, var(--sand-beige) 0%, var(--off-white) 100%);
            overflow: hidden;
        }

        .saudi-arabia-map-container {
            width: 100%;
            height: 100%;
            position: relative;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><defs><pattern id="mapGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23c8b88a" stroke-width="0.3" opacity="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23mapGrid)"/></svg>') center/cover;
        }

        .kingdom-saudi-outline {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 220px;
            background: rgba(200, 184, 138, 0.1);
            border: 3px solid var(--gold);
            transition: all 0.3s ease;
            clip-path: polygon(
                15% 10%, 25% 5%, 40% 8%, 60% 12%, 75% 15%, 85% 20%, 
                90% 30%, 92% 45%, 88% 60%, 85% 70%, 80% 80%, 70% 85%, 
                50% 88%, 30% 85%, 15% 80%, 8% 70%, 5% 60%, 8% 45%, 
                10% 30%, 12% 20%
            );
        }

        .kingdom-saudi-outline:hover {
            background: rgba(200, 184, 138, 0.2);
            transform: translate(-50%, -50%) scale(1.05);
            border-color: #b5a373;
        }

        .holy-city-location-pin {
            position: absolute;
            width: 35px;
            height: 45px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .makkah-sacred-pin {
            top: 58%;
            left: 32%;
            animation: holyBounceAnimation 2s infinite;
        }

        .medina-blessed-pin {
            top: 42%;
            left: 28%;
            animation: holyBounceAnimation 2s infinite 0.5s;
        }

        .holy-city-location-pin:hover {
            transform: scale(1.2);
        }

        .islamic-pin-marker {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--deep-green), #1a5940);
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            position: relative;
            box-shadow: 0 8px 20px rgba(15, 61, 46, 0.4);
            border: 2px solid var(--gold);
        }

        .sacred-pin-center {
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 14px;
            height: 14px;
            background: var(--off-white);
            border-radius: 50%;
            border: 2px solid var(--gold);
        }

        .holy-city-name-label {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--deep-green);
            color: var(--off-white);
            padding: 8px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease;
            border: 1px solid var(--gold);
        }

        .holy-city-location-pin:hover .holy-city-name-label {
            opacity: 1;
        }

        .kingdom-country-label {
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--deep-green);
            opacity: 0;
            animation: fadeInGently 1s ease forwards 2s;
            text-shadow: 2px 2px 4px rgba(200, 184, 138, 0.3);
        }

        .islamic-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .crescent-star-float {
            position: absolute;
            color: var(--gold);
            font-size: 1.8rem;
            opacity: 0.6;
            animation: celestialFloat 6s ease-in-out infinite;
        }

        .crescent1 { top: 18%; left: 12%; animation-delay: 0s; }
        .crescent2 { top: 25%; left: 78%; animation-delay: 2s; }
        .crescent3 { top: 75%; left: 15%; animation-delay: 4s; }
        .crescent4 { top: 65%; left: 82%; animation-delay: 1s; }

        .sacred-info-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 61, 46, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .sacred-info-modal.modal-active-state {
            opacity: 1;
            visibility: visible;
        }

        .modal-content-wrapper {
            background: var(--off-white);
            padding: 45px;
            border-radius: 25px;
            max-width: 550px;
            text-align: center;
            transform: scale(0.7);
            transition: transform 0.3s ease;
            border: 3px solid var(--gold);
            box-shadow: 0 25px 50px rgba(15, 61, 46, 0.3);
        }

        .sacred-info-modal.modal-active-state .modal-content-wrapper {
            transform: scale(1);
        }

        .modal-close-button {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: var(--deep-green);
            transition: color 0.3s ease;
        }

        .modal-close-button:hover {
            color: var(--gold);
        }

        .compass-rose-decoration {
            position: absolute;
            top: 15%;
            right: 15%;
            width: 60px;
            height: 60px;
            opacity: 0.3;
            color: var(--gold);
            animation: slowRotation 20s linear infinite;
        }

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

        @keyframes goldLineExpansion {
            to {
                width: 150px;
            }
        }

        @keyframes fadeInGently {
            to {
                opacity: 1;
            }
        }

        @keyframes holyBounceAnimation {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-12px);
            }
            60% {
                transform: translateY(-6px);
            }
        }

        @keyframes celestialFloat {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-25px) rotate(180deg);
            }
        }

        @keyframes slowRotation {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @media (max-width: 768px) {
            .sacred-journey-container {
                flex-direction: column;
                min-height: auto;
            }

            .makkah-content-wrapper {
                padding: 30px;
                min-height: auto;
            }

            .makkah-experience-title {
                font-size: 2.5rem;
            }

            .holy-video-frame {
                max-width: 100%;
                height: 250px;
            }

            .arabia-map-section {
                min-height: 400px;
                flex: none;
                height: 400px;
            }

            .saudi-arabia-map-container {
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .kingdom-saudi-outline {
                width: 280px;
                height: 180px;
                position: relative;
                top: auto;
                left: auto;
                transform: none;
            }

            .makkah-sacred-pin {
                top: 58%;
                left: 32%;
            }

            .medina-blessed-pin {
                top: 42%;
                left: 28%;
            }

            .kingdom-country-label {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 1.4rem;
            }

            .compass-rose-decoration {
                top: 20px;
                right: 60%;
                width: 40px;
                height: 40px;
            }

            .holy-city-location-pin {
                width: 30px;
                height: 38px;
            }

            .sacred-pin-center {
                width: 12px;
                height: 12px;
                top: 6px;
            }

            .holy-city-name-label {
                font-size: 0.8rem;
                padding: 6px 10px;
                top: -35px;
            }

            .crescent-star-float {
                font-size: 1.4rem;
            }

            .modal-content-wrapper {
                margin: 20px;
                padding: 30px;
                max-width: calc(100vw - 40px);
            }
        }

        @media (max-width: 480px) {

            .consultation-doctor-credentials li:before {
    content: "✓";
    position: absolute;
    left: -2px;
    color: var(--deep-green);
    font-weight: bold;
}
            .makkah-content-wrapper {
                padding: 20px;
            }

            .makkah-experience-title {
                font-size: 2rem;
            }

            .spiritual-journey-description {
                font-size: 1.1rem;
            }

            .arabia-map-section {
                min-height: 350px;
                height: 350px;
            }

            .kingdom-saudi-outline {
                width: 240px;
                height: 150px;
            }

            .kingdom-country-label {
                font-size: 1.2rem;
                right: 15px;
            }

            .holy-video-frame {
                height: 200px;
            }

            .modal-content-wrapper {
                padding: 25px;
            }

            .modal-content-wrapper div[style*="grid-template-columns"] {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }
        }

        .holy-video-frame {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 320px;
  margin: 0 auto;
  background-color: #000; /* fallback */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.kaaba-video-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/your-placeholder-image.jpg') center center / cover no-repeat;
  z-index: 1;
}

.islamic-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.islamic-play-button:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-triangle-icon {
  width: 0;
  height: 0;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}


/* Lectures section videos  */

        /* .islamic-wisdom-hub {
            max-width: 800px;
            width: 90%;
            text-align: center;
            padding: 40px 0px;
            margin: auto;
        }

        .sacred-knowledge-title {
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .enlightenment-tagline {
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 60px;
            font-style: italic;
        }

        .spiritual-media-frame {
            position: relative;
            background: rgba(0, 0, 0, 0.6);
            border-radius: 8px;
            padding: 0;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

        .video-display-area {
            position: relative;
            width: 100%;
            height: 380px;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

        .video-overlay.playing {
            opacity: 0;
            pointer-events: none;
        }

        .divine-play-trigger {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .divine-play-trigger:hover {
            background: white;
            transform: scale(1.05);
        }

        .divine-play-trigger::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid #333;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
            margin-left: 3px;
        }

        .simple-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(0, 0, 0, 0.7);
            padding: 8px 15px;
            height: 45px;
        }

        .left-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .simple-play-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.1rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 3px;
            transition: background 0.2s ease;
        }

        .simple-play-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .time-display {
            color: white;
            font-size: 0.85rem;
            font-family: monospace;
            min-width: 35px;
        }

        .right-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .volume-btn, .speed-btn, .fullscreen-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1rem;
            cursor: pointer;
            padding: 5px;
            border-radius: 3px;
            transition: background 0.2s ease;
            opacity: 0.8;
        }

        .volume-btn:hover, .speed-btn:hover, .fullscreen-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            opacity: 1;
        }

        .speed-btn {
            font-size: 0.8rem;
            min-width: 25px;
            text-align: center;
        }

        .playback-progress-section {
            margin-bottom: 20px;
        }

        .progress-bar-container {
            position: relative;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            margin: 15px 0;
            cursor: pointer;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            border-radius: 3px;
            width: 0%;
            transition: width 0.3s ease;
            position: relative;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .progress-bar-container:hover .progress-bar-fill::after {
            opacity: 1;
        }

        .time-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
        }

        .main-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .main-play-btn {
            width: 55px;
            height: 55px;
            background: linear-gradient(145deg, #22c55e, #16a34a);
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1.4rem;
        }

        .main-play-btn:hover {
            background: linear-gradient(145deg, #16a34a, #15803d);
            transform: scale(1.05);
        }

        .secondary-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .volume-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .volume-fill {
            height: 100%;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            border-radius: 2px;
            width: 100%;
            transition: width 0.3s ease;
        }

        .settings-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .speed-selector {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 50px;
            text-align: center;
        }

        .speed-selector:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .quality-btn, .fullscreen-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

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

        .playback-progress-section {
            margin-bottom: 20px;
        } */

        .progress-bar-container {
            position: relative;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            margin: 15px 0;
            cursor: pointer;
            overflow: hidden;
        }

        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            border-radius: 3px;
            width: 0%;
            transition: width 0.3s ease;
            position: relative;
        }

        .progress-bar-fill::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            background: #22c55e;
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .progress-bar-container:hover .progress-bar-fill::after {
            opacity: 1;
        }

        .time-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 15px;
        }

        .main-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 25px;
            margin-bottom: 20px;
        }

        .control-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .control-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .main-play-btn {
            width: 55px;
            height: 55px;
            background: linear-gradient(145deg, #22c55e, #16a34a);
            border: 2px solid rgba(255, 255, 255, 0.3);
            font-size: 1.4rem;
        }

        .main-play-btn:hover {
            background: linear-gradient(145deg, #16a34a, #15803d);
            transform: scale(1.05);
        }

        .secondary-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .volume-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .volume-slider {
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            position: relative;
            cursor: pointer;
        }

        .volume-fill {
            height: 100%;
            background: linear-gradient(90deg, #22c55e, #16a34a);
            border-radius: 2px;
            width: 100%;
            transition: width 0.3s ease;
        }

        .settings-group {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .speed-selector {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 50px;
            text-align: center;
        }

        .speed-selector:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .quality-btn, .fullscreen-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

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

        .sacred-sermon-heading {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 400;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .spiritual-insight-summary {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .knowledge-gateway-btn {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.6);
            color: white;
            padding: 12px 30px;
            font-size: 0.9rem;
            letter-spacing: 1px;
            cursor: pointer;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-weight: 500;
        }

        .knowledge-gateway-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .sacred-knowledge-title {
                font-size: 2.2rem;
                letter-spacing: 2px;
            }
            
            .sacred-sermon-heading {
                font-size: 1.5rem;
            }
            
            /* .spiritual-media-frame {
                padding: 20px;
            } */
            
            .main-controls {
                gap: 15px;
            }
            
            .control-btn {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .main-play-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .secondary-controls {
                flex-direction: column;
                gap: 15px;
                align-items: stretch;
            }
            
            .volume-section {
                justify-content: center;
            }
            
            .settings-group {
                justify-content: center;
            }
            
            .divine-play-trigger {
                width: 60px;
                height: 60px;
            }
            
            .divine-play-trigger::after {
                border-left: 18px solid #1a4a3a;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }
        }

        .wisdom-active {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

.iq-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 60px 0px;
  align-items: flex-start;
  margin: auto;
}
.iq-left-section {
  flex: 1;
  max-width: 1200px;
}
.iq-header {
  margin-bottom: 30px;
}
.iq-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 10px;
  line-height: 1.2;
}
.iq-author {
  font-size: 1.1rem;
  color: white;
  font-weight: 400;
}
.iq-share-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.iq-share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background-color: #e8dcc0;
  border: none;
  border-radius: 8px;
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.iq-share-btn:hover {
  background-color: #ddd0b3;
  transform: translateY(-1px);
}
.iq-blog-highlights h3 {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 15px;
  font-weight: 500;
}
.iq-highlight-buttons {
  display: flex;
  gap: 12px;
}
.iq-highlight-btn {
  width: 50px;
  height: 50px;
  background-color: #e8dcc0;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
}
.iq-highlight-btn:hover {
  background-color: #ddd0b3;
  transform: translateY(-1px);
}
.iq-quote-card {
  flex: 1;
  background-color: #e8dcc0;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.iq-quote-mark {
  font-size: 4rem;
  color: #2c2c2c;
  /* font-family: Georgia, serif; */
  line-height: 1;
  margin-bottom: 20px;
}
.iq-quote-content {
  margin-bottom: 30px;
}
.iq-quote-text {
  font-size: 1.4rem;
  color: #2c2c2c;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.iq-quote-source {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  text-align: right;
}
.iq-social-share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.iq-social-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: #2c2c2c;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.iq-social-btn:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}
.iq-instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.iq-share-main-btn {
  background-color: #2c5530;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: auto;
}
.iq-share-main-btn:hover {
  background-color: #1e3a22;
  transform: translateY(-1px);
}
.iq-toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: #2c2c2c;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}
.iq-toast.iq-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .iq-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .iq-left-section {
    max-width: 100%;
    text-align: center;
  }
  .iq-title {
    font-size: 2rem;
  }
  .iq-quote-card {
    max-width: 100%;
    padding: 30px;
  }
  .iq-quote-text {
    font-size: 1.2rem;
  }
  .iq-share-buttons {
    justify-content: center;
  }
  .iq-highlight-buttons {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .iq-quote-card {
    padding: 25px;
  }
  .iq-quote-text {
    font-size: 1.1rem;
  }
  .iq-title {
    font-size: 1.8rem;
  }
}




/* youtube ziayat  */
 .ziayarat-gallery-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .ziayarat-main-wrapper {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .ziayarat-header-section {
            text-align: center;
            margin-bottom: 60px;
        }

        .ziayarat-main-title {
            font-size:48px;
            font-weight: 800;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .ziayarat-subtitle {
            font-size:22px;
            color: #b8d4c2;
            /* font-weight: 300; */
            letter-spacing: 1px;
        }

        .ziayarat-divider-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f4d03f);
            margin: 20px auto;
            border-radius: 2px;
        }

        .ziayarat-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .ziayarat-video-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .ziayarat-video-slide {
            min-width: calc(33.333% - 20px);
            margin: 0 10px;
            border-radius: 15px;
            padding: 25px 10px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .ziayarat-video-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .ziayarat-video-slide:hover::before {
            opacity: 1;
        }

        .ziayarat-video-slide:hover {
            transform: translateY(-10px);
        }

        .ziayarat-video-iframe {
            width: 100%;
            height: 250px;
            border: none;
            border-radius: 12px;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .ziayarat-video-iframe:hover {
            transform: scale(1.02);
        }

        .ziayarat-video-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .ziayarat-video-description {
            font-size: 0.95rem;
            color: #b8d4c2;
            text-align: center;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .ziayarat-video-duration {
            display: inline-block;
            background: rgba(212,175,55,0.2);
            color: #f4d03f;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            border: 1px solid rgba(212,175,55,0.3);
        }

        .ziayarat-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.2);
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            z-index: 10;
        }

        .ziayarat-nav-button:hover {
            background: rgba(212,175,55,0.3);
            border-color: rgba(212,175,55,0.5);
            transform: translateY(-50%) scale(1.1);
        }

        .ziayarat-nav-prev {
            left: 20px;
        }

        .ziayarat-nav-next {
            right: 20px;
        }

        .ziayarat-progress-indicators {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 12px;
        }

        .ziayarat-progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ziayarat-progress-dot.zv-active {
            background: linear-gradient(45deg, #d4af37, #f4d03f);
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .ziayarat-main-title {
                font-size: 2.5rem;
            }

            .ziayarat-video-slide {
                min-width: calc(100% - 20px);
            }

            .ziayarat-nav-button {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .ziayarat-nav-prev {
                left: 10px;
            }

            .ziayarat-nav-next {
                right: 10px;
            }
        }

        @media (max-width: 1024px) and (min-width: 769px) {
            .ziayarat-video-slide {
                min-width: calc(50% - 20px);
            }
        }
        .banner-wrapper4 { 
    height: 80vh;
    background-image: url('https://i.ibb.co/BHK5gBck/06-ziyarat-1920x500.png');
    background-size: cover;   /* keeps it responsive */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;       /* centers text horizontally */
    color: #fff;              /* make sure text is visible */
    padding: 0 15px;          /* responsive padding */
}

/* Dark overlay */
.banner-overlay4 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 59, 10, 0.55);
    z-index: 1;  /* sits behind content */
}

/* Content on top */
.ziyarat-title {
    position: relative;
    z-index: 2;   /* sits above overlay */
    font-size: 3rem;
    font-weight: 700;
}

/* 📱 Tablet */
@media (max-width: 768px) {
    .banner-wrapper4 {
        height: 50vh;
        background-size: cover;
    }
    .ziyarat-title {
        font-size: 2rem;
    }
}

/* 📱 Mobile */
@media (max-width: 480px) {
    .banner-wrapper4 {
        height: 40vh;
    }
    .ziyarat-title {
        font-size: 1.5rem;
    }
}
  @media (max-width: 480px) {
        /* .main-container {
                padding: 0 10px;
            } */
.banner-wrapper3 {
        height: 60vh;
    }
        .banner-text {
          padding: 10px;
          margin-top: 20px;
        }

        .banner-text h1 {
          font-size: clamp(2rem, 5vw, 1.8rem);
        }

        .banner-text h3 {
          font-size: clamp(0.9rem, 3.5vw, 1rem);
        }

        .banner-text h4 {
          font-size: clamp(0.7rem, 2.5vw, 0.9rem);
        }
        .section-heading {
          padding: 0px;
        }
        .teachers-image {
          margin: 20px auto 0px;
        }

        .curriculum-section {
          margin: 0;
        }
        .section-heading-center-green-alt{
            margin: 20px auto;
        }
        .calendar-description{
            margin-bottom: 50px;
        }

        .primary-btn,
        .download-button,
        .pdf-download-btn,
        .newsletter-form button {
          font-size: clamp(0.8rem, 2.5vw, 0.9rem);
          padding: 10px;
        }

        .rules-regulations-section {
          padding: 0px 5px;
          margin: 50px auto;
        }

        .rules-description {
          font-size: clamp(0.8rem, 2vw, 1.1rem);
          margin: 0 auto 30px;
          padding: 0px 20px;
        }

        .rules-image-wrapper {
          max-width: 85%;
          padding: 0;
        }

        .pdf-download-btn {
          padding: clamp(4px, 1.5vw, 8px) clamp(8px, 2.5vw, 15px);
          font-size: clamp(0.7rem, 2vw, 0.9rem);
        }
      }