/* ================= VARIABLES ================= */
:root {
  --orange: #f5902f;
  --gradient: linear-gradient(135deg, #f2673a, #fda60e);
  --black: #0b0b0b;
  --dark: #111;
  --white: #ffffff;
  --gray: #bdbdbd;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 14px 130px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient);
  color: #ffffff;
}

.btn-primary:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 30px rgba(245,144,47,0.45);
}

.btn-outline {
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-outline:hover {
  background: var(--gradient);
  color: #000;
}

/* ================= HERO ================= */
.hero {
  min-height: 60vh;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)
    ),
    url("../assets/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* padding: 100px 80px ; */
  padding-top: 30px;
  padding-inline: 70px;
  /* padding-bottom: 100px; */
}


.navbar {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center; /* baseline alignment */
  /* gap: px; */
  font-weight: 800;
}

.logo img {
  width: 120px;
  display: block;
}

.logo span {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 1px;

  /* Move text slightly UP */
  transform: translateY(22px);
}

.hero-content-centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 60px; /* Adjust this value based on navbar height */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content-centered h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  min-height: 140px;
  text-align: center;
}

.hero-content-centered .hero-sub {
  margin: 21px auto 44px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  max-width: 800px;
  text-align: center;
}


.hero-content-centered .hero-goals {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 21px 0 44px;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  flex-wrap: wrap;
}



/* ================= RESPONSIVE CENTERED HERO ================= */

@media (max-width: 1200px) {
  .hero-content-centered h1 {
    font-size: 52px;
  }
  
  .hero-content-centered .hero-sub {
    font-size: 20px;
    max-width: 700px;
  }
}

@media (max-width: 992px) {
  .hero-content-centered {
    margin-top: 40px;
  }
  
  .hero-content-centered h1 {
    font-size: 44px;
    min-height: 110px;
  }
  
  .hero-content-centered .hero-sub {
    font-size: 18px;
    max-width: 600px;
  }
  
  .hero-content-centered .hero-goals {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-content-centered {
    margin-top: 30px;
  }
  
  .hero-content-centered h1 {
    font-size: 38px;
  }
  
  .hero-content-centered .hero-sub {
    font-size: 17px;
    max-width: 500px;
  }
  
  .hero-content-centered .hero-goals {
    gap: 25px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-content-centered {
    margin-top: 20px;
  }
  
  .hero-content-centered h1 {
    font-size: 32px;
    min-height: 90px;
  }
  
  .hero-content-centered .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }
  
  .hero-content-centered .hero-goals {
    flex-direction: column;
    gap: 15px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .hero-content-centered h1 {
    font-size: 28px;
  }
  
  .hero-content-centered .hero-sub {
    font-size: 15px;
  }
  
  .hero-content-centered .hero-goals {
    font-size: 15px;
  }
}




/* ================= ROTATING TEXT ================= */
.rotating-text::after {
  content: "MARKETING PARTNER";
  /* font-style: italic; */
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rotateText 8s infinite;
}

@keyframes rotateText {
  0% { content: "MARKETING PARTNER"; }
  25% { content: "GROWTH CATALYST"; }
  50% { content: "IMPACT PARTNER"; }
  75% { content: "BRAND ARCHITECT"; }
  100% { content: "MARKETING PARTNER"; }
}




/* ================= HERO LAYOUT ================= */


/* ================= HERO FORM ================= */
.hero-form {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 16px;
  color: #000;
  max-width: 380px;
}

.hero-form h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.hero-form h3 span {
  color: var(--orange);
}

.form-sub {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-form input,
.hero-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.hero-form textarea {
  resize: none;
  height: 80px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  margin-top: 3px;          /* aligns with text */
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
}

.hero-form .btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
}




.hero-form {
  animation: heroFade 1.2s ease forwards;
}

@keyframes heroSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.9s ease forwards;
}



/*============================== media queriesssssss */
@media (max-width: 992px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    margin-top: 40px;
  }

  .hero-form {
    max-width: 100%;
  }

  .hero-goals {
    flex-direction: column;
    gap: 10px;
  }
}


@media (max-width: 576px) {
  .btn {
    padding: 14px 40px;
  }
}





/* ================= VALUE SECTION ================= */
.value-section {
  background: #ffffff;
  padding: 30px 80px;
}


/* LEFT CONTENT */
.value-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
 
}

.value-content h2 span {
  color: var(--orange);
}

.value-content p {
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 19px;
  text-align: center;
   padding-inline: 100px;
  line-height: 1.7;
}


.value-content .btn {
  margin-top: 24px;
}

.value-note {
  margin-top: 12px;
  font-size: 12px;
  color: red;
  letter-spacing: 0.5px;
}


/* ================= VALUE BULLET POINTS ================= */
.value-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
}

.value-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.value-points .check {
  color: var(--orange);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  margin-top: 4px;
}

.value-points strong {
  font-weight: 700;
}



/* RIGHT IMAGE */
.value-image {
  display: flex;
  justify-content: center;
}

.value-image img {
  width: 100%;
  max-width: 500px;
  /* border-radius: 6px; */
  object-fit: cover;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .value-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .value-image img {
    max-width: 100%;
  }


  .value-content p{
     font-size: 12px;
       padding-inline: 10px;
  }
}






/* ================= SERVICES ================= */
.services {
  background-color: #f3f3f3;
  padding: 50px 80px;
  text-align: center;
}

.services h2 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-grid {
  padding-inline: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.service-card {
  background: var(--gradient);
  padding: 46px 24px;
  border-radius: 18px;
  font-weight: 600;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.icon-wrap {
  width: 84px;
  height: 84px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-wrap img {
  width: 140px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.service-header {
  font-size: 18px;
  width: 220px;
  margin: 0;
  letter-spacing: 0.5px;
}

.service-content {
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
}

.service-card:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-12px);
}

.service-card:hover .icon-wrap {
  background: var(--gradient);
}

.service-card:hover .service-content {
  color: var(--black);
}

.service-card:hover .icon-wrap img {
  filter: brightness(0) invert(1);
}









/* ================= PROCESS ================= */
.process {
  /* padding-top: 80px; */
   background-color: #f3f3f3;
}

.process h2 {
      background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-step {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 50px;
  align-items: center;
  /* margin-bottom: 90px; */
  animation: fadeUp 1s ease forwards;
padding-block: 40px;  
 padding-inline:  80px;
}


.process-step .text h3{
     background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-step.reverse {
  direction: rtl;
  background-color: white;
}

.process-step.reverse .text {
  direction: ltr;
}

.image-box {
  height: 280px;
  border-radius: 18px;
  background: var(--gradient); /* Fallback color */
  overflow: hidden; /* Keeps image within rounded corners */
  position: relative;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.image-box:hover img {
  transform: scale(1.05);
}

/* Add overlay for better text readability */
.image-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(245, 144, 47, 0.1),
    rgba(253, 166, 14, 0.1)
  );
  border-radius: 18px;
  pointer-events: none;
}

.text h3 {
  color: #000;
  font-size: 39px;
  font-weight: 900;
  margin-bottom: 16px;
}

.text p {
  color: var(--black);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= CTA ================= */
.cta {
  padding: 100px 80px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url("../assets/cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.cta-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.cta-content {
  text-align: left;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.2;
}


.cta-content .scaleup {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-content p {
  color: var(--white);
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 650px;
}



/* ================= CTA FORM ================= */
.cta-form {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  color: #000;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.cta-form h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-form h3 span {
  color: var(--orange);
}

.cta-form .form-sub {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #555;
  letter-spacing: 0.5px;
}

.cta-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 144, 47, 0.2);
  background: #fff;
}

.cta-form textarea {
  resize: none;
  height: 100px;
  min-height: 100px;
}

.cta-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
  margin: 10px 0 5px;
}

.cta-form .checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.cta-form .btn {
  margin-top: 15px;
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

/* Form message styling */
#formMessage {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
  display: none;
}



/* ================= RESPONSIVE CTA ================= */

@media (max-width: 1200px) {
  .cta {
    padding: 80px 60px;
  }
  
  .cta-wrapper {
    gap: 60px;
  }
  
  .cta-content h2,
  .cta-content .scaleup {
    font-size: 42px;
  }
  
  .cta-content p {
    font-size: 19px;
  }


   .services {
    padding: 50px 50px;
  }
  
  .services h2 {
    font-size: 42px;
    margin-bottom: 40px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-inline: 0;
  }
}

@media (max-width: 992px) {
  .cta {
    padding: 70px 40px;
  }
  
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .cta-content {
    text-align: center;
  }
  
  .cta-content p {
    margin: 0 auto 30px;
    text-align: center;
  }
  
  .cta-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .cta-content h2,
  .cta-content .scaleup {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 30px;
  }
  
  .cta-content h2,
  .cta-content .scaleup {
    font-size: 32px;
  }
  
  .cta-content p {
    font-size: 18px;
  }
  
  .cta-form {
    padding: 30px 25px;
  }
  
  .cta-form h3 {
    font-size: 22px;
  }

  .services {
    padding: 50px 30px;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
}

@media (max-width: 576px) {
  .cta {
    padding: 50px 20px;
  }
  
  .cta-content h2,
  .cta-content .scaleup {
    font-size: 28px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .cta-form {
    padding: 25px 20px;
  }
  
  .cta-form h3 {
    font-size: 20px;
  }
  
  .cta-form input,
  .cta-form textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  
  .cta-form .btn {
    padding: 14px;
    font-size: 15px;
  }

   
  .services {
    padding: 40px 20px;
  }
  
  .services h2 {
    font-size: 32px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
}

@media (max-width: 400px) {
  .cta-content h2,
  .cta-content .scaleup {
    font-size: 24px;
  }
  
  .cta-form {
    padding: 20px 15px;
  }
  
  .cta-form h3 {
    font-size: 18px;
  }
}





/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px;
  }

  .hero-content h1 {
    font-size: 44px;
     min-height: 110px;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* Media queries */


/* ================= ENHANCED RESPONSIVENESS ================= */
@media (max-width: 1200px) {
  .hero-wrapper {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
  
  .hero-content h1 {
    font-size: 52px;
  }
  
  .service-grid {
    gap: 30px;
  }
  
  .value-container {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 30px 40px;
    min-height: auto;
  }
  
  .navbar {
    padding-right: 0;
    flex-direction: column;
    gap: 20px;
  }
  
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-content {
    margin-top: 40px;
    text-align: center;
  }
  
  .hero-goals {
    justify-content: center;
    gap: 20px;
  }
  
  .hero-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-inline: 0;
  }
  
  .value-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .value-image img {
    max-width: 400px;
  }
  
  .process-step {
    grid-template-columns: 1fr;
    padding-inline: 40px;
  }
  
  .process-step.reverse {
    direction: ltr;
  }
  
 
  .value-section {
    padding: 70px 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 20px 30px;
  }
  
  .hero-content h1 {
    font-size: 42px;
  }
  
  .hero-sub {
    font-size: 18px;
  }
  
  .hero-goals {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  

  .value-content h2,
  .process h2,
  .cta h2 {
    font-size: 36px;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .process-step {
    padding-inline: 20px;
  }
  
  .text h3 {
    font-size: 32px;
  }
  
  .cta h2,
  .scaleup {
    font-size: 36px;
  }

}

@media (max-width: 576px) {
  .hero {
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 32px;
    min-height: 90px;
  }
  
  .hero-sub {
    font-size: 16px;
    margin: 15px 0 30px;
  }
  
  .logo span {
    font-size: 14px;
    transform: translateY(0);
    display: block;
    margin-top: 5px;
  }
  
  .logo {
    flex-direction: column;
    text-align: center;
  }
  
  .btn {
    padding: 14px 40px;
    width: 100%;
    text-align: center;
  }
  

  .value-content h2,
  .process h2,
  .cta h2 {
    font-size: 28px;
  }
  
  .scaleup {
    font-size: 28px;
  }
  
 
  .value-section {
    padding: 50px 20px;
  }
  
  .service-header {
    font-size: 16px;
    width: auto;
  }
  
  .text h3 {
    font-size: 26px;
  }
  
  .cta {
    padding: 40px 20px;
  }
  
  .process-step {
    padding-inline: 10px;
  }
  
  
}

/* Fix for very small screens */
@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 28px;
  }
  

  .value-content h2,
  .process h2,
  .cta h2 {
    font-size: 24px;
  }
  
  .text h3 {
    font-size: 22px;
  }
  
  .service-card {
    padding: 25px 15px;
  }
}



/* Animations */




/* ================= SCROLL ANIMATIONS ================= */
.animate-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for service cards */
.service-card.animate-hidden {
  transition-delay: calc(var(--index, 0) * 0.1s);
}

/* Add delay for process steps */
.process-step.animate-hidden {
  transition-delay: 0.2s;
}

/* Hero animation on load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-form {
  animation: fadeInUp 1s ease-out 0.3s both;
}





/* ================= FOOTER ================= */
.footer {
  background: #ffffff;
  padding: 50px 80px 20px;
  border-top: 1px solid #eee;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT: LOGO */
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  letter-spacing: 1px;
}

/* RIGHT: CONTACT & SOCIAL */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* Contact Info */
.contact-info p {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.contact-info p i {
  color: #f5902f;
  width: 20px;
  text-align: center;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin: 10px 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5902f;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-icons a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(245, 144, 47, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 10px;
}

.footer-bottom p {
  font-size: 14px;
  color: #333;
  /* margin-bottom: 10px; */
}

.footer-links {
  font-size: 14px;
}

.footer-links a {
  color: #f5902f;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #d97a1f;
  text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-left, .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .footer-right {
    align-items: center;
    text-align: center;
  }
  
  .contact-info p {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info p {
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .footer-links a {
    margin: 0;
  }
}


#typewriter-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
  min-height: 1.2em; /* Prevents layout shift */
}

.cursor {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: blink 1s infinite;
  font-weight: 700;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}


.footer-contact-btn {
  padding: 12px 30px !important;
  font-size: 14px !important;
  margin-bottom: 20px !important;
  width: auto !important;
  display: inline-block !important;
}

/* Responsive adjustments for footer button */
@media (max-width: 992px) {
  .footer-contact-btn {
    margin: 0 auto 20px !important;
  }
}

@media (max-width: 768px) {
  .footer-contact-btn {
    padding: 12px 25px !important;
  }
}

/* ================= FAQ ================= */
.faq-section {
  background: #ffffff;
  padding: 100px 80px;
}

.faq-section h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #000;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--orange);
}

.faq-question .icon {
  color: var(--orange);
  font-size: 24px;
  font-weight: 900;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
  line-height: 1;
}

/* Remove the rotate transform - this was causing the tilt */
.faq-item.active .icon {
  transform: none !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: #444;
  line-height: 1.7;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Better hover effect for FAQ items */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item.active {
  border-bottom: 2px solid var(--orange);
}

.faq-question span:first-child {
  flex: 1;
  text-align: left;
  padding-right: 20px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 40px;
  }
  
  .faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 30px;
  }
  
  .faq-section h2 {
    font-size: 32px;
  }
  
  .faq-question {
    font-size: 16px;
    padding: 18px 0;
  }
  
  .faq-question .icon {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 50px 20px;
  }
  
  .faq-section h2 {
    font-size: 24px;
  }
  
  .faq-question {
    font-size: 15px;
    padding: 16px 0;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
}






/* ================= NAVBAR MENU ================= */
.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--orange);
  background: rgba(245, 144, 47, 0.1);
  transform: translateY(-2px);
}

.nav-link.active {
  color: var(--orange);
  /* background: rgba(245, 144, 47, 0.1); */
}


.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  animation: slideIn 0.3s ease forwards;
}

/* Optional dropdown for Industries */
.industries-dropdown {
  position: relative;
}

.industries-dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  min-width: 200px;
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-content a:hover {
  background: rgba(245, 144, 47, 0.1);
  color: var(--orange);
}


@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 30px;
  }
}



/* ================= RESPONSIVE NAVBAR ================= */

/* For 1200px */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 30px;
  }
}

/* For 992px */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-menu {
    gap: 30px;
  }
}

/* For 768px */
@media (max-width: 768px) {
  .nav-menu {
    gap: 25px;
  }
  
  .nav-link {
    font-size: 15px;
    padding: 6px 12px;
  }
}

/* For 576px */
@media (max-width: 576px) {
  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 14px;
    padding: 5px 10px;
  }
  
  .logo span {
    font-size: 12px;
  }
}

/* For 400px */
@media (max-width: 400px) {
  .nav-menu {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 13px;
    padding: 4px 8px;
  }
}




    /* ================= KRP DIFFERENCE ================= */
    .krp-difference {
    background: #ffffff;
    /* padding: 100px 80px; */
    }

    .krp-diff-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: stretch;
    padding: 50px 80px;
    /* margin-bottom: 20vh; */
    /* height: 100vh; */
    }

    .krp-diff-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }

    .krp-diff-intro {
    color: #333;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    }

    /* Accordion */
    .krp-item {
    border-bottom: 1px solid #908d8d;
    }


    .krp-item:hover .krp-answer {
  max-height: 1000px;
}

/* Change icon on hover */
.krp-item:hover .icon {
  content: "−";
}


.krp-item {
  transition: background 0.3s ease;
}

.krp-item:hover {
  background: rgba(245, 144, 47, 0.04);
}

    .krp-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    color: #000000;
    }

    .krp-number {
    color: var(--orange);
    font-weight: 800;
    }

    .krp-question .icon {
    margin-left: auto;
    color: var(--orange);
    font-size: 22px;
    }

    .krp-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    }

    .krp-answer p {
    padding: 0 0 20px 0px;
    color: #444;
    line-height: 1.7;
    }

  .krp-item.active .krp-answer {
  max-height: 1000px;
}

   .krp-media {
  width: 100%;
  /* min-height: 100%; */
  border-radius: 24px;
  overflow: hidden;
  background: var(--gradient);
  display: flex;
}

    .krp-diff-right {
    display: flex;
    align-items: stretch;
    }


   .krp-media img,
.krp-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

/* Subtle zoom when accordion opens */
.krp-item.active ~ .krp-diff-right .krp-media img,
.krp-item.active ~ .krp-diff-right .krp-media video {
  transform: scale(1.03);
}


.krp-diff-container.reverse {
  grid-template-columns: 1fr 1.4fr;
    background-color: #f3f3f3;
}

.krp-diff-container.reverse .krp-diff-left {
  order: 2;
}

.krp-diff-container.reverse .krp-diff-right {
  order: 1;
}


.krp-diff-container.reverse {
  grid-template-columns: 1fr 1.4fr;
}

/* Tablet & below: stack normally */
@media (max-width: 992px) {
  .krp-diff-container.reverse {
    grid-template-columns: 1fr;
  }

  .krp-diff-container.reverse .krp-diff-left {
    order: 1;
  }

  .krp-diff-container.reverse .krp-diff-right {
    order: 2;
  }
}   


    .krp-media {
    transition: min-height 0.4s ease;
    }

    @media (max-width: 992px) {
    .krp-diff-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .krp-media {
        max-width: 500px;
        margin: 0 auto;
    }
    }

    @media (max-width: 576px) {
   

    .krp-diff-left h2 {
        font-size: 32px;
    }

    .krp-question {
        font-size: 14px;
    }
    }



    @media (max-width: 1200px) {
 

  .krp-diff-container {
    gap: 60px;
  }

  .krp-diff-left h2 {
    font-size: 42px;
  }

  .krp-diff-intro {
    font-size: 17px;
  }
}



@media (max-width: 992px) {
  .krp-diff-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .krp-diff-right {
    justify-content: center;
  }

  .krp-media {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .krp-diff-left h2 {
    text-align: center;
  }

  .krp-diff-intro {
    text-align: center;
    margin-bottom: 30px;
  }
}



@media (max-width: 768px) {
 

  .krp-diff-left h2 {
    font-size: 34px;
  }

  .krp-diff-intro {
    font-size: 16px;
  }

  .krp-question {
    font-size: 15px;
    gap: 10px;
  }

  .krp-number {
    font-size: 14px;
  }

  .krp-question .icon {
    font-size: 20px;
  }
}



@media (max-width: 576px) {
 

  .krp-diff-left h2 {
    font-size: 26px;
    text-align: left;
  }

  .krp-diff-intro {
    font-size: 15px;
    text-align: left;
  }

  .krp-question {
    font-size: 14px;
    padding: 14px 0;
  }

  .krp-answer p {
    /* padding-left: 28px; */
    font-size: 14px;
  }

  .krp-media {
    border-radius: 18px;
  }
}

@media (max-width: 400px) {
  .krp-diff-left h2 {
    font-size: 22px;
  }

  .krp-question {
    font-size: 13px;
  }

  .krp-question .icon {
    font-size: 18px;
  }
}


/* ================= STATS SECTION ================= */
.stats-section {
  background: var(--gradient);
  padding: 50px 50px;
}

.stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-item p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding: 50px 20px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-item h3 {
    font-size: 42px;
  }
}





/* ================= INDUSTRIES ================= */
.industries-section {
  background: #ffffff;
  padding: 100px 80px;
}

.industries-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.industries-wrapper h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.industries-intro {
  max-width: 800px;
  margin: 0 auto 70px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* GRID */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: left;
}

/* CARD */
.industry-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* IMAGE BLOCK */
.industry-image {
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--gradient);
  position: relative;
  cursor: pointer;
}


.industry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.industry-card:hover .industry-image img {
  transform: scale(1.08);
}

.industry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(242, 103, 58, 0.45),
    rgba(253, 166, 14, 0.45)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.industry-card:hover .industry-image::after {
  opacity: 1;
}

/* TEXT */
.industry-card h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
}

.industry-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .industries-section {
    padding: 80px 60px;
  }

  .industries-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .industries-section {
    padding: 60px 20px;
  }

  .industries-wrapper h2 {
    font-size: 32px;
  }

  .industries-intro {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .industry-image {
    height: 160px;
  }
}




/* Inner orange dot */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #f5902f;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(245, 144, 47, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border 0.25s ease;
}

/* Click ripple */
.cursor-ring.ripple {
  animation: cursorRipple 0.6s ease-out;
}

@keyframes cursorRipple {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  to {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

/* Disable on mobile */
@media (max-width: 992px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}



* {
  scrollbar-width:auto;
  scrollbar-color: #f5902f #0b0b0b;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #f2673a, #fda60e);
  border-radius: 10px;
  border: 3px solid #0b0b0b;
  transition: background 0.3s ease;
}

/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #fda60e, #f2673a);
}

/* Active (on click) */
::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, #f5902f, #fda60e);
}