
     :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%;
}
.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-services.png') center/cover no-repeat;

  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%;
}







/* ===== SERVICES ===== */
.services {
  padding: 80px 10%;
  text-align: center;
}
.services h3 {
  font-size: 32px;
  color: #9c5c1c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.heading-line {
  width: 80px;
  height: 3px;
  background: #9c5c1c;
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* ===== NAV PILLS ===== */
.nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.nav-pills button {
  position: relative;
  background: linear-gradient(135deg, #f3e58d, #9c5c1c, #f3e58d);
  background-size: 300%;
  background-position: left;
  border: 2px solid #9c5c1c;
  color: black;
  padding: 10px 24px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
  overflow: hidden;
}

/* Moving gradient animation */
@keyframes moveGradient {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

/* Hover and Active State */
.nav-pills button:hover,
.nav-pills button.active {
  color: #000;
  box-shadow: 0 0 12px rgba(182, 136, 68, 0.6);
  animation: moveGradient 3s linear infinite;
  background-position: right;
  border-color: transparent;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
.tab-content.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATION DIRECTIONS */
.tab-content.from-right { animation: slideInRight 0.8s ease forwards; }
.tab-content.from-left { animation: slideInLeft 0.8s ease forwards; }
.tab-content.from-bottom { animation: slideInUp 0.8s ease forwards; }

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInUp {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== SERVICE GRID ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 25px rgba(182, 136, 68, 0.25);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
  transition: 0.4s;
}
.service-card:hover img {
  transform: scale(1.08);
}
.service-card h4 {
  color: black;
  font-size: 18px;
  margin-bottom: 10px;
}
.service-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}





 /* Core Values Section */

.core-values-section{
          background: linear-gradient(120deg, rgba(0,64,128,0.05));
}
.core-value-card {
  background: #fff;
  border: 3px solid #9c5c1c;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.core-value-card:hover {
  transform: translateY(-8px);
  border-color: #f3e58d;
  box-shadow: 0 8px 20px rgba(156, 92, 28, 0.2);
}

.core-value-icon {
  font-size: 3rem;
  color: #9c5c1c;
  background: linear-gradient(135deg, #9c5c1c, #f3e58d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.core-value-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  margin-bottom: 0.5rem;
}

.core-value-text {
  color: black;
  font-size: 0.95rem;
}
.section-title {
  font-size: 32px;
  color: #9c5c1c;
  text-transform: uppercase;
  margin-bottom: 10px;
}




    /* ===== SECTION ===== */
    section {
      padding: 80px 0;
      text-align: center;
    
    }

    .video-heading{
      font-size: 2.2rem;
      color: #9c5c1c;
      margin-bottom: 50px;
      font-weight: 300;
      position: relative;
      display: inline-block;
    }

    .video-heading::after {
      content: "";
      display: block;
      width: 60%;
      height: 3px;
      background: #9c5c1c;
      margin: 10px auto 0;
      border-radius: 5px;
    }

    /* ===== VIDEO BOX ===== */
    .video-box {
      background: #fff;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.4s ease;
    }

    .iframe-video {
      width: 100%;
      height: 230px;
      border: none;
      display: block;
    }

    /* ===== BUTTON ===== */
    .more-btn {
      margin-top: 50px;
      padding: 12px 40px;
      background: transparent;
      color: #9c5c1c;
      border: none;
      font-size: 1.1rem;
      cursor: pointer;
      transition: 0.3s;
    }


    @media (max-width: 576px) {
      .iframe-video {
        height: 180px;
      }
     .video-heading {
        font-size: 1.8rem;
      }
    }
