/* Reset basic styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #0b1d17;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Main Header Styling */
.main-header {
  background: linear-gradient(135deg, #012b1b 0%, #033c26 50%, #022316 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  border-bottom: 2px solid #dfb66d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-height: 90px;
  position: relative;
}

/* =========================
LOGO
========================= */

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .sub-title {
  color: #dfb66d;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.logo-text .main-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 1px 0;
}

.logo-text .tagline {
  color: #dfb66d;
  font-size: 12px;
  font-style: italic;
}

/* =========================
NAVIGATION
========================= */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-item {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-item:hover {
  color: #dfb66d;
}

/* ACTIVE MENU */

.nav-item.active {
  color: #dfb66d;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 2px solid #dfb66d;
}

/* =========================
RIGHT ACTIONS
========================= */

.actions-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* WhatsApp */

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}

.whatsapp-btn i {
  color: #25d366;
  font-size: 22px;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
}

.phone-number {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.support-label {
  color: #a0a0a0;
  font-size: 10px;
}

/* Button */

.book-btn {
  background: #dfb66d;
  color: #012b1b;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  transition: 0.3s;
}

.book-btn:hover {
  background: #c9a25b;
}

/* =========================
MENU TOGGLE
========================= */

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* =========================
TABLET
========================= */

@media (max-width: 1100px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-item {
    font-size: 13px;
  }
}

/* =========================
MOBILE
========================= */

@media (max-width: 768px) {
  .main-header {
    padding: 12px 15px;
    min-height: auto;
  }

  /* Logo */

  .logo-container {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .logo-icon svg {
    width: 38px;
    height: 38px;
  }

  .logo-text .sub-title {
    font-size: 8px;
  }

  .logo-text .main-title {
    font-size: 20px;
    line-height: 1;
  }

  .logo-text .tagline {
    font-size: 9px;
  }

  /* Hamburger */

  .menu-toggle {
    display: block;
  }

  /* Hide Desktop Buttons */

  .actions-container {
    display: none;
  }

  /* Mobile Menu */

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    background: #012b1b;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    overflow: hidden;
    max-height: 0;

    transition: 0.4s ease;

    z-index: 999;
  }

  /* OPEN MENU */

  .nav-menu.active {
    max-height: 500px;
    padding: 10px 0;
  }

  .nav-item {
    width: 100%;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* ACTIVE */

  .nav-item.active {
    border-bottom: none;
    border-left: 3px solid #dfb66d;
    background: rgba(223, 182, 109, 0.08);
  }
}

.whatsappcss {
  color: #25d366;
  font-size: 22px;
}

/* =========================
SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .logo-text .main-title {
    font-size: 17px;
  }

  .logo-text .sub-title {
    font-size: 7px;
  }

  .logo-text .tagline {
    font-size: 8px;
  }

  .logo-icon svg {
    width: 34px;
    height: 34px;
  }
}

/* hero section */
.hero-section {
  /* यहाँ अपनी खाली बैनर इमेज का नाम डालें (उदा. banner.jpg) */
  background: url("/images/banner1.png") no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 60px 0 30px 0; /* Bottom padding to avoid overlaying features bar */
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Left Content Area */
.hero-content {
  max-width: 550px; /* Restricts text to left dark area */
  color: #ffffff;
  z-index: 2;
  margin-bottom: 4rem;
}

.arabic-text {
  color: #dfb66d;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: Arial, serif;
}

.sub-heading {
  color: #dfb66d;
  font-size: 24px;
  /* font-style: italic; */
  font-family: "Arial", serif;
  display: block;
}

.main-heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  margin: 5px 0 20px 0;
  font-family: "Arial", Times, serif;
}
.main-heading span {
  color: #fff;
  font-weight: 700;
  font-size: 52px;
}


.services-highlight {
  color: #dfb66d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.description {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .cta-buttons {
  }
}

/* Button 1: Book Your Service (Solid Golden) */
.btn-book {
  background: #dfb66d;
  color: #012b1b;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.btn-book:hover {
  background: #c9a25b;
}

/* Button 2: View Services (Transparent with Border) */
.btn-view {
  background: transparent;
  color: #dfb66d;
  border: 1px solid #dfb66d;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-view:hover {
  background: rgba(223, 182, 109, 0.1);
}

/* Button 3: WhatsApp Us (Deep Green Outline) */
.btn-whatsapp {
  background: rgba(1, 43, 27, 0.4);
  color: #25d366;
  border: 1px solid #034f32;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
}

/* 3. Bottom Features Bar Styling */
.features-bar {
  /* position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), 1200px);
  min-height: 130px;
  background: rgba(1, 35, 22, 0.4);
  border: 1px solid rgba(223, 182, 109, 0.2);
  border-radius: 8px;
  padding: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  backdrop-filter: blur(3px);
  box-sizing: border-box; */
  display:none;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
}

/* Distinct border separator except for last item */
.feature-item:not(:last-child) {
  border-right: 1px solid rgba(223, 182, 109, 0.15);
}

.feature-icon i {
  color: #dfb66d;
  font-size: 24px;
}

.feature-text h3 {
  font-size: 14px;
  font-weight: 600;
  color: #dfb66d;
}

.feature-text p {
  font-size: 12px;
  color: #b3b3b3;
  margin-top: 2px;
}

/* Responsive Styles for Tablet and Mobile */
/* =========================================
MOBILE HERO SECTION
SAME AS REFERENCE DESIGN
========================================= */

@media (max-width: 576px) {
  .hero-section {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
      url("/images/mob3.png");

    /* background-position: center top; */
    background-repeat: no-repeat;
    background-size: cover;
   

    min-height: auto;

    position: relative;

    display: flex;
    align-items: flex-start;

    overflow: visible;

    padding: 20px 0 25px;
  }

  .container {
    width: 100%;

    padding: 0 12px;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    min-height: auto;
    height: auto;
  }

  /* =========================
    HERO CONTENT
    ========================= */

  .hero-content {
    max-width: 100%;

    width: 100%;

    z-index: 2;
  }

  /* Arabic Text */

  .arabic-text {
    font-size: 13px;

    line-height: 1.3;

    color: #dfb66d;

    margin-bottom: 10px;

    font-style: italic;
  }

  /* Online Khidmat */

  .sub-heading {
    display: block;

    color: #dfb66d;

    font-size: 18px;

   

    margin-bottom: 8px;
  }

  /* Main Heading */

  .main-heading {
    font-size: 14px;

    line-height: 1.02;

    color: #ffffff;

    margin-bottom: 12px;
    margin-top: 15px;

    font-weight: 700;

    letter-spacing: 0.5px;
  }

  /* Services Text */

  .services-highlight {
    color: #dfb66d;

    font-size: 16px;

    line-height: 1.45;

    font-weight: 600;

    margin-bottom: 16px;
  }

  /* Description */

  .description {
    color: #f5f5f5;

    font-size: 12px;

    line-height: 1.8;

    max-width: 95%;

    margin-bottom: 0;
  }

  /* =========================
    BUTTONS AREA
    ========================= */

  .cta-buttons {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin-top: 310px;
  }

  /* BOOK BUTTON */

  .btn-book {
    grid-column: span 2;

    width: 100%;

    justify-content: center;

    background: #f0d99a;

    color: #012b1b;

    padding: 15px 18px;

    border-radius: 8px;

    font-size: 16px;

    font-weight: 700;

    border: none;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }

  .btn-book i {
    display: none;
  }

  /* VIEW BUTTON */

  .btn-view {
    width: 100%;

    justify-content: center;

    padding: 13px 12px;

    border-radius: 8px;

    border: 1px solid #dfb66d;

    background: rgba(0, 0, 0, 0.25);

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;
  }

  .btn-view i {
    color: #dfb66d;

    font-size: 12px;
  }

  /* WHATSAPP BUTTON */

  .btn-whatsapp {
    width: 100%;

    justify-content: center;

    padding: 13px 12px;

    border-radius: 8px;

    border: 1px solid #1c7b46;

    background: rgba(1, 43, 27, 0.55);

    color: #ffffff;

    font-size: 13px;

    font-weight: 500;
  }

  .btn-whatsapp i {
    color: #25d366;

    font-size: 16px;
  }

  /* =========================
    FEATURES BAR
    ========================= */

  /* .features-bar{

        position:relative;

        left:0;
        right:0;
        bottom:0;

        width:100%;

        margin-top:18px;

        padding:0;

        background:#324d3c54;

        border:none;

        backdrop-filter:none;

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:14px;
    } */

  /* Feature Item */

  .feature-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 10px 5px;

    border: none;

    gap: 8px;
  }

  .feature-item:not(:last-child) {
    border-right: none;
  }

  /* Feature Icon */

  .feature-icon {
    width: 42px;
    height: 42px;

    border: 1px solid rgba(223, 182, 109, 0.35);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.25);
  }

  .feature-icon i {
    color: #dfb66d;

    font-size: 16px;
  }

  /* Feature Text */

  .feature-text h3 {
    color: #dfb66d;

    font-size: 11px;

    line-height: 1.4;

    margin-bottom: 3px;
  }

  .feature-text p {
    color: #ffffff;

    font-size: 10px;

    line-height: 1.4;
  }
}

/* info section2 */

/* ==========================================================================
   AJMER SHARIF - UNIQUE NOTICE SECTION STYLING (Prefix: as-note-)
   ========================================================================== */

/* Outer Wrapper for background spacing */
.as-note-section-container {
  width: 100%;
  padding: 30px 20px;
  background-color: #fcfbfa; /* Light off-white background as per image */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Rounded Box with Subtle Border */
.as-note-main-box {
  width: 100%;
  max-width: 1300px;
  background: #ffffff;
  border: 1px solid #ebdcb9; /* Light golden/beige border */
  border-radius: 12px;
  padding: 20px;
  
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  margin-left: 0 auto;
  
}

/* Left Image Styling */
.as-note-image-wrapper {
  flex-shrink: 0;
  width: 400px;
  height: 210px;
  border-radius: 8px;
  overflow: hidden;
}
.as-note-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center -50px;
}
.as-note-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Center Content & Headings */
.as-note-content-center {
  flex-grow: 1;
  align-self: center;
}

.as-note-main-heading {
  font-family: "Arial", "Times New Roman", serif;
  color: #111111;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

/* 2-Column Grid for Features */
.as-note-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 15px;
  column-gap: 40px;
}

.as-note-grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Green Shield/Circle Icon Style */
.as-note-icon-circle i {
  color: #1b4d3e; /* Deep green icon color */
  font-size: 16px;
  display: block;
}

.as-note-item-text {
  font-family: Arial, sans-serif;
  color: #444444;
  font-size: 14px;
  font-weight: 500;
}

/* Right Side Quote Box Styling */
.as-note-quote-container {
  flex-shrink: 0;
  width: 260px;
}

.as-note-quote-box {
  border: 1px solid #e3d2ad;
  border-radius: 8px;
  padding: 20px 25px;
  position: relative;
  background-color: #fffdf9;
  text-align: center;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;

}

.as-note-quote-text {
  font-family: "Arial", serif;
  font-size: 14px;
  color: #222222;
  line-height: 1.5;
  font-weight: 500;
}

/* Decorative Quote Icon on Top-Right */
.as-note-quote-icon {
  position: absolute;
  top: -5px;
  right: 15px;
  font-family: "Arial", serif;
  font-size: 45px;
  color: #dfb66d;
  line-height: 1;
  opacity: 0.7;
}
.as-note-quote-icon {
  position: absolute;
  top: -5px;
  right: 15px;
  font-family: "Arial", serif;
  font-size: 45px;
  color: #dfb66d;
  line-height: 1;
  opacity: 0.7;
}

/* Responsive Handling for Mobile Screens */
@media (max-width: 992px) {
  .as-note-main-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .as-note-image-wrapper {
    width: 220px;
    height: 130px;
  }

  .as-note-features-grid {
    grid-template-columns: 1fr;
    /* justify-items: center; */
    row-gap: 12px;
  }

  .as-note-grid-item {
    justify-content: flex-start;
    width: 100%;
    max-width: 280px;
  }

  .as-note-quote-container {
    width: 100%;
    max-width: 320px;
  }
  .as-note-main-heading {
    font-size: 22px;
    text-align: start;
  }
  .as-note-image-wrapper {
    margin: 0px;
    padding: 0px;
    width: 100%;
  }
}

/* element.style {
    left: 0;
    display: inline-block;
    width: 45px;
    transform: rotate(180deg);
    height: 20px;
} */

/* choiseplan section */

/* ==========================================================================
   AJMER SHARIF - UNIQUE SERVICES SECTION (Prefix: as-srv-)
   ========================================================================== */

/* Outer Section Background */
.as-srv-section {
  background-color: #fcfaf5; /* Image exact creamish-white background */
  padding: 60px 20px;
  width: 100%;
}

.as-srv-container {
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  margin-left: 0 auto;
}

/* Header Text Styling */
.as-srv-header {
  text-align: center;
  margin-bottom: 50px;
}

.as-srv-top-tag {
  color: #c59b27; /* Muted Gold */
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.as-srv-main-title {
  font-family: "Arial", "Times New Roman", serif;
  color: #0b1a13; /* Very dark green/black */
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.as-srv-subtitle {
  color: #555555;
  font-size: 15px;
}

/* Responsive Grid Layout */
.as-srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Service Card Design */
.as-srv-card {
  background: #ffffff;
  border: 1px solid #ebdcb9; /* Inner beige border border */
  border-radius: 12px;
  overflow: visible; /* Allows badge circle to clip nicely */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

/* Image Container with Floating Badge */
.as-srv-image-box {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: visible; /* Essential for floating icon overlay */
  margin-bottom: 30px; /* Space for the overlapping badge */
}

.as-srv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1px;
  transition: 0.5s;
}
.as-srv-img:hover {
  transform: scale(1.05);
}

/* Circular Green Icon Badge overlapping image */
.as-srv-icon-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #012b1b, #03442b);
  border: 2px solid #dfb66d; /* Golden ring border */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.as-srv-icon-badge i {
  color: #dfb66d;
  font-size: 20px;
}

/* Text Content Area inside Card */
.as-srv-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.as-srv-card-title {
  font-family: "Arial", serif;
  font-size: 18px;
  color: #111111;
  margin-bottom: 10px;
  font-weight: bold;
}

.as-srv-card-desc {
  font-size: 13px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 15px;
  min-height: 40px; /* Aligns description height */
}

/* Bullet Points Container */
.as-srv-list {
  list-style: none;
  text-align: center;
  margin-bottom: 25px;
  padding-left: 5px;
  flex-grow: 1; /* Pushes button to bottom evenly */
}

.as-srv-list li {
  font-size: 12.5px;
  color: #444444;
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* Small bullet design mimicking image */
.as-srv-list li::before {
  content: " ";
  color: #333333;
  font-size: 14px;
  /* position: absolute; */
  left: 0px; 
  
  top: -2px;
}

/* Dark Green Button Styling */
.as-srv-btn {
  background: #012b1b;
  color: #dfb66d;
  text-decoration: none;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  border-radius: 4px;
  display: block;
  width: 100%;
  transition: background 0.3s;
  border: 1px solid transparent;
}

.as-srv-btn:hover {
  background: #03442b;
  color: #ffffff;
}

/* Responsive Breakpoints for Tablet & Mobile Screens */
@media (max-width: 1024px) {
  .as-srv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .as-srv-grid {
    grid-template-columns: 1fr;
  }
  .as-srv-main-title {
    font-size: 26px;
  }
}

/* ==========================================================================
   AJMER SHARIF - UNIQUE HOW IT WORKS SECTION (Prefix: as-hiw-)
   ========================================================================== */

/* Main Section Wrapper */
.as-hiw-section {
  background-color: #fcfaf5; /* Creamish white background matching the layout */
  padding: 60px 20px;
  width: 100%;
}

.as-hiw-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Text Styling */
.as-hiw-header {
  text-align: center;
  margin-bottom: 60px;
}

.as-hiw-top-tag {
  color: #c59b27;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 6px;
}

.as-hiw-main-title {
  font-family: "Arial", "Times New Roman", serif;
  color: #0b1a13;
  font-size: 32px;
  font-weight: 600;
}

/* Elegant Center Divider Line */
.as-hiw-divider {
  width: 60px;
  height: 1px;
  background-color: #dfb66d;
  margin: 15px auto 0 auto;
  position: relative;
}

.as-hiw-divider::before {
  content: "◆";
  color: #dfb66d;
  font-size: 10px;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #fcfaf5;
  padding: 0 4px;
}

/* Steps Outer Flex Container */
.as-hiw-steps-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0 40px;
}

/* Central Horizontal Dotted Connecting Line */
.as-hiw-connecting-line {
  position: absolute;
  top: 50px; /* Aligns exactly with the vertical center of the circles */
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dotted #dfb66d;
  z-index: 1;
}

/* Individual Step Block */
.as-hiw-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 22%;
  z-index: 2; /* Sits above the dotted line */
}

/* Floating Circular Badge Box */
.as-hiw-circle-box {
  position: relative;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border: 1px solid #ebdcb9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  margin-bottom: 25px;
}

/* Icon Design */
.as-hiw-icon-wrap i {
  color: #012b1b; /* Deep green icon color */
  font-size: 80px;
}

/* Step Number Label inside/below the Ring */
.as-hiw-step-number {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border: 1px solid #ebdcb9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step Content Details */
.as-hiw-content {
  padding: 0 5px;
}

.as-hiw-step-title {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #111111;
  margin-bottom: 8px;
}

.as-hiw-step-desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

/* Responsive Styles for Tablets and Small Mobile Screens */
@media (max-width: 992px) {
  .as-hiw-steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0;
  }

  .as-hiw-step-item {
    width: 100%;
    max-width: 300px;
  }

  /* Converts horizontal dotted line to a vertical dotted line on mobile */
  .as-hiw-connecting-line {
    top: 50px;
    bottom: 50px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    border-top: none;
    border-left: 2px dotted #dfb66d;
  }
}
/* f$q section */
/* ==========================================================================
   AJMER SHARIF - UNIQUE FAQ SECTION WITH ACCORDION (Prefix: as-faq-)
   ========================================================================== */

/* Main Section with Background Banner Image Setup */
.as-faq-section {
  /* यहाँ अपनी फ़ाइल के अनुसार इमेज का नाम बदलें (उदा. faq-banner.jpg) */
   background: url("images/ChatGPT Image Jun 3, 2026, 01_27_16 PM.png")
    no-repeat center top;

  background-size: cover; /* Puri image dikhegi */
  padding: 60px 15px;
  width: 100%;
  color: #fff;
}

.as-faq-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Headings Group */
.as-faq-header {
  text-align: center;
  margin-bottom: 45px;
}

.as-faq-top-tag {
  color: #dfb66d; /* Golden color label text */
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
}

.as-faq-main-title {
  font-family: "Arial", "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
}

/* Tiny Golden Divider Ornament Line */
.as-faq-title-divider {
  width: 40px;
  height: 1px;
  background-color: #dfb66d;
  margin: 12px auto 0 auto;
  position: relative;
}

.as-faq-title-divider::before {
  content: "◆";
  color: #dfb66d;
  font-size: 8px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Main Layout Grid Row */
.as-faq-layout-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Left Spacer (Preserves space for your lantern on the banner image) */
.as-faq-left-space {
  width: 25%;
  flex-shrink: 0;
}

/* Center Column: Questions Accordion Accordion Block */
.as-faq-accordion-block {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Individual Accordion Item Row Container */
.as-faq-item {
  background-color: rgba(
    1,
    35,
    22,
    0.4
  ); /* Dark semi-transparent green fill matching image overlay */
  border: 1px solid rgba(223, 182, 109, 0.25); /* Thin transparent golden border line */
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.as-faq-item:hover {
  border-color: rgba(223, 182, 109, 0.5);
  background-color: rgba(1, 35, 22, 0.6);
}

/* Active Open Accordion State styling */
.as-faq-item.as-faq-active {
  border-color: #dfb66d;
  background-color: rgba(1, 35, 22, 0.7);
}

/* Interactive Accordion Clickable Header Button Trigger */
.as-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: #ffffff;
}

.as-faq-q-text {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Little icon decoration color modifier */
.as-faq-icon-gold {
  color: #dfb66d;
  font-size: 14px;
}

/* Toggle +/- Indicator Text Element */
.as-faq-toggle-icon {
  font-size: 18px;
  color: #dfb66d;
  font-weight: bold;
  margin-left: 10px;
}

/* Expandable Answer Wrapper Container Panel */
.as-faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* JavaScript handles height calculation directly */
  padding: 0 20px;
}

/* Answer Paragraph Styling inside Panel */
.as-faq-a-text {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.6;
  padding-bottom: 14px;
  border-top: 1px solid rgba(223, 182, 109, 0.1);
  padding-top: 10px;
}

/* Right Sidebar Box Element Container Column */
.as-faq-sidebar-box {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}

.as-faq-sidebar-desc {
  font-size: 14px;
  color: #eeeeee;
  line-height: 1.5;
  margin: 15px -20px 20px 0;
}

/* Solid Creamish White View All CTA Link Button Style */
.as-faq-view-all-btn {
  background-color: #fff4db; /* Light cream beige solid block color */
  color: #0b1a13;
  text-decoration: none;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: bold;
  border-radius: 4px;
  width: 100%;
  max-width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.as-faq-view-all-btn:hover {
  background-color: #fcebd2;
}

/* Responsive Scaling Breakpoint Controls for Mobile Devices */
@media (max-width: 1024px) {
  .as-faq-layout-row {
    flex-direction: column;
    align-items: stretch;
  }
  .as-faq-left-space {
    display: none;
  }
  .as-faq-accordion-block {
    width: 100%;
  }
  .as-faq-sidebar-box {
    width: 100%;
    margin-top: 4px;
    border-top: 1px solid rgba(223, 182, 109, 0.1);
    padding-top: 30px;
  }
}
/* proofsections */
/* ==========================================================================
   AJMER SHARIF - UNIQUE PROOF SECTION (Prefix: as-proof-)
   ========================================================================== */

/* Outer Section Layout with Creamish Background */
.as-proof-section {
  background-color: #fcfaf5; /* Exact cream/beige shade from the layout */
  padding: 60px 20px;
  width: 100%;
}

.as-proof-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Header Headings Group */
.as-proof-header {
  text-align: center;
  margin-bottom: 40px;
}

.as-proof-top-tag {
  color: #c59b27;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 5px;
}

.as-proof-main-title {
  font-family: "Arial", "Times New Roman", serif;
  color: #0b1a13;
  font-size: 32px;
  font-weight: 600;
}

/* Centered Ornament Style Divider */
.as-proof-title-divider {
  width: 40px;
  height: 1px;
  background-color: #dfb66d;
  margin: 12px auto 0 auto;
  position: relative;
}

.as-proof-title-divider::before {
  content: "◆";
  color: #dfb66d;
  font-size: 8px;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive 5-Column Grid */
.as-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* Card Styling with Inner Beige Border */
.as-proof-card {
  background: #ffffff;
  border: 1px solid #ebdcb9; /* Thin soft golden frame */
  border-radius: 3px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

/* Image Wrapper Box */
.as-proof-image-box {
  width: 100%;
  height: 320px; /* Uniform height for thumbnails */
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 12px;
}

.as-proof-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.as-proof-img:hover {
  transform: scale(1.05);
}
/* Small Card Caption Title underneath image */
.as-proof-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #222222;
  margin-top: auto; /* Aligns title to bottom area evenly */
  padding-bottom: 2px;
}

/* Bottom Center View More Button Layout */
.as-proof-actions {
  display: flex;
  justify-content: center;
}

.as-proof-more-btn {
  background-color: transparent;
  color: #222222;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 30px;
  border: 1px solid #ebdcb9;
  border-radius: 4px;
  background-color: #fffdf9;
  transition: all 0.3s ease;
}

.as-proof-more-btn:hover {
  background-color: #dfb66d;
  color: #012b1b;
  border-color: #dfb66d;
}

/* Responsive Grid Adaptation For Devices */
@media (max-width: 1100px) {
  .as-proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
}

@media (max-width: 768px) {
  .as-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
 
  .as-proof-main-title {
    font-size: 26px;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .as-proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   AJMER SHARIF - UNIQUE WORLDWIDE FEATURES BAR (Prefix: as-wwd-)
   ========================================================================== */

/* Main Section with Background Image Setup */
.as-wwd-section {
  /* यहाँ अपनी डार्क ग्रीन वर्ल्ड मैप वाली बैकग्राउंड इमेज का नाम डालें */
  background: url("/images/map.png") no-repeat center center;
  
  padding: 35px 20px;
  width: 100%;
  background-position: center -20px;
background-size: cover;
  min-height: 280px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(223, 182, 109, 0.2);
  border-bottom: 1px solid rgba(223, 182, 109, 0.2);
}

.as-wwd-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Section Content Area */
.as-wwd-left-content {
  width: 65%; /* Restricts layout to keep text on left side */
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Top Small Golden Tagline */
.as-wwd-top-tag {
  color: #dfb66d; /* Exact Golden Color from Image */
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: Arial, sans-serif;
}

/* 4-Column Horizontal Layout for Features */
.as-wwd-features-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* Individual Feature Flex Block */
.as-wwd-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  border: 1px solid rgb(223, 182, 109);
  padding: 10px;
  min-height: 80px;
  border-radius: 6px;
}

/* Circular Golden Icon Wrapper Box */
.as-wwd-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Custom Line-Art Styling for Icons */
.as-wwd-icon-box i {
  color: #dfb66d; /* Golden Line color matching image vectors */
  font-size: 26px;
  stroke-width: 1px;
}

/* Text Container Styling */
.as-wwd-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.as-wwd-item-title {
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.3;
  font-family: sans-serif;
}

.as-wwd-item-desc {
  color: #a0b2a6; /* Soft grayish-green subtitle shade */
  font-size: 11px;
  font-weight: 400;
}

/* Right Blank Area to avoid overlapping text on the glowing world map lights */
.as-wwd-right-map-space {
  width: 30%;
  flex-shrink: 0;
}

/* Responsive Handling for Tablets and Mobiles */
@media (max-width: 1024px) {
  .as-wwd-container {
    flex-direction: column;
  }
  .as-wwd-left-content {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .as-wwd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 15px;
    width: 100%;
    margin-top: 10px;
  }
  .as-wwd-feature-item {
    justify-content: center;
    text-align: left;
  }
  .as-wwd-right-map-space {
    display: none;
  }
}

@media (max-width: 576px) {
  .as-wwd-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .as-wwd-feature-item {
    justify-content: flex-start;
    max-width: 260px;
    min-width: 100%;
    margin: 0 auto;
  }
}

/* donatesection */
/* ==========================================================================
   AJMER SHARIF - UNIQUE SUPPORT LANGAR SECTION (Prefix: as-slk-)
   ========================================================================== */

/* Outer Wrapping Layout Area */
.as-slk-section-container {
  width: 100%;
  padding: 25px 20px;
  background-color: #fcfbfa; /* Light off-white container background */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Box Design with Soft Frame & Pattern Spacer */
.as-slk-main-box {
  width: 100%;
  max-width: 1300px;
  min-height: 200px;
  background: #fffdf9; /* Soft cream solid background color */
  border: 1px solid #ebdcb9; /* Light golden beige inner outline */
  border-radius: 12px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 4px 15px rgba(223, 182, 109, 0.05);
  position: relative;
  overflow: hidden;
}

/* Optional Background Overlay for Left Pattern Vector (Simulated using CSS) */
.as-slk-main-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(223, 182, 109, 0.06) 1px,
    transparent 1px
  );
  background-size: 8px 8px;
  opacity: 0.7;
  pointer-events: none;
}

/* Left Column: Heading Layout Text Area */
.as-slk-text-block {
  flex: 1;
  max-width: 550px;
  z-index: 2;
}

.as-slk-main-heading {
  font-family: "Arial", "Times New Roman", serif;
  color: #0b1a13; /* Very dark rich green/black tone */
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.as-slk-sub-text {
  font-family: "Arial", sans-serif;
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
}

/* Right Column: CTA Buttons Container Flex */
.as-slk-buttons-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2;
}

/* ==================== BUTTON 1: DONATE NOW ==================== */
.as-slk-btn-donate {
  background-color: #012b1b; /* Solid Dark Islamic Green */
  color: #dfb66d; /* Golden Text Color */
  text-decoration: none;
  height: 50px;
  padding: 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
}

.as-slk-btn-donate:hover {
  background-color: #03442b;
}

.as-slk-btn-donate svg {
  display: block;
}

/* ==================== BUTTON 2: SPONSOR DEG ==================== */
.as-slk-btn-sponsor {
  background-color: transparent;
  color: #8c6a23; /* Muted Dark Gold Text */
  border: 1px solid #c59b27; /* Thin Golden Border Outline */
  text-decoration: none;
  height: 50px;
  padding: 0 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.as-slk-btn-sponsor:hover {
  background-color: rgba(223, 182, 109, 0.08);
  color: #012b1b;
  border-color: #012b1b;
}

.as-slk-btn-sponsor i {
  font-size: 16px;
  color: #8c6a23;
}

/* Responsive Adaptive Styling Breaks for Mobiles and Small Layouts */
@media (max-width: 992px) {
  .as-slk-main-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .as-slk-text-block {
    max-width: 100%;
  }

  .as-slk-buttons-block {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .as-slk-btn-donate,
  .as-slk-btn-sponsor {
    width: 100%;
  }
  .as-wwd-top-tag {
    font-size: 10px;
  }
}

/* footer section css */
/* ==========================================================================
   AJMER SHARIF - UNIQUE PREMIUM FOOTER (Prefix: as-ftr-)
   ========================================================================== */

/* Main Footer Container with Image Base Overlay */
.as-ftr-section {
  /* यहाँ अपनी गुंबद वाली डार्क ग्रीन फुटर बैकग्राउंड इमेज का पाथ डालें */
  background:
    linear-gradient(rgba(1, 35, 22, 0.6), rgba(1, 35, 22, 0.85)),
    url("/images/footerimg.png") no-repeat center right;
  background-size: cover;
  padding: 60px 0 0 0;
  width: 100%;
  min-height: 400px;
  color: #ffffff;
  border-top: 2px solid #dfb66d; /* Golden Top Border Header Line */
}

.as-ftr-container {
  max-width: 1280px;

  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* Base Flexible Column Setup */
.as-ftr-col {
  flex: 1;
}

/* Column 1: Wide Layout for Branding text */
.as-ftr-col-about {
  flex: 2;
  max-width: 320px;
}

.as-ftr-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.as-ftr-logo-text {
  display: flex;
  flex-direction: column;
}

.as-ftr-logo-sub {
  color: #dfb66d;
  font-size: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.as-ftr-logo-main {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 1px 0;
  font-family: "Arial", Times, serif;
}

.as-ftr-logo-tag {
  color: #dfb66d;
  font-size: 11px;
  font-style: italic;
}

.as-ftr-about-desc {
  color: #a0b2a6; /* Soft green-tint grey text */
  font-size: 12.5px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Circular Social Icons Strip */
.as-ftr-social-icons {
  display: flex;
  gap: 12px;
}

.as-ftr-social-icons a {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(223, 182, 109, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.as-ftr-social-icons a i {
  color: #dfb66d;
  font-size: 14px;
}

.as-ftr-social-icons a:hover {
  background-color: #dfb66d;
  border-color: #dfb66d;
}

.as-ftr-social-icons a:hover i {
  color: #012b1b;
}

/* Menu Column Headers Typography */
.as-ftr-col-title {
  color: #dfb66d; /* Golden Headers */
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: sans-serif;
}

/* Link Menu Lists with Chevron Symbol Prefix Markers */
.as-ftr-links-list {
  list-style: none;
}

.as-ftr-links-list li {
  margin-bottom: 12px;
}

.as-ftr-links-list li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
}

/* Injecting the soft ">" angle bracket in front of links exactly like the image */
.as-ftr-links-list li a::before {
  content: "›";
  color: #a0b2a6;
  font-size: 16px;
  margin-right: 8px;
  line-height: 1;
}

.as-ftr-links-list li a:hover {
  color: #dfb66d;
}

/* Column 4: Contact Row Alignment Info blocks */
.as-ftr-col-contact {
  flex: 1.5;
}

.as-ftr-contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.as-ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.as-ftr-contact-icon i {
  color: #dfb66d;
  font-size: 16px;
  margin-top: 3px;
}

.as-ftr-contact-text {
  display: flex;
  flex-direction: column;
}

.as-ftr-label {
  color: #a0b2a6;
  font-size: 11px;
}

.as-ftr-value {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  margin-top: 2px;
  word-break: break-all;
  transition: color 0.3s;
}

.as-ftr-value:hover {
  color: #dfb66d;
}

/* Column 5: Working Clock Hours layout text block */
.as-ftr-col-hours {
  max-width: 200px;
}

.as-ftr-hours-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.as-ftr-hours-icon i {
  color: #dfb66d;
  font-size: 16px;
  margin-top: 2px;
}

.as-ftr-hours-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.as-ftr-days {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.as-ftr-time {
  color: #a0b2a6;
  font-size: 12px;
}

.as-ftr-hours-note {
  color: #a0b2a6;
  font-size: 12.5px;
  line-height: 1.5;
}
@media (max-width: 749px) {
  .as-ftr-hours-note {
    display: none;
  }
 
}

/* Bottom Full-Width Copyright Strip Bar */
.as-ftr-bottom-bar {
  width: 100%;
  border-top: 1px solid rgba(223, 182, 109, 0.1);
  margin-top: 50px;
  padding: 20px 20px;
  text-align: center;
}

.as-ftr-bottom-bar p {
  color: #a0b2a6;
  font-size: 12px;
  letter-spacing: 0.3px;
}

/* Responsive Adaptive Column Scaling Breakpoints */
@media (max-width: 1024px) {
  .as-ftr-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .as-ftr-col-about {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .as-ftr-section {
    background-position: bottom center;
    padding-top: 40px;
  }
  .as-ftr-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }
  .as-ftr-col-hours {
    max-width: 100%;
  }
}

/* contact form section css */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b1d17 0%, #0a2818 100%);
  border-top: 1px solid #dfb66d;
}

.contact-container {
  max-width: 1200px;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .main-header {
    padding: 10px 24px;
  }

  /* Reduce the horizontal offset of the features bar so it doesn't overflow */
  /* .features-bar {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 18px auto;
    padding: 18px 20px;
    grid-template-columns: repeat(3, 1fr);
    min-height: auto;
    width: auto;
  } */

  .hero-content {
    max-width: 480px;
  }
}

@media (max-width: 768px) {
  /* .features-bar {
    width: 100%;
    padding: 12px;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;
  } */

  .feature-item {
    /* background: rgba(0, 40, 30, 0.75); */
    border: 1px solid rgba(255, 193, 7, 0.2);

    border-radius: 18px;

    padding: 20px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    min-height: 120px;

    backdrop-filter: blur(8px);
  }

  .feature-icon {
    width: 55px;
    height: 55px;

    border: 2px solid #d4a84f;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 14px;
  }

  .feature-icon i {
    color: #d4a84f;
    font-size: 24px;
  }

  .feature-text h3 {
    color: #d4a84f;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .feature-text p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  /* Narrower container padding for small tablets and large phones */
  .container {
    padding: 0 16px;
  }

  .main-header {
    padding: 10px 12px;
    align-items: center;
  }

  /* Make the features bar flow with document on smaller screens */
  /* .features-bar { */
    /* position: relative; */
    /* left: auto; */
    /* right: auto;
    bottom: auto;
    margin-top: 18px;
    padding: 14px;
    grid-template-columns: repeat(2, 1fr);
    width: auto; */
    /* margin-left: 130px; */
  /* } */

  /* MOBILE FEATURES SECTION */

  .hero-section {
    padding: 20px 0 30px;
    min-height: auto;
    text-align: center;
  
  }

  .hero-content {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: flex-start;
  }
}

.contact-image-wrapper,
.contact-form-wrapper {
  min-width: 0;
  width: 100%;
}

.contact-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  height: 400px;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.5);
  color: #dfb66d;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #dfb66d;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid #dfb66d;
  backdrop-filter: blur(10px);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-title {
  color: #dfb66d;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-subtitle {
  color: #ccc;
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #dfb66d;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #dfb66d;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(223, 182, 109, 0.3);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input option {
  background-color: #012b1b;
  color: #fff;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #dfb66d 0%, #e5c787 100%);
  color: #012b1b;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(223, 182, 109, 0.4);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-message {
  display: block;
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4cb050;
  border: 1px solid #4cb050;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid #f44336;
}
.contact-container {
  padding: 15px;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-image-wrapper {
    height: 280px;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .contact-form-title {
    font-size: 24px;
  }
}

@media (max-width: 700px) {
  .contact-image-wrapper {
    height: 220px;
  }

  .contact-form-wrapper {
    padding: 22px;
  }

  .contact-form-title {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .contact-form-section {
    padding: 40px 12px;
  }

  .contact-image-wrapper {
    height: 200px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .form-input,
  .form-submit-btn {
    font-size: 14px;
  }

  .form-label {
    font-size: 13px;
  }

  .contact-image-overlay {
    font-size: 16px;
    padding: 12px 18px;
  }
}



/* galry cxss */

.gallery {
  padding: 60px 8%;
  background: #fcfaf5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  /* border-radius: 12px; */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.big {
  grid-row: span 2;
  grid-column: span 2;
}

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
   .img333{
    display: none;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery {
    padding: 40px 15px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 10px;
  }
  .img333{
    display: none;
  }

  /* BIG aur TALL same rahenge */
  .gallery-item.tall {
    grid-row: span 2;
  }

  .gallery-item.big {
    grid-row: span 2;
    grid-column: span 2;
  }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(225, 223, 223, 0.2);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.nav-btn:hover {
    background: rgba(255,255,255,0.4);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}


.img222{
 
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.ima222 {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.img222 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top ; /* Top wala part dikhega */
}

.scroll-to-hero {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #012b1b;
  color: #dfb66d;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.scroll-to-hero:hover {
  background-color: #03442b;
  transform: translateY(-2px);
}


.legacy-section {
  position: relative;
  padding: 70px 20px;
  background: #fbf4e6;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.legacy-bg {
  position: absolute;
  inset: 0;
  background: #fcfaf5;
}

.legacy-container {
  position: relative;
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

.legacy-subtitle {
  color: #0c4b2b;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.legacy-container h2 {
  font-size: 40px;
  color: #063b22;
  margin: 10px 0;
}

.legacy-desc {
  font-size: 20px;
  color: #7b4d16;
  margin-bottom: 35px;
}

/* Cards Grid */
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 35px;
}

.legacy-card {
  background: #fffdf7;
  border: 1px solid #e2bd69;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transition: 0.3s ease;
}

.legacy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.round-img {
  width: 100%;
  height: 430px;
  overflow: hidden;
  border-bottom: 1px solid #d5a84c;
}

.round-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.legacy-card h3 {
  color: #073d22;
  font-size: 24px;
  margin: 24px 22px 14px;
}

.legacy-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin: 0 24px 14px;
}

.legacy-card p:last-child {
  margin-bottom: 28px;
}

/* Note */
.legacy-note {
  margin: 25px 0;
  padding: 25px 35px;
  background: #fffaf0;
  border: 1px solid #d5a84c;
  border-radius: 16px;
  font-size: 20px;
  line-height: 1.6;
  color: #111;
}

/* Bottom Stats */
.legacy-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr 1.2fr;
  gap: 16px;
  align-items: center;
}

.stat {
  background: #fffaf0;
  border: 1px solid #d5a84c;
  padding: 18px;
  border-radius: 12px;
}

.stat strong {
  display: block;
  color: #073d22;
  text-transform: uppercase;
}

.stat span {
  color: #6b4717;
}

.btn {
  padding: 18px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  font-family: Arial, sans-serif;
  display: inline-block;
}

.btn.dark {
  background: #073d22;
}

.btn.green {
  background: #10a52d;
}

/* Tablet */
@media (max-width: 991px) {
  .legacy-container h2 {
    font-size: 34px;
  }

  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-bottom {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .legacy-section {
    padding: 50px 15px;
  }

  .legacy-container h2 {
    font-size: 28px;
  }

  .legacy-desc {
    font-size: 17px;
  }

  .legacy-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .round-img {
    height: 380px;
  }

  .legacy-card h3 {
    font-size: 22px;
  }

  .legacy-note {
    padding: 20px;
    font-size: 17px;
  }

  .main-heading span {
    color: #fff;
    font-weight: 700;
    font-size: 35px;
  }
}


/* servisesectio */

#asds-dargah-services-2026 {
  padding: 80px 20px;
  background:
    radial-gradient(circle at top left, rgba(212, 163, 74, 0.28), transparent 35%),
    radial-gradient(circle at top right, rgba(8, 67, 38, 0.16), transparent 35%),
    #fbf4e6;
  font-family: Arial, sans-serif;
  color: #10251a;
  overflow: hidden;
}

#asds-dargah-services-2026 .asds-wrap-2026 {
  max-width: 1300px;
  margin: 0 auto;
}

#asds-dargah-services-2026 .asds-head-2026 {
  text-align: center;
  margin-bottom: 45px;
}

#asds-dargah-services-2026 .asds-label-2026 {
  display: inline-block;
  padding: 8px 24px;
  background: #073d22;
  color: #f7d27c;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

#asds-dargah-services-2026 .asds-title-2026 {
 font-family: Arial, sans-serif;
  font-size: 48px;
  color: #073d22;
  margin: 18px 0 8px;
}

#asds-dargah-services-2026 .asds-subtitle-2026 {
  color: #8a5a18;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

#asds-dargah-services-2026 .asds-intro-2026 {
  max-width: 850px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #3c2d18;
}

#asds-dargah-services-2026 .asds-grid-2026 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

#asds-dargah-services-2026 .asds-card-2026 {
  position: relative;
  padding: 34px 24px;
  min-height: 335px;
  background: rgba(255, 252, 244, 0.97);
  border-radius: 22px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  z-index: 1;
  transition: 0.35s ease;
}

#asds-dargah-services-2026 .asds-card-2026:hover {
  transform: translateY(-8px);
}

#asds-dargah-services-2026 .asds-card-2026::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    #d4a34a,
    #073d22,
    #f8d982,
    #073d22,
    #d4a34a
  );
  background-size: 300% 300%;
  animation: asdsBorderMove2026 4s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}

@keyframes asdsBorderMove2026 {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

#asds-dargah-services-2026 .asds-card-2026::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -45px;
  bottom: -45px;
  background: rgba(212, 163, 74, 0.14);
  border-radius: 50%;
  z-index: -1;
}

#asds-dargah-services-2026 .asds-num-2026 {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 38px;
  font-weight: 900;
  color: rgba(7, 61, 34, 0.11);
}

#asds-dargah-services-2026 .asds-icon-2026 {
  width: 72px;
  height: 72px;
  background: #073d22;
  color: #f7d27c;
  border: 2px solid #d4a34a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin-bottom: 22px;
  box-shadow: 0 8px 18px rgba(7, 61, 34, 0.25);
}

#asds-dargah-services-2026 .asds-card-2026 h3 {
  font-family: Arial, sans-serif;
  color: #073d22;
  font-size: 23px;
  line-height: 1.25;
  margin: 0 0 14px;
}

#asds-dargah-services-2026 .asds-card-2026 p,
#asds-dargah-services-2026 .asds-card-2026 li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #2e2e2e;
}

#asds-dargah-services-2026 .asds-card-2026 ul {
  padding-left: 18px;
  margin-top: 10px;
}

#asds-dargah-services-2026 .asds-wide-2026 {
  grid-column: span 2;
  min-height: 280px;
}

#asds-dargah-services-2026 .asds-footer-2026 {
  margin-top: 35px;
  padding: 36px;
  text-align: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #073d22, #0c5c36);
  color: #fff;
  border: 2px solid #d4a34a;
  box-shadow: 0 16px 38px rgba(0,0,0,0.16);
}

#asds-dargah-services-2026 .asds-footer-2026 h3 {
  font-family: Arial, sans-serif;
  color: #f7d27c;
  font-size: 34px;
  margin: 0 0 12px;
}

#asds-dargah-services-2026 .asds-footer-2026 p {
  max-width: 850px;
  margin: 0 auto 26px;
  line-height: 1.8;
}

#asds-dargah-services-2026 .asds-buttons-2026 {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

#asds-dargah-services-2026 .asds-btn-2026 {
  display: inline-block;
  padding: 15px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

#asds-dargah-services-2026 .asds-btn-main-2026 {
  background: #d4a34a;
  color: #073d22;
}

#asds-dargah-services-2026 .asds-btn-whatsapp-2026 {
  background: #1fae4b;
  color: #fff;
}

#asds-dargah-services-2026 .asds-btn-2026:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

@media (max-width: 1024px) {
  #asds-dargah-services-2026 .asds-grid-2026 {
    grid-template-columns: repeat(2, 1fr);
  }

  #asds-dargah-services-2026 .asds-wide-2026 {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  #asds-dargah-services-2026 {
    padding: 55px 15px;
  }

  #asds-dargah-services-2026 .asds-title-2026 {
    font-size: 32px;
  }

  #asds-dargah-services-2026 .asds-subtitle-2026 {
    font-size: 18px;
  }

  #asds-dargah-services-2026 .asds-grid-2026 {
    grid-template-columns: 1fr;
  }

  #asds-dargah-services-2026 .asds-card-2026 {
    min-height: auto;
  }

  #asds-dargah-services-2026 .asds-footer-2026 {
    padding: 28px 20px;
  }

  #asds-dargah-services-2026 .asds-footer-2026 h3 {
    font-size: 26px;
  }

  #asds-dargah-services-2026 .asds-btn-2026 {
    width: 100%;
    text-align: center;
  }
}

.flotingwhatsapp{
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flotingwhatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,.3);
}

.flotingwhatsapp i{
    color: #fff;
    font-size: 30px;
}


/* imgacaption */

.gallery-item{
    position: relative;
    overflow: hidden;
}

.gallery-item img{
    width: 100%;
    display: block;
}

.gallery-caption{
    position: absolute;
    bottom: 0;
    left: 0;
    max-height: 30px;
    width: 100%;
   
    padding: 10px;
    background: rgba(32, 92, 58, 0.6);
    /* color: #f7d27c; */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-sizing: border-box;
}