/* =========================================================
   COLOR VARIABLES
========================================================= */
:root {
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --light: #f8f9fa;
  --dark: #343a40;
}

/* =========================================================
   GLOBAL RESET & BASE
========================================================= */
* {
  font-family: "Google Sans", sans-serif;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* =========================================================
   TYPOGRAPHY – GLOBAL
========================================================= */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
h1,
h2 {
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
  font-family: "Gallery Modern";
  font-weight: 400;
}

h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

h4 {
  font-size: 1.2rem;
  font-weight: 400;
}

h5 {
  font-size: 1rem;
  font-weight: 400;
}

h6 {
  font-size: 1rem;
  font-weight: 400;
}

p {
  font-size: 1rem;
  font-weight: 400;
}
img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* =========================================================
   FONT UTILITIES
========================================================= */
.highlight {
  font-family: "W95FA";
}

.font-f16 {
  font-size: 1rem;
  margin: 12px 0;
}

.font-f47 {
  font-size: 5rem;
  font-family: "Gallery Modern";
  line-height: 1.2;
}

/* =========================================================
   TITLE STYLES
========================================================= */
.Primary-Title h2 {
  font-size: 10rem;
  font-family: "W95FA";
  color: #1a4103;
}

.Primary-Title span {
  font-size: 10rem;
  font-family: "Gallery Modern";
}

.secondary-title {
  font-size: 2rem;
}

.secondary-text {
  font-size: 2rem;
  color: #ffffff;
}

/* =========================================================
   HEADER
========================================================= */
header a {
  text-decoration: none;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  font-family: "W95FA";
  text-transform: uppercase;
}

/* =========================================================
   SECTION LAYOUTS
========================================================= */
.section-1,
.section-2,
.section-3 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================================================
   BACKGROUND HELPERS
========================================================= */
.bg-primary-color {
  background-color: #ffffff;
}

.bg-secondary-pattern,
.bg-secondary-pattern-banner {
  background-color: #70a500;
  transition: background-color 0.3s linear;
}
.bg-primary-color {
  color: #1a4103 !important;
}

/* =========================================================
   HERO / BANNER
========================================================= */
.hero-section,
.hero-section-banner {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #ffffff;
}

.bg-pattern,
.bg-pattern-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  object-fit: cover;
  z-index: 0;
  scale: 2.3;
}

.primary-bg-text h2 {
  font-size: 12rem;
  color: #ffffff;
}

/* =========================================================
   TOP HEADER QUICK SECTION
========================================================= */
.top-head-sec-quick h2 {
  font-size: 2rem;
}

.top-head-sec-quick h2 span {
  font-size: 2rem;
  font-family: "W95FA";
}

.top-head-sec-quick h3 {
  font-size: 1.4rem;
  font-family: "W95FA";
}

/* =========================================================
   PROJECT / CARD SYSTEM
========================================================= */
.project-card.minimal {
  padding: 24px;
}
.project-card {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 4rem;
}
.project-card img {
  border-radius: 4rem;
  height: 100%;
}
.project-card {
  height: 100%;
  position: relative;
}
.project-title {
  font-weight: 500;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 18px;
}
/* =========================================================
   infinite scroller
========================================================= */
.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
}

.marquee-track span {
  font-size: 7rem;
  font-weight: 500;
  padding-right: 2rem;
  text-transform: uppercase;
  color: white;
}
.boxmarg {
  position: relative;
  display: inline-block;
  height: 10rem;
  width: 10rem;
  margin: auto;
  vertical-align: middle;
}
.circle {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  background-image: url("/assets/img/curv.svg");
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  animation: cb-fx-rotating-360 10s infinite linear;
  display: block;
}
@keyframes cb-fx-rotating-360 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
/* =========================================================
   PROJECT GRID
========================================================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.project-grid .grid-item {
  font-size: 13px;
  padding: 8px 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  opacity: 0.85;
}

.project-grid .grid-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* =========================================================
   TECH GRID
========================================================= */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-grid span {
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  opacity: 0.75;
}

/* =========================================================
   PROJECT SHOW / TIMELINE
========================================================= */
.projectwrap-section {
  height: 100vh;
}
.projectwrap-section h3 {
  color: #1a4103;
}

.project-show {
  display: flex;
  gap: 40px;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}

.timeline-item span {
  font-size: 28px;
}

/** =========================================================
   jpurney SECTION
========================================================= */
.myjourney-section {
  padding: 4rem 1rem;
}

.myjourney {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

/* center horizontal line */
.myjourney::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
}

.myjourney-item {
  position: relative;
  padding-top: 3rem;
}

/* dot */
.myjourney-item::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #111;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* content */
.myjourney-item .year {
  font-weight: 600;
  font-size: 0.9rem;
  color: #666;
}

.myjourney-item h4 {
  margin: 0.5rem 0;
  font-size: 1rem;
}

/* 📱 Mobile – vertical journey */
@media (max-width: 768px) {
  .myjourney {
    grid-template-columns: 1fr;
  }

  .myjourney::before {
    top: 0;
    left: 6px;
    width: 2px;
    height: 100%;
  }

  .myjourney-item {
    padding-left: 2rem;
    padding-top: 0;
  }

  .myjourney-item::before {
    top: 0.4rem;
    left: 0;
    transform: none;
  }
}

/* =========================================================
   FLOW / UX STEPS
========================================================= */
.flow-left-top {
  height: 100%;
}
.ux-flow-steps {
  background: #ffffff00;
}

.flow-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flow-title,
.flow-step h4,
.flow-nav li,
.flow-count {
  color: #132b06;
}
.flow-count span {
  font-family: "W95FA";
}

.flow-nav {
  list-style: none;
  padding: 0;
}

.flow-nav li {
  opacity: 0.4;
  font-family: "W95FA";
  font-size: 1.5rem;
  transition-duration: 0.8s;
}

.flow-nav li.active {
  font-size: 2rem;
  opacity: 1;
  transform: translateX(6px);
}

.flow-step {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  opacity: 0.2;
}

.flow-step.active {
  opacity: 1;
}

.flow-step span {
  font-family: "W95FA";
  font-size: 1rem;
}

.flow-step p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
}
.flow-chart {
  position: relative;
}

.flow-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 22px;
  height: 100%;
  text-align: center;
  position: relative;
}

.flow-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.step-number {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* ===== Desktop arrows ===== */
@media (min-width: 992px) {
  /* line */
  .flow-card::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -42px;
    width: 30px;
    height: 1px;
    background: #ccc;
  }

  /* arrow head */
  .flow-card::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -48px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #ccc;
  }

  /* remove arrow for last card */
  .flow-chart .col-lg-3:last-child .flow-card::after,
  .flow-chart .col-lg-3:last-child .flow-card::before {
    display: none;
  }
}

/* =========================================================
   UI ELEMENTS
========================================================= */
.card-image img {
  width: 100%;
}

.color-ui {
  background-color: white !important;
  border-radius: 15px !important;
}

.color-ui ul {
  display: flex;
  flex-wrap: wrap;
}

.label {
  border: 1px solid black;
  border-radius: 50px;
  padding: 15px;
  color: #1a4103;
  text-align: center;
  font-size: 1rem;
}

.label-wrap {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
/* =========================================================
   CTA SECTION
========================================================= */
.cta {
  text-align: center;
  padding: 80px 0;
  display: block;
}
.cta .bg {
  text-align: center;
  border-radius: 1000px;
  padding: 15px 30px;
  border: #1a4103 2px solid;
  color: #1a4103;
  text-decoration: none;
  font-size: 5rem;
  text-decoration: none;
  text-transform: uppercase;
}
/* =========================================================
   BUTTONS
========================================================= */
.btn-theme {
  text-align: center;
  border-radius: 1000px;
  border: #1a4103 2px solid;
  color: #1a4103;
  text-decoration: none;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  padding: 14px;
  width: auto;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
.btn-theme-white {
  text-align: center;
  border-radius: 1000px;
  border: #ffffff 2px solid;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  padding: 14px;
  width: auto;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
/* =========================================================
   FOOTER
========================================================= */
.footer .font-f16 {
  color: #666;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer a {
  color: #666;
  margin-bottom: 12px;
  text-decoration: none;
}

/* =========================================================
   ANIMATIONS
========================================================= */

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1400px) {
  .primary-bg-text h2 {
    font-size: 7rem !important;
  }
}
@media (max-width: 992px) {
  .marquee-track span {
    font-size: 3rem !important;
  }
  .boxmarg {
    height: 4rem !important;
    width: 4rem !important;
  }

  .hero-section,
  .hero-section-banner {
    height: auto !important;
  }
  .projectwrap-section {
    height: auto !important;
  }
  .flow-step {
    opacity: 1 !important;
  }
  .hero-title {
    font-size: 2.5rem !important;
  }
  .project-card {
    height: 50vh !important;
  }
  .Primary-Title h2,
  .Primary-Title span,
  .primary-bg-text h2 {
    font-size: 2rem !important;
  }
  .Primary-Title .bg {
    font-size: 2rem !important;
    margin-top: 3rem;
  }

  .flow-left {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-show {
    flex-direction: column;
  }
}
.btn-theme-sm {
  background-color: white;
  color: #1a4103;
  border-radius: 1000px;
  border: #1a4103 2px solid;
  text-decoration: none;
  font-size: 1rem;
  text-decoration: none;
  display: flex;
  padding: 10px 20px;
  width: auto;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
}
/* =========================================================
space
========================================================= */
.div-55 {
  height: 55px;
}
/* =========================================================
  portlfop gird
========================================================= */
.portfolio-grid img {
  padding: 15px;
  border: 1px solid rgb(202, 202, 202);
}
.bg-video {
  position: absolute;
  width: 100%;
  height: 100vh;
}
.port-detail {
}
.headting-theme {
  font-size: 1rem;
  font-family: "W95FA";
}
/* =========================================================
  portfolio detail
========================================================= */
.project-details-section-wrap {
    border: 0.1rem solid rgb(241, 241, 241);
    background-color: #ffffff10;

}
.port-detail .card {
  border: 0.1rem solid rgb(241, 241, 241);
  background-color: #ffffff;
  border-radius: 0px;
  margin-bottom: 1rem;
}
.port-detail p {
  font-size: 16px;
  font-weight: 200;
}
.port-detail ul {
  font-size: 16px;
  font-weight: 200;
  list-style: none;
  padding: 0;
}
.port-detail h5 {
  font-size: 16px;
  font-weight: 200;
}
.pain-points-list li h6 {
  margin-bottom: 5px;
  overflow: hidden;
}
.pain-points-list li h6:before {
  content: "";
  margin-right: 3px;
  background-color: #000000;
  padding: 2px;
  border-radius: 0px;
}

/*shape*/
.shapepnale {
  position: relative;
  width: 100%;
  height: 100%;
}
.shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: block;
}

.glass-card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
/*bento grid*/

.bento-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

.bento-card:hover{
    transform:translateY(-5px);
}

.title{
    font-weight:600;
    font-size:20px;
    margin-bottom:15px;
}

.company{
    font-weight:600;
}

.small-text{
    font-size:14px;
    color:#777;
}

.skill-badge{
    background:#f1f3f9;
    padding:8px 14px;
    border-radius:20px;
    display:inline-block;
    margin:4px;
    font-size:13px;
}

.profile-title{
    font-size:28px;
    font-weight:700;
}
.contact form input,.contact form .form-control {
    border-radius: 0!important;
      font-size: .8rem!important;
}
.contact form .invalid-feedback{
      font-size: .8rem!important;
}
.contact form input:focus,.contact form .form-control:focus{
  box-shadow: none!important;
  border-color: black!important;
}
.contact form label{
  font-size: .8rem!important;
  text-transform:uppercase;
}
.btn{
  border-radius: 0!important;
}
.btn-primary{
  background-color:black!important;
  padding: .5rem 2rem!important;
}