
     :root {
      --accent: #9c5c1c;
      --accent-light: #f3e58d;
      --dark: #0d1b25;
      --gold-dark: #9c5c1c;
      --gold-light: #f3e58d;
      --black: #000000;
      --white: #ffffff;
      --text: #222222;
    }
    * {
      margin: 0; padding: 0; box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    /* ===== Top Header ===== */
   .top-header{
    background-color: rgba(0, 0, 0, 0.9);
    color:white;
    font-size:15px;
   }
   .header1 .social-icons{
    margin-left: 40%;
   margin-top: 15px;
}
@media screen  and (max-width: 768px){
  .header1 .social-icons{
    margin-left: 0%;
    margin-bottom: 10px;
    margin-top: 0px;
}
.top-text{
  text-align: center;
}
}
/* Social Icons */

.top-text{
  font-size: 15px;
  color: white;
}
.header1 .social-icons a {
  display: inline-block;
  margin-right: 12px;
  background: black;
 border: 2px solid white;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: 0.3s ease;
}

.header1 .social-icons a:hover {
 background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  color: black;
  border: 2px solid white;
  box-shadow: 0px 0px 10px 0px white;
  transform: translateY(-4px);
}
/* first header end */
    /* ===== Header with Video ===== */
    /* ===== Header with Background Image ===== */
header {
  position: relative;
  height: 500px;
  overflow: hidden;
  color: white;
  width: 100%;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
              url('../images/bg-blog.png') center/cover;
  color: white;
}
/* ===== Header Heading & Paragraph Styling ===== */
header h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  color: #f3e58d;
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

header p {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* To vertically center heading and paragraph below navbar */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px; /* 👈 150 se 20px kam kar diya */
  text-align: center;
}


@media (max-width: 768px) {
  header h2 {
    font-size: 30px;
  }
  header p {
    font-size: 16px;
    padding: 0 20px;
  }
  header {
    padding-top: 180px;
  }
}
header h2, header p {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
header p {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* ===== Navbar ===== */
    .navwrap {
      position: absolute; top: 40px; left: 0; right: 0;
      z-index: 4; display: flex; justify-content: center;
      pointer-events: none;
    }
    nav.site-nav {
      pointer-events: all; width: 100%;
      display: flex; align-items: center; justify-content: space-between;
      padding: 10px 26px; border-radius: 6px;
      background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.06));
      transition: all 0.3s ease;
    }
    .brand { display: flex; align-items: center; gap: 12px; }
    .brand .mark {
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      border-radius: 8px; display: flex; align-items: center; justify-content: center;
      color: #081018; font-weight: 700; font-size: 18px;
    }
    .brand .name { color: var(--accent); font-weight: 700; font-size: 20px; }
    .navlinks { display: flex; align-items: center; gap: 8px; list-style: none; }
    .navlinks a {
      color: rgba(255,255,255,.95); text-decoration: none;
      padding: 10px 14px; border-radius: 6px; font-weight: 600; transition: all .25s ease;
    }
    .navlinks .active a {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .navlinks a:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018;
    }
    .cta {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid var(--accent);
      padding: 8px 18px;
      background: transparent; color: #fff;
      font-weight: 700; text-decoration: none; transition: all .3s ease;
    }
    .cta:hover {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: #061018; border-color: transparent;
    }

    /* ===== Hamburger ===== */
    .hamburger { display: none; width: 42px; height: 40px;
      background: transparent; border: none; cursor: pointer;
      align-items: center; justify-content: center; z-index: 1001;
    }
    .hamburger .bar { width: 26px; height: 3px; background: #fff; border-radius: 2px; position: relative; transition: all .3s; }
    .hamburger .bar::before, .hamburger .bar::after {
      content:""; position:absolute; width:100%; height:3px; background:#fff; border-radius:2px; transition: all .3s;
    }
    .hamburger .bar::before { top:-8px; } .hamburger .bar::after { top:8px; }
    .hamburger.active .bar { background:transparent; }
    .hamburger.active .bar::before { transform: rotate(45deg) translate(5px,5px); background: var(--accent); }
    .hamburger.active .bar::after { transform: rotate(-45deg) translate(5px,-5px); background: var(--accent); }

    @media (max-width:900px){
      .navlinks { position: fixed; top:-100%; left:0; width:100%; background: rgba(13,27,37,0.98);
        flex-direction: column; align-items:center; gap:25px; padding:100px 0 40px; transition: top .4s ease;
      }
      .navlinks.active { top:0; }
      .cta { display:none; }
      .hamburger { display:flex; }
    }

    /* Heading from top */
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text and button from bottom */
@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


    /* Button with animated border effect */
   @media only screen and (max-width: 768px) {
 

  header {
    height: 600px;
  }

}

.button_effect {
  position: relative;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 15px 35px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-transform: uppercase;
}

/* Top-left corner */
.button_effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid #9c5c1c;
  border-left: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Bottom-right corner */
.button_effect::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid #9c5c1c;
  border-right: 2px solid #9c5c1c;
  transition: all 0.4s ease;
}

/* Hover – smoothly expand both borders to full box */
.button_effect:hover::before,
.button_effect:hover::after {
  width: 100%;
  height: 100%;
}




/* blog */

    .section-blog {
      padding: 60px 5%;
      text-align: center;
    }

   .blog-heading {
      font-size: 2.3rem;
      font-weight: 600;
      color: #9c5c1c;
      margin-bottom: 20px;
      margin-top: 20px;
      display: inline-block;
      position: relative;
    }

  
  .heading-line {
        width: 80px;
        height: 3px;
        background: #9c5c1c;
        margin-bottom: 10px;
        border-radius: 2px;
        margin: 0 auto 60px;}

    .blog-card {
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      text-align: left;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
        height: 100%;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .date-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #000;
      color: #fff;
      padding: 10px 15px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      border-radius: 6px;
      text-align: center;
    }

    .blog-content {
      padding: 20px;
    }

    .meta {
      font-size: 13px;
      color: #555;
      margin-bottom: 10px;
    }

    .meta span {
      color: #0056ff;
      font-weight: 600;
      text-transform: uppercase;
    }

    .blog-small-heading {
      font-size: 1.1rem;
      font-weight: 600;
      color: black;
      margin-bottom: 10px;
    }

    .divider {
      width: 40px;
      height: 3px;
      background:#9c5c1c;
      border-radius: 2px;
      margin-bottom: 10px;
    }

    .blog-txt {
      font-size: 14px;
      color: #555;
    }

    .pagination {
      margin-top: 40px;
      justify-content: center;
    }

    .page-link {
      color: black;
      border: 1px solid #9c5c1c;
      font-weight: 500;
    }

    .page-item.active .page-link {
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      border-color: #9c5c1c;
      color: black;
    }

    .page-link:hover {
     background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      color: black;
      border-color: #9c5c1c;
    }

    @media (max-width: 768px) {
      .blog-card img {
        height: 180px;
      }
    }

/* insta code */



/* ===== PHOTO GALLERY / INSTAGRAM FEED ===== */
/* ===== PHOTO GALLERY / INSTAGRAM FEED ===== */
.photo-gallery {
  background-color: #f8f9fa;
}

.gallery-heading {
  font-size: 2.2rem;
  font-weight: 600;
  color: #9c5c1c;
  margin-bottom: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px; /* 👈 All images same height */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 Keeps proportions consistent */
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  color: #f3e58d;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-link {
  text-decoration: none;
  display: block;
}

.gallery-button {
  border-color: #9c5c1c;
  color: #9c5c1c;
  font-weight: 600;
  background: transparent;
  text-transform: uppercase;
}
.gallery-button:hover{
    color:#9c5c1c;
}

  .newsletter-section1 {
    background: linear-gradient(135deg, #9c5c1c, #f3e58d);
 
  }
  .news-heading1{
    color:black;
  }

  .subscribe-btn {
    background-color: transparent;
    color: black;
    border: 2px solid black;
    transition: all 0.3s ease;
  }

  .subscribe-btn:hover {
    color: #9c5c1c;
  }

  .form-control:focus {
    border-color: #9c5c1c;
    box-shadow: 0 0 5px rgba(255, 106, 0, 0.4);
  }

  @media (max-width: 576px) {
    .newsletter-section h2 {
      font-size: 1.5rem;
    }
  }