/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #111827;
  background: #f8fafc;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 8%;
  align-items: center;
  position: absolute;
  width: 100%;
  z-index: 10;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}
/* CONTACT TEXT */
.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #0b0b0b;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.9;
}

.contact-info span:hover {
  opacity: 1;
}

/* ICON */
.icon {
  font-style: normal;
  font-size: 14px;
}
.logo img {
  height: 45px;
}

.btn-nav {
  background: linear-gradient(135deg, #2f6df6, #1e40af);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 500;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47,109,246,0.4);
}

/* HERO */
/* .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;

  background: radial-gradient(circle at 20% 30%, #1e3a8a33, transparent),
              radial-gradient(circle at 80% 70%, #f59e0b22, transparent),
              linear-gradient(135deg, #020617, #0a0f1f, #020617);

  animation: bgMove 10s infinite alternate;
} */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;

  background: radial-gradient(circle at 20% 30%, #2f6df615, transparent),
              radial-gradient(circle at 80% 70%, #f59e0b15, transparent),
              linear-gradient(135deg, #ffffff, #f1f5f9, #ffffff);

  animation: bgMove 10s infinite alternate;
}

@keyframes bgMove {
  from {background-position: 0% 0%;}
  to {background-position: 100% 100%;}
}

/* .hero-content {
  max-width: 850px;
  animation: fadeUp 1s ease forwards;
} */

.highlight:hover,
.accent:hover {
  text-shadow: 0 0 15px rgba(47,109,246,0.4);
}
.hero-content {
  max-width: 850px;
  animation: fadeUp 1s ease forwards;
  /* background: rgba(255,255,255,0.6); */
  padding: 40px;
  border-radius: 20px;
  /* backdrop-filter: blur(10px); */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
    transform: translateY(0);
  }
}

.tag {
  font-size: 22px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* HEADING */
h1 {
  font-size: 56px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 700;
  color: #0f172a; /* dark text for light bg */
}
/* ORANGE WORD */
.highlight {
  color: #f59e0b;
  position: relative;
}

.highlight::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  /* background: #f59e0b; */
  left: 0;
  bottom: -6px;
  border-radius: 10px;
}

/* BLUE WORD */
.accent {
  color: #2f6df6;
  position: relative;
}

.accent::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  /* background: #2f6df6; */
  left: 0;
  bottom: -6px;
  border-radius: 10px;
}

/* TEXT */
.subtext {
  color: #475569;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 1.6;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #2f6df6, #1e40af);
  padding: 16px 34px;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(47,109,246,0.5);
}

/* RIPPLE EFFECT */
.btn-primary .ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}


.brands {
  margin-top: -120px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

/* MAIN BOX */
.brands-box {
    overflow: hidden;
  background: #ffffff;
  border-radius: 25px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* LEFT TEXT */
.brands-left h3 {
  font-size: 28px;
  color: #0f172a;
  font-weight: 600;
  white-space: nowrap;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 60px;
  background: #e2e8f0;
}

/* LOGOS */
.brands-right {
    position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  flex: 1;
}

/* TRACK (ANIMATION) */
/* .logo-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scroll 20s linear infinite;
} */
.logo-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll 25s linear infinite;
}
/* LOGOS */
.logo-track img {
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s;
}
.logo-track:hover {
  animation-play-state: paused;
}
.logo-track img:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media(max-width:768px) {
    
  .brands-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 60px 10px 34px 10px;
  }

  .divider {
    display: none;
  }

  .brands-right {
    justify-content: center;
  }
}



/* RIGHT SIDE BAR */
.contact-bar {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  z-index: 999;
}

.contact-item {
  background: #f59e0b;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: 0.3s;
  font-size: 13px;
  text-align: center;
}

.contact-item .icon {
  font-size: 22px;
  margin-bottom: 6px;
}

/* hover effect */
.contact-item:hover {
  background: #ea8a04;
  transform: translateX(-5px);
}

/* remove border last */
.contact-item:last-child {
  border-bottom: none;
}

/* WHATSAPP BUTTON */
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  animation: pulse 2s infinite;
}

/* pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}
@media(max-width:768px) {

  /* convert side bar to bottom bar */
  .contact-bar {
    bottom: 0;
    top: auto;
    right: 0;
    width: 100%;
    display: flex;
    transform: none;
  }

  .contact-item {
    flex: 1;
    height: 70px;
    font-size: 12px;
  }

  .contact-item span:last-child {
    font-size: 11px;
  }

  /* whatsapp stays above */
  .whatsapp {
    bottom: 80px;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brands-right::before,
.brands-right::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.brands-right::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.brands-right::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}



/* ===== SERVICES SECTION ===== */
.services {
  padding: 50px 120px;
  text-align: center;
  background: #f8fafc;
}

/* TAG */
.services .tag {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* HEADING */
.services h2 {
  font-size: 42px;
  color: #0f172a;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.services .desc {
  max-width: 700px;
  margin: auto;
  color: #475569;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* ===== GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ===== CARD BASE ===== */
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;

  transition: all 0.4s ease;
}

/* FLOAT ANIMATION (BEFORE HOVER) */
.service-card:not(.active) {
  animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== HOVER EFFECT ===== */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  animation: none;
}

/* ===== GLOW BORDER ===== */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(120deg, transparent, #2f6df6, #f59e0b, transparent);
  opacity: 0;
  transition: 0.4s;

  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* SHOW BORDER ON HOVER */
.service-card:hover::before {
  opacity: 1;
}


/* ===== HEADING ===== */
.service-card h3 {
  margin-bottom: 15px;
  font-size: 18px;
}

.service-card p{
color:#555;
line-height:1.6;
font-size: 15px;
margin-bottom:15px;
}
/* ===== LIST ===== */
.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  margin-bottom: 10px;
  color: #475569;
  position: relative;
  padding-left: 20px;
  transition: transform 0.3s ease;
}

/* STAR ICON */
.service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #f59e0b;
}

/* LIST HOVER ANIMATION */
.service-card:hover ul li {
  transform: translateX(6px);
}

/* ===== BUTTON ===== */
.center-btn {
  margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 1200px) {
  .services {
    padding: 80px 40px;
  }
}

@media(max-width: 992px) {
    .navbar {
    padding: 17px 5%;
}
    .contact-info {
        display: none;
    }
    .logo img {
        height: 38px;
    }
    .btn-nav {
        padding: 11px 8px;
        border-radius: 0px;
    }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
    h1 {
    font-size: 42px;
}
}

@media(max-width: 600px) {
  .services {
    padding: 60px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services h2 {
    font-size: 28px;
  }
}




/* SECTION */
.work {
  padding: 0px 40px;
  text-align: center;
  background: #f8fafc;
}

.work .tag {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

.work h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #0f172a;
}

.work .desc {
  color: #475569;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}


/* SLIDER WRAPPER */
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 30px;
  transition: transform 0.6s ease;
  align-items: center;
}

/* CARD */
.slide {
  min-width: 60%;
  opacity: 0.4;
  transform: scale(0.9);
  transition: 0.5s;

  background: #fff;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ACTIVE CENTER CARD */
.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* SIDE CARDS */
.slide.prev,
.slide.next {
  opacity: 0.6;
  transform: scale(0.95);
}
/* SLIDER */
/* .slider-container {
  position: relative;
  overflow: hidden;
} */

/* .slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
} */

/* CARD */
/* .slide {
  min-width: 80%;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 30px;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
} */

/* TEXT */
.slide-content {
  flex: 1;
  text-align: left;
}

.slide-content h3 {
  margin-top: 20px;
  font-size: 22px;
  margin-bottom: 10px;
}
.slide-content h4 {
  margin-top: 20px;
  font-size: 16px;
}
.slide-content p {
  color: #475569; 
  line-height:1.6;
}

/* IMAGE BOX */
.image-box {
  flex: 1;
  height: 250px;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

/* IMAGE */
.image-box img {
  width: 100%;
  transition: transform 1.5s ease;
}

/* HOVER SCROLL EFFECT */
.image-box:hover img {
  transform: translateY(-40%);
}

/* NAV BUTTONS */
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2f6df6;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 220px; }
.next { right: 220px; }

.nav:hover {
  background: #1e40af;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .slide {
    flex-direction: column;
  }

  .slide {
    min-width: 100%;
  }
  .slider-container {
    padding: 0px 0;
}

.prev { left: 10px; }
.next { right: 10px; }
}

/* TABLET */
@media (max-width: 1024px) {

  .slide {
    min-width: 80%;
  }

  .nav {
    width: 40px;
    height: 40px;
    top:5%;
  }

.prev { left: 10px; }
.next { right: 10px; }
}

/* MOBILE */
@media (max-width: 768px) {

  .work {
    padding: 0 15px;
  }

  .slider-container {
    padding: 10px 0;
  }

  .slide {
    min-width: 100%;
    flex-direction: column;
    padding: 20px;
  }

  .slide-content {
    text-align: left;
  }

  .image-box {
    width: 100%;
    height: 200px;
  }

  .nav {
    width: 35px;
    height: 35px;
    top:5%;
    font-size: 14px;
  }
.prev { left: 10px; }
.next { right: 10px; }


}

    /* SECTION */
.cta {
  padding: 80px 20px;
  background: #f8fafc;
}

/* BOX */
.cta-box {
  max-width: 1200px;
  margin: auto;
  padding: 60px;
  border-radius: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  /* LIGHT GRADIENT (YOUR THEME) */
  background: linear-gradient(135deg, #2f6df6, #1e40af);
  color: #fff;

  position: relative;
  overflow: hidden;
}

/* GRID OVERLAY EFFECT */
.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

/* LEFT */
.cta-left {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.cta-left .tag {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.cta-left h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 25px;
}

/* CONTACT */
.cta-contact {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-contact span {
  background: #ffffff;
  color: #0a0a0a;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
}

/* RIGHT BUTTON */
.cta-right {
  position: relative;
  z-index: 2;
}

.cta-btn {
  background: #ffffff;
  color: #1e40af;
  padding: 14px 30px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {

.cta {
    padding: 20px 20px;
}
}
@media(max-width:768px) {

.cta {
    padding: 20px 20px;
}
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .cta-left h2 {
    font-size: 26px;
  }

  .cta-contact {
    justify-content: center;
  }

}

/* process section*/
/* SECTION */

.process-section{
padding:30px 20px;
background:#f7f7f7;
}

.container{
max-width:1200px;
margin:auto;
}

/* TITLE */

.process-title{
text-align:center;
font-size:48px;
font-weight:600;
margin-bottom:80px;
color:#2c2c2c;
}

/* WRAPPER */

.process-wrapper{
display:flex;
align-items:flex-start;
justify-content:space-between;
gap:16px;
flex-wrap:wrap;
}

/* STEP */

.process-item{
flex:1;
min-width:220px;
text-align:left;
}

/* NUMBER */
.process-number{
position:relative;
display:inline-block;
font-size:72px;
font-weight:700;
color:transparent;
-webkit-text-stroke:2px #2f55a4;
margin-bottom:15px;
z-index:2;
}

/* light background circle */

.process-number::before{
content:"";
position:absolute;
width:95px;
height:95px;
background:#E9EEF7;
border-radius:50%;
top:-15px;
left:10px;
z-index:-2;
}

/* grey circle */

.process-number::after{
content:"";
position:absolute;
width:70px;
height:70px;
background:#D8DEE8;
border-radius:50%;
top:-5px;
left:30px;
z-index:-1;
}
/* TITLE */

.process-item h3{
font-size:24px;
color:#2f55a4;
margin-bottom:10px;
}

/* TEXT */

.process-item p{
color:#555;
line-height:1.6;
font-size:16px;
}

/* ARROW */

.process-arrow{
font-size:68px;
color:#2f55a4;
display:flex;
align-items:center;
}

/* TABLET */

@media (max-width:992px){

.process-wrapper{
flex-direction:column;
align-items:center;
text-align:center;
}

.process-arrow{
display:none;
}

.process-item{
max-width:500px;
}

.process-number{
font-size:52px;
}

.process-number::before{
width:70px;
height:70px;
}

.process-number::after{
width:50px;
height:50px;
}

}

/* MOBILE */

@media (max-width:600px){

.process-title{
font-size:32px;
margin-bottom:40px;
text-align:center;
}

.process-wrapper{
flex-direction:column;
align-items:center;
text-align:center;
gap:40px;
}

.process-item{
text-align:center;
max-width:320px;
margin:auto;
}

/* NUMBER */

.process-number{
font-size:52px;
display:inline-block;
}

/* center circles */

.process-number::before{
left:50%;
transform:translateX(-50%);
width:70px;
height:70px;
}

.process-number::after{
left:50%;
transform:translateX(-50%);
width:50px;
height:50px;
}

.process-item h3{
font-size:20px;
}

.process-item p{
font-size:15px;
}

}
/* end process section */


    /* SECTION */
.why {
  padding: 50px 120px;
  text-align: center;
  background: #f8fafc;
}

/* TAG */
.why .tag {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

/* TITLE */
.why h2 {
  font-size: 42px;
  color: #0f172a;
  margin: 10px 0;
}

/* DESC */
.why .desc {
  max-width: 700px;
  margin: auto;
  color: #475569;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;

  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  border: 1px solid #e2e8f0;

  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* ICON */
.why-card .icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #2f6df6;
}

/* TEXT */
.why-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.why-card p {
  color: #475569;
  font-size: 14px;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* GRADIENT GLOW */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, #2f6df6, #f59e0b, transparent);
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 0.1;
}

/* BUTTON */
.center-btn {
  margin-top: 40px;
}
/* TABLET */
@media(max-width: 992px) {
  .why {
    padding: 80px 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width: 600px) {
  .why {
    padding: 60px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why h2 {
    font-size: 28px;
  }
}

    /* SECTION */
.industries {
  padding: 20px 120px;
  text-align: center;
  background: #f8fafc;
}

/* TAG */
.industries .tag {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

/* TITLE */
.industries h2 {
  font-size: 42px;
  margin: 10px 0 60px;
  color: #0f172a;
}

/* GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
}

/* CARD */
.industry-card {
  padding: 40px 20px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #ffffff;
  transition: 0.3s;
  /* background: linear-gradient(135deg, #2f6df6); */
}

/* IMAGE ICON */
.industry-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: 0.3s;
  filter: brightness(2) invert(1);
}

/* TEXT */
.industry-card p {
  color: #0f172a;
  font-size: 15px;
}

/* HOVER */
.industry-card:hover {
  background: linear-gradient(135deg, #2f6df6, #1e40af);
  transform: translateY(-5px);
}

.industry-card:hover p {
  color: #fff;
}

/* IMAGE EFFECT */
.industry-card:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(1); /* white icon effect */
}

/* TABLET */
@media(max-width: 992px) {
  .industries {
    padding: 80px 40px;
  }

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media(max-width: 600px) {
  .industries {
    padding: 60px 20px;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries h2 {
    font-size: 28px;
  }
}
   
/* SECTION */
.lead {
  padding: 100px 20px;
  background: #f8fafc;
}

/* MAIN BOX */
.lead-box {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  border-radius: 25px;
  overflow: hidden;

  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* LEFT */
.lead-left {
  flex: 1;
  padding: 50px;
}

.tag {
  color: #f59e0b;
  font-size: 22px;
  letter-spacing: 2px;
}

.lead-left h2 {
  font-size: 36px;
  margin: 10px 0 30px;
  color: #0f172a;
}

/* FORM */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 2px solid #e2e8f0;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #2f6df6;
}

/* TEXTAREA */
.lead-form textarea {
  height: 80px;
  resize: none;
}

/* BUTTON */
.submit-btn {
  width: fit-content;
  padding: 12px 30px;
  border-radius: 10px;
  border: 2px solid #f59e0b;
  background: transparent;
  color: #f59e0b;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #f59e0b;
  color: #fff;
}

/* RIGHT SIDE */
.lead-right {
  flex: 1;
  background: linear-gradient(135deg, #2f6df6, #1e40af);
  color: #fff;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 50px;
  gap: 30px;

  border-top-left-radius: 100px;
}

/* STATS */
.stat h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.stat p {
  font-size: 14px;
  opacity: 0.8;
}

/* TABLET */
@media(max-width: 992px) {
    .lead {
    padding: 50px 20px;
}
  .lead-box {
    flex-direction: column;
  }

  .lead-right {
    border-radius: 0;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media(max-width: 600px) {
    .lead {
    padding: 50px 20px;
}

  .lead-left {
    padding: 30px 20px;
  }

  .lead-left h2 {
    font-size: 26px;
  }

  .form-row {
    flex-direction: column;
  }

  .lead-right {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* FOOTER MAIN */
.main-footer{
    background:#000532;
    padding:50px 20px;
    text-align:center;
    color:#ffffff;
}

/* FOOTER CONTAINER */
.footer-inner{
    max-width:900px;
    margin:auto;
}

/* LOGO */
.footer-logo img{
    width:250px;
    margin-bottom:20px;
}

/* TEXT */
.footer-text{
    font-size:14px;
    line-height:1.7;
    color:#dcdcdc;
    margin-bottom:20px;
}

/* LINKS */
.footer-links{
    font-size:14px;
}

.footer-links a{
    color:#ffffff;
    text-decoration:none;
    margin:0 8px;
    transition:0.3s;
}

.footer-links a:hover{
    text-decoration:underline;
}

.footer-links span{
    color:#ffffff;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width:768px){

    .demo-btn {
    padding: 15px 7px;
}


.footer-logo img{
    width:200px;
}

.footer-text{
    font-size:13px;
}

}

/* Mobile */
@media (max-width:480px){
    .demo-btn {
    padding: 15px 7px;
}
.logo img {
    height: 35px;
}

.main-footer{
    padding:40px 15px;
}

.footer-logo img{
    width:200px;
}

.footer-text{
    font-size:12px;
    line-height:1.6;
}

.footer-links{
    font-size:12px;
}

}
