:root {
  --black: #000000;
  --dark-gray: #1E1E1E;
  --gray: #7A7A7A;
  --light-gray: #EDEDED;
  --white: #F8F8F8;

  /* LOGO THEME COLORS */
  --red: #C7771F;        /* warm orange */
  --red-dark: #9E5F17;  /* dark orange */

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html{
  list-style: none;
}
body {
    overflow-x:hidden;
  height: 100%;
  background-color: #061f12;

}
section {
  padding: 30px 0%;
}

/* HEADER */
header {
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 8%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111d17;
  z-index: 100;
}

/* LOGO FIX */
.logo {
  position: relative;
  height: 100%;
}

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  position: relative;
  top: -20px;   /* 👈 move down */
}
/* NAV */
.navlist {
  display: flex;
  list-style: none;
}

.navlist li {
  margin: 0 1rem;
}

.navlist a {
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.navlist a:hover,
.navlist a.active {
  color: var(--red);
}

/* BUTTON */
.Hbtn {
  background: var(--red);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.Hbtn:hover {
  background: var(--red-dark);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  overflow: hidden;
}

/* VIDEO */
.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

/* LEFT TEXT */
.left {
  max-width: 50%;
  margin-left: 120px;
}

.left h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.left p {
  font-size: 1.1rem;
  color: var(--light-gray);
}

/* FORM */
.form-box {
  background: var(--white);
  color: var(--black);
  padding: 35px;
  border-radius: 16px;
  width: 360px;
  margin-right: 80px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.form-box h2 {
  margin-bottom: 20px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
}

.form-box input:focus,
.form-box select:focus {
  border-color: var(--red);
  outline: none;
}

/* FORM BUTTON */
.form-box .btn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  border: none;
  color: var(--white);
  border-radius: 30px;
  cursor: pointer;
}

.form-box .btn:hover {
  background: var(--red-dark);
}

/* MENU ICON */
.menu-icon {
  display: none;
  cursor: pointer;
}

.menu-icon .bar,
.menu-icon::before,
.menu-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* HAMBURGER ANIMATION */
.menu-icon.active::before {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-icon.active::after {
  transform: rotate(45deg) translate(-5px, -6px);
}

.menu-icon.active .bar {
  opacity: 0;
}

/* RESPONSIVE */
@media(max-width: 900px) {

  .menu-icon {
    display: block;
    z-index: 101;
  }

  .navlist {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px;
    gap: 18px;
    transition: 0.4s ease;
  }

  .navlist.active {
    right: 0;
  }

  .navlist li {
    width: 100%;
    margin: 0;
  }

  .navlist a {
    font-size: 1.2rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero {
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
  }

  .left {
    max-width: 100%;
    margin: 0 20px 30px;
  }

  .left h1 {
    font-size: 2rem;
  }

  .form-box {
    width: 90%;
    margin: 0;
  }

  .right-header a {
    display: none;
  }
}

/* ================== our service ================= */

/* SECTION */
.services {
  background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
  padding: 60px 20px;
  text-align: center;
}

/* TITLE */
.services h2 {
  color: #fff;
  margin-bottom: 40px;
  margin-top: 40px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  font-size: 38px;
  font-weight: 700;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-card {
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border-radius: 20px;
  padding: 35px 20px;
  transition: all 0.4s ease;
  box-shadow:
    10px 10px 20px #0a0a0a,
    -10px -10px 20px #222;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);
}

/* DEFAULT ICON */
.service-card img {
  width: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(35%)
          sepia(90%) saturate(400%) hue-rotate(340deg);
}

/* CUSTOM PNG IMAGE */
.service-card img.service-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: none !important;
  border-radius:50%;
}

/* TEXT */
.service-card h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* GLOW EFFECT */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(230,57,70,0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .services {
    padding: 40px 15px;
  }

  .services h2 {
    font-size: 28px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-card img.service-icon {
    width: 75px;
    height: 75px;
  }

}
/* ========== why choose us ================== */
/* BACKGROUND CLASS (NEW) */
.bg-interior {
  position: relative;
  background: url('/image/why.png') no-repeat center center/cover;
}

/* OVERLAY (for dark premium look) */
.bg-interior::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 13, 0.662),
    rgba(26, 26, 26, 0.747)
  );
  z-index: 0;
}

/* CONTENT ABOVE OVERLAY */
.bg-interior > * {
  position: relative;
  z-index: 1;
}

body {
  color: var(--white);
}

/* SECTION */
.section {
  padding: 80px 40px;
  text-align: center;
}

.bg-interior h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.bg-interior h1 span {
  color: var(--red);
}

.section p {
  color: var(--light-gray);
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD 3D */
.card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.5),
    inset 0 1px 1px rgba(255,255,255,0.1);

  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;

  box-shadow: 
    5px 5px 15px #000,
    -3px -3px 10px rgba(255,255,255,0.05);
}

.icon i {
  color: var(--red);
  font-size: 24px;
}

/* TEXT */
.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--gray);
  font-size: 14px;
}

/* HOVER 3D */
.card:hover {
  transform: rotateX(8deg) rotateY(-8deg) scale(1.03);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.8),
    0 0 20px rgba(230,57,70,0.3);
}

/* RESPONSIVE */
@media(max-width:768px){
  .section h1 {
    font-size: 30px;
  }
}
/* ============ our gallery  ===================== */
/* ===== SCOPED PORTFOLIO ===== */
.mk-portfolio {
  padding: 80px 20px;
  text-align: center;
  background: var(--black);
  color: var(--white);
}

.mk-small-title {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.mk-title {
  font-size: 40px;
  margin-bottom: 10px;
}

.mk-title span {
  color: var(--red);
}

.mk-desc {
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* FILTER */
.mk-filters {
  margin-bottom: 40px;
}

.mk-filters button {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  margin: 5px;
  border-radius: 25px;
  background: var(--dark-gray);
  color: var(--light-gray);
  cursor: pointer;
  transition: 0.3s;
}

.mk-filters button.active,
.mk-filters button:hover {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 10px rgba(230,57,70,0.4);
}

/* GRID */
.mk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.mk-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  background: var(--dark-gray);
}

.mk-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.5s;
}

.mk-card:hover img {
  transform: scale(1.1);
}

/* OVERLAY */
.mk-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.6);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.mk-card:hover .mk-overlay {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mk-grid {
    grid-template-columns: 1fr;
  }

  .mk-title {
    font-size: 28px;
  }
}

/* ============= about ======================= */

/* ============== About Section =========== */
.parallax-section {
  background-image: url("/image/13.svg"); /* Your image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 100px 20px;
}

.parallax-section::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6); /* Overlay */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.parallax-content {
  position: relative;
  color: #fff;
  z-index: 2;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.layout.reverse {
  flex-direction: row-reverse;
}

.about-content,
.about-video {
  flex: 1 1 45%;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-content p,
.about-content ol {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-content button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #f7b500;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

.about-video img {
  width: 100%;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .parallax-section {
    padding: 50px 10px;
    min-height: 100vh;
  }

  .layout {
    flex-direction: column;
    gap: 30px;
  }

  .layout.reverse {
    flex-direction: column;
  }

  .about-content,
  .about-video {
    flex: 1 1 100%;
  }

  .about-content h2 {
    font-size: 24px;
    text-align: center;
  }

  .about-content p,
  .about-content ol {
    font-size: 14px;
    line-height: 1.4;
    text-align: justify;
  }

  .about-content ol {
    padding-left: 20px;
  }

  .about-video img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    border-radius: 10px;
  }
}
/* ============= contact =================== */

.digital-bg{
  min-height:100vh;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:120px 15px 40px;
  background: linear-gradient(
    135deg,
    rgb(25, 42, 26) 0%,
    rgb(110, 110, 110) 51%,
    rgb(255, 255, 255) 100%
  );
}

/* ================= WRAPPER ================= */

.meeting-wrapper{
  width:100%;
  max-width:1100px;
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,0.25);
}

/* ================= HEADING ================= */

.meeting-wrapper h2{
  text-align:center;
  color:#000;
  margin-bottom:10px;
  font-size:34px;
  line-height:1.3;
}

.meeting-wrapper p{
  text-align:center;
  font-size:15px;
  margin-bottom:30px;
  color:#666;
}

/* ================= FORM ================= */

.meeting-form{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  width:100%;
}

.form-group label{
  font-size:14px;
  margin-bottom:6px;
  color:#222;
  font-weight:500;
}

input,
select{
  width:100%;
  padding:14px;
  border-radius:8px;
  border:1px solid #ccc;
  font-size:14px;
  background:#fff;
}

input:focus,
select:focus{
  outline:none;
  border-color:#C7771F;
  box-shadow:0 0 0 3px rgba(255,0,0,0.1);
}

/* ================= BUTTON ================= */

.form-btn{
  grid-column:span 4;
}

.form-btn button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:8px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  color:#fff;
  background: linear-gradient(
     135deg,
    rgb(18, 33, 26) 0%,
    rgb(110, 110, 110) 51%,
    rgb(38, 48, 30) 100%
  );
  transition:0.3s ease;
}

.form-btn button:hover{
  transform:translateY(-2px);
  opacity:0.95;
}

/* ================= SOCIAL ================= */

.social-icons{
  grid-column:span 4;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
  margin-top:10px;
}

.social-icons a{
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f3f3;
  color:#000;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  background:#c7771f;
  color:#fff;
  transform:translateY(-3px);
}

/* ================= CONTACT INFO ================= */

.contact-info{
  grid-column:span 4;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid #eee;
  flex-wrap:wrap;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  color:#333;
}

.contact-item i{
  color:#c7771f;
  font-size:16px;
}

.contact-item a{
  text-decoration:none;
  color:#333;
}

.contact-item a:hover{
  color:#0B0B0B;
}

/* ================= TABLET ================= */

@media(max-width:992px){

  .meeting-form{
    grid-template-columns:repeat(2, 1fr);
  }

  .form-btn,
  .social-icons,
  .contact-info{
    grid-column:span 2;
  }

  .contact-info{
    justify-content:center;
  }
}

/* ================= MOBILE ================= */

@media(max-width:600px){

  .digital-bg{
    padding:100px 12px 30px;
    align-items:flex-start;
  }

  .meeting-wrapper{
    padding:22px 15px;
    border-radius:12px;
  }

  .meeting-wrapper h2{
    font-size:28px;
  }

  .meeting-wrapper p{
    font-size:14px;
  }

  .meeting-form{
    grid-template-columns:1fr;
    gap:15px;
  }

  .form-btn,
  .social-icons,
  .contact-info{
    grid-column:span 1;
  }

  .contact-info{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  input,
  select{
    padding:13px;
    font-size:14px;
  }

  .form-btn button{
    font-size:15px;
    padding:14px;
  }
}

/* ================= EXTRA SMALL ================= */

@media(max-width:380px){

  .meeting-wrapper h2{
    font-size:24px;
  }

  .meeting-wrapper{
    padding:18px 12px;
  }

  .form-btn button{
    font-size:14px;
  }
}

/* ================== testiminol ====================== */

.testimonials{
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    #0B0B0B 0%,
    #0e1b0f 50%,
    #111d17 100%
  );

  overflow: hidden;
}

/* HEADING */

.testimonial-heading{
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-heading span{
  color: #C7771F;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.testimonial-heading h2{
  font-size: 42px;
  color: #fff;
  margin-top: 10px;
}

.testimonial-heading p{
  color: #bdbdbd;
  margin-top: 15px;
}

/* SLIDER */

.testimonial-slider{
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* TRACK */

.testimonial-track{
  display: flex;
  gap: 25px;
  width: max-content;

  animation: scroll 30s linear infinite;
}

.testimonial-track:hover{
  animation-play-state: paused;
}

/* CARD */

.testimonial-card{
  width: 340px;
  flex-shrink: 0;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 24px;
  padding: 30px;

  backdrop-filter: blur(10px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.4);

  transition: 0.4s;
}

.testimonial-card:hover{
  transform: translateY(-8px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.6),
    0 0 20px rgba(199,119,31,0.25);
}

/* QUOTE */

.quote{
  font-size: 65px;
  line-height: 1;
  color: #C7771F;
  margin-bottom: 10px;
}

/* TEXT */

.testimonial-card p{
  color: #d7d7d7;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;
}

/* CLIENT */

.client-info{
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #C7771F;
}

.client-info h3{
  color: #fff;
  font-size: 17px;
}

.client-info span{
  color: #aaa;
  font-size: 14px;
}

/* ANIMATION */

@keyframes scroll{

  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(-50%);
  }

}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  .testimonials{
    padding: 70px 0;
  }

  .testimonial-heading h2{
    font-size: 30px;
  }

  .testimonial-card{
    width: 280px;
    padding: 25px;
  }

  .testimonial-card p{
    font-size: 14px;
  }

}

@media(max-width:480px){

  .testimonial-heading h2{
    font-size: 25px;
  }

  .testimonial-card{
    width: 250px;
  }

}

/* ================= footer ==================== */
footer {
  position: relative;
  background: url("/image/10.svg") center/cover no-repeat;
  color: var(--light-gray);
  padding: 80px 5% 20px;
  z-index: 1;
}

/* Dark overlay */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}

/* Layout */
footer .row {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start; /* FIX alignment */
  gap: 50px;
}

/* Column */
.col {
  flex: 1 1 250px;
}

/* Logo */
.footer_logo {
  width: 100px;
  /* margin-bottom: 20px; */
}

/* Headings */
.col h3 {
  margin-bottom: 25px;
  position: relative;
  color: var(--white);
  font-size: 1.3rem;
}

/* Text */
.col p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--light-gray);
}

/* ===== FIX LINKS ===== */
.col ul {
  list-style: none;   /* remove bullets */
  padding: 0;
  margin: 0;
}

.col ul li {
  margin-bottom: 12px;
}

.col ul li a {
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.col ul li a:hover {
  color: var(--red);
  transform: translateX(5px);
}

/* Social Icons */
.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-media a {
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  color: var(--white);
}

.social-media a:hover {
  background: var(--red);
  transform: translateY(-5px);
}

/* Bottom Line */
.bottom_line {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 3px;
  position: absolute;
  top: 28px;
  left: 0;
}

/* Divider */
footer hr {
  margin: 50px auto 20px;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Copyright */
footer .copyright {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
}