
     :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; max-width: 100%;
    }
        html, body {
  overflow-x: hidden; /* ✅ stops sideways scrolling */
  width: 100%;
}
    /* ===== 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-proj.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%;
}





/* ===== Get in touch ===== */
.contact-sec {
  background: #ffffff;
  padding: 80px 10%;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== Inner Container (Dark Box) ===== */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #000000, #3b2a14);
  border: 1px solid rgba(182, 136, 68, 0.3);
  border-radius: 12px;
  padding: 50px 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

/* Info box */
.contact-info {
  flex: 1;
  min-width: 280px;
  color: white;
}

.contact-info h2 {
  font-size: 32px;
  color: #f3e58d;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.heading-line {
  width: 80px;
  height: 3px;
  background: #9c5c1c;
  margin: 10px auto 40px;
  border-radius: 2px;
}

.contact-info small {
  display: block;
  font-size: 15px;
  color:white;
  font-style: italic;
  margin-bottom: 25px;
}

.contact-info p {
  font-size: 15px;
  color: white;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-item {
  margin-bottom: 15px;
}

.info-item strong {
  color:#f3e58d;
  font-weight: 600;
}

.info-item a {
  display: block;
  color: white;
  margin-left: 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #f3e58d;
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  background: #fff;
  color: #333;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f3e58d;
  background: #fffdf7;
}

/* Button */
.btn-submit {
  background:transparent;
  color: var(--white);
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: center;
}

.btn-submit:hover {
  background: transparent;
  color: white;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .contact-sec {
    padding: 60px 5%;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    gap: 25px;
  }

  .contact-info h2 {
    font-size: 26px;
  }

  .heading-line {
    margin: 0 auto 10px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    font-size: 15px;
    padding: 10px 12px;
  }

  .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-container {
    padding: 25px 15px;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }
}

/* next section starts from here */
/* ===== Project Intro ===== */
    .project-intro {
      padding: 80px 0;
      background: #f9f9f9;
    }
    .project-intro .image-side img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .portfolio-button{
      color:#9c5c1c;
      background: transparent;
    }
    .portfolio-button:hover{
      color:#9c5c1c;
     
    }
    .section-heading {
      font-size: 28px;
      color: #9c5c1c;
      margin-bottom: 20px;
      display: inline-block;
      border-bottom: 3px solid #9c5c1c;
      padding-bottom: 6px;
    }
    .project-intro p {
      color: #333;
      font-size: 17px;
      line-height: 1.7;
    }

    /* ===== Section Title ===== */
    .global-title {
      text-align: center;
      font-size: 34px;
      font-weight: 700;
      color: #9c5c1c;
      padding: 50px 0 20px;
      letter-spacing: 1px;
    }

    /* ===== Stats Section ===== */
    .stats-section {
      position: relative;
      background: url('../images/proj.png') center/cover fixed no-repeat;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .stats-section .overlay {
      position: absolute;
      inset: 0;
      backdrop-filter: blur(2px);
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }
    .stats-section .container {
      position: relative;
      z-index: 2;
    }
    .stat-box {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 30px 15px;
      color: white;
      transition: all 0.4s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .stat-box:hover {
      transform: translateY(-8px);
      background: rgba(255,255,255,0.25);
    }
    .stat-box h3 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .stat-box p {
      font-size: 16px;
      font-weight: 500;
      margin: 0;
    }

    /* ===== Projects Section ===== */
    .projects-section {
      /*background: #fffaf2;*/
    }

    .projects-section img {
      transition: all 0.4s ease;
    }

    .projects-section img:hover {
      transform: scale(1.04);
      box-shadow: 0 8px 20px rgba(156, 92, 28, 0.25);
    }

    .project-content p {
      font-size: 16px;
      color: #333;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .arrow-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      color: #0d1b25;
      font-size: 20px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .arrow-btn:hover {
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      transform: translateX(6px);
      color: #000;
    }
.porject-img{
    height:400px;
    width:100%;
}

    /* ===== Custom Classes for Inline Styles ===== */
    .project-image {
      width: 48%;
    }
    .project-content {
      width: 48%;
    }
    .margin-top-80 {
      margin-top: 80px;
    }
    .text-accent {
      color:#9c5c1c;
    }
    .btn-accent-outline {
      border-color: #9c5c1c;
      color:#9c5c1c;
      font-weight: 600;
    }
    .btn-accent-outline:hover {
      background: linear-gradient(135deg, #9c5c1c, #f3e58d);
      color: #0d1b25;
      border-color: transparent;
    }

    @media (max-width: 768px) {
      .project-row {
        flex-direction: column !important;
      }
      .project-image,
      .project-content {
        width: 100% !important;
        margin-top: 0 !important;
      }
      .project-content {
        margin-top: 20px;
      }
    }