html {
  scroll-behavior: smooth;
}



.studio-section { background: #AD9069; padding-top: 6rem; padding-bottom: 6rem; }
.studio-panel {
  position: relative;
  margin-top: 2rem;
  background: #111111; /* fallback background */
  border-radius: 0;
  padding: 2.5rem;
  color: #fff;
  overflow: hidden; /* keeps background video contained */
}
/* Background video */
.studio-panel .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* makes video act like background-size: cover */
  z-index: 0;
  opacity: 0.5; /* adjust to make text more readable */
}

/* Content stays on top */
.studio-panel .studio-copy,
.studio-panel .studio-tiles {
  position: relative;
  z-index: 1;
}
/* Base style remains the same */
.studio-tile {
  position: relative;
  width: 173px;
  height: 150px;
  border-radius: 16px;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  background-size: cover;
 
  border: 1px solid rgba(47,44,31,1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}

/* Add a dark overlay to improve text readability */
.studio-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;
  z-index: 0;
  transition: background .3s ease;
}  


.studio-tile .num,
.studio-tile .label {
  position: relative;
  z-index: 1; /* keep text above overlay */
}
/* Hover state */
.studio-tile:hover {
  transform: translateY(-2px) scale(1.04);
  background: #FFCC00 !important; /* solid bg color */
  border-color: #FFCC00;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  color: #2F2C1F !important; /* font color */
}

/* Remove overlay on hover */
.studio-tile:hover::before {
  background: transparent;
}

/* Hover effect */
/* .studio-tile:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 40px rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.28);
} */

/* Specific background images */
.tile-sketchers {
  background-image: url("../images/home/tile-skechers.jpg");
  background-position: left center;
  background-repeat: no-repeat;
}

.tile-jcb {
  background-image: url("../images/home/tile-jcb.jpg");
  background-position: center center;
  background-repeat: no-repeat;
}

.tile-7eleven {
  background-image: url("../images/home/tile-7eleven.jpg");
  background-position: right center;
  background-repeat: no-repeat;
}

/* .studio-panel { margin-top: 8rem; background: #111111; border-radius: 0; padding: 2.5rem; color: #fff; } */
.studio-copy { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 400; font-size: 20px; line-height: 1.7; margin: 0 0 6rem 0; max-width: 720px; }
.studio-tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(173px, 173px)); justify-content: start; align-items: start; gap: 20px; margin-top: 1.5rem; }
/* .studio-tile { position: relative; width: 173px; height: 150px; border-radius: 16px; text-decoration: none; color: rgba(255,255,255,0.75); background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)); border: 1px solid rgba(47,44,31,1); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 20px rgba(0,0,0,0.45); backdrop-filter: blur(8px) saturate(160%); display: flex; flex-direction: column; justify-content: space-between; padding: 12px 14px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; } */
.studio-tile:hover { transform: translateY(-2px) scale(1.04); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 40px rgba(0,0,0,0.55); border-color: rgba(255,255,255,0.28); }
.studio-tile .num { font-family: 'Poppins'; font-weight: 600; font-size: 20px; opacity: .6; }
.studio-tile .label { font-family: 'Poppins'; font-weight: 400; font-size: 18px; align-self: center; opacity: .8; }

/* About section styles */
.about-section { 
	background: #AD9069; 
	padding-top: 6rem; 
	padding-bottom: 6rem; 
	position: relative; 
	overflow: hidden; 
}

.about-background {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.about-flowing-lines {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	filter: blur(1px);
}

.about-long-circles {
	position: absolute;
	width: 60%;
	height: 100%;
	object-fit: cover;
	opacity: 0.35;
	z-index: 1;
	filter: blur(0.5px);
  left: 11%;
}

.about-ellipse {
	position: absolute;
	width: auto;
	height: auto;
	max-width: 500px;
	opacity: 0.45;
	filter: blur(1.5px);
}

.about-ellipse-1 {
	top: 0px;
	right: -180px;
}

.about-ellipse-2 {
	bottom: -200px;
	left: -150px;
}

.about-dotted-lines {
	position: absolute;
	inset: 0;
}

.dotted-line {
	position: absolute;
	background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);
	background-size: 8px 8px;
	background-repeat: repeat;
}

.dotted-line-1 {
	width: 120px;
	height: 2px;
	top: 15%;
	left: 8%;
	transform: rotate(-15deg);
}

.dotted-line-2 {
	width: 80px;
	height: 2px;
	top: 30%;
	right: 20%;
	transform: rotate(25deg);
}

.dotted-line-3 {
	width: 60px;
	height: 2px;
	top: 55%;
	left: 45%;
	transform: rotate(-10deg);
}

.about-heading {
	font-family: 'Urbanist', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-weight: 800;
	font-size: clamp(36px, 4.2vw, 56px);
	color: #fff;
	position: relative;
	z-index: 2;
}

.about-main-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 12px;
	padding: 20px 10px;
	position: relative;
	z-index: 2;
	backdrop-filter: blur(5px);
	width: 690px;
	height: 506px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
}

.about-main-text {
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.7;
	color: #fff;
	margin: 0;
}

.about-card {
	background: #000;
	border-radius: 8px;
	padding: 2rem;
	position: relative;
	z-index: 2;
	height: 240px;
  overflow: hidden; /* keeps video inside card */
}
/* background video */
.about-card-1 .about-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  z-index: 0;
  opacity: 0.4; /* make video darker so text is readable */
}
/* keep content above video */
.about-card-1 .about-card-title,
.about-card-1 .about-card-text {
  position: relative;
  z-index: 1;
}

.about-card-title {
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	margin-bottom: 1rem;
  
}

.about-card-text {
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	margin: 0;
	opacity: 0.9;
}

@media (max-width: 991.98px) {
	.studio-tiles { flex-wrap: wrap; }
}
:root {
	--nav-bg: #40403E;
	--glass-bg: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.22);
	--text-shadow: 0 1px 0 rgba(0,0,0,.5);
}

html, body { height: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; background: #000; }

.hero-section {
	background: radial-gradient(1200px 500px at 50% 25%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%), #000;
	background-image: url('../images/home/Hero page 30 sec 4.png');
	background-size: cover;
	background-position: center bottom;
	color: #fff;
}

/* Custom container width */
.container-custom { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Center menu pill */
.menu-pill {
	background: var(--nav-bg);
	border-radius: 10px;
	backdrop-filter: saturate(140%);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 2px 10px rgba(0,0,0,.35);
	width: 524px;
	height: 52px;
	padding: 0 12px !important;
	align-items: center;
}
.menu-pill .nav-link { opacity: .9; }
.menu-pill .nav-link:hover { opacity: 1; }

/* Navbar positioning and grid so pill is centered between logo and contact */
.navbar { top: 55px !important; }
.nav-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 16px; }
.nav-grid .menu-pill { justify-self: center; }

/* Glass buttons bottom */
.glass-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 14px;
	color: #fff;
	font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-weight: 700;
	font-size: 42px;
	line-height: 63px;
	letter-spacing: .5px;
	text-decoration: none;
	background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.00));
	border: 1px solid rgba(255,255,255,0.18);
	backdrop-filter: blur(8px) saturate(160%);
	box-shadow: 0 10px 24px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.25);
	text-shadow: var(--text-shadow);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.glass-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.35); border-color: rgba(255,255,255,.36); }
.glass-btn:active { transform: translateY(0); box-shadow: 0 8px 16px rgba(0,0,0,.45); }

/* Navbar tweaks */
.navbar .navbar-brand img { filter: drop-shadow(0 1px 1px rgba(0,0,0,.4)); width: 148px; height: auto; }
.navbar .nav-link { color: #fff; }
.navbar .nav-link.active, .navbar .nav-link:focus { color: #fff; }

/* Contact button style matching nav */
.btn-contact {
	background-color: var(--nav-bg);
	color: #ffffff;
	border-radius: 10px;
	border: 1px solid rgba(255,255,255,0.08);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 2px 10px rgba(0,0,0,.35);
}
.btn-contact:hover { filter: brightness(1.05); color: #fff; }
.btn-contact:active { filter: brightness(.98); }

/* Precisely position the two bottom buttons */
.hero-buttons { position: absolute; left: 80px; width: calc(100% - 160px); top: 647px; display: flex; justify-content: space-between; gap: 24px; z-index: 2; }

/* Responsive spacing to push buttons near bottom */
@media (min-height: 700px) {
	.hero-section .container-custom { padding-top: 96px; padding-bottom: 56px; }
}

/* Laptop layout: keep buttons near bottom for common laptop sizes */
@media (min-width: 1181px) and (max-width: 1600px) {
	.hero-buttons { top: auto; bottom: 40px; }
}

@media (max-width: 1180px) {
	.hero-buttons { position: static; left: auto; right: auto; top: auto; padding: 24px 16px 48px; display: grid; grid-template-columns: 1fr; gap: 16px; }
	.glass-btn { text-align: center; }
}

@media (max-width: 991.98px) {
	.menu-pill { display: none !important; }
	.hero-section { background-position: center bottom; }
}

/* Impact section styles */
.impact-section {padding: 10rem 0; position: relative; overflow: hidden; color: #0c0c0c; }
.impact-media-wrapper { position: absolute; inset: 0; z-index: 0; }
.impact-video { width: 100%; height: 100%; object-fit: cover; }
.impact-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }

/* Impact section spacing */
.impact-section .container-custom { padding-top: 4rem !important; padding-bottom: 4rem !important; }

.impact-heading { font-family: 'Urbanist', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 800; font-size: clamp(36px, 4.2vw, 56px); color: #f2f2f2; }

.impact-card { background: #F3F1E0; border-radius: 16px; box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 18px 40px rgba(0,0,0,0.28); padding: 3rem 1.5rem !important; }
.impact-counter { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 600; font-size: 60px; line-height: 63px; color: #AD9069; text-align: center; }
.impact-card-title { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 600; font-size: 36px; color: #111; margin-top: 12px; margin-bottom: 20px !important; text-align: center; }
.impact-card-text { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 400; font-size: 16px; color: #000; opacity: .92; text-align: center; }

/* Small Let's Chat button */
.btn-chat-small { display: inline-flex; align-items: center; gap: 10px; background: #F3F1E0; color: #0B0B0B; border-radius: 12px; padding: 4px 18px; text-decoration: none; font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; font-weight: 600; font-size: 18px; line-height: 40px; border: 1px solid rgba(0,0,0,0.12); }
.btn-chat-small:hover { filter: brightness(0.98); color: #0B0B0B; }
.btn-chat-small .icon { display: inline-flex; align-items: center; justify-content: center; }
.services-section {
	background: #fdfae9;
	padding: 6rem 0px;
	font-family: "Poppins", sans-serif;
  }
  
  .services-header h2 {
	font-size: 56px;
	font-weight: 700;
	font-family: 'Urbanist';
	color: #090707;

  }
  .services-header h5{
    font-size: 30px;
    font-family: 'Poppins';
    color: #090707;
    line-height: 60px;
    letter-spacing: -2px;
	font-weight: 700;
}

  
.services-header p {
    /* max-width: 903px; */
	margin-bottom: 50px;
    color: #090707;
    font-size: 28px;
    line-height: 34px;
     font-weight: lighter;
    font-family: 'Poppins'; 
    letter-spacing: 0;
}
  /* Two column row */
  .service-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 80px;
	gap: 10rem;
  padding: 4rem 0;
  }
  
  /* Reverse layout for alternating */
  .service-row.reverse {
	flex-direction: row-reverse;
  }
  
  .service-text {
	flex: 1;
	min-width: 300px;
  }
  
  .service-text h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #090707;;
    line-height: 60px;
	font-family: 'Urbanist';
}
  
.service-text p {
    color: #212121;
    font-size: 20px;
    line-height: 32px;
    font-family: 'Poppins';
    font-weight: 400;
}
  
  /* Push image to extreme corner */
  .service-img {
	flex: 1;
	display: flex;
	justify-content: flex-end;
  }
  
  .service-row.reverse .service-img {
	justify-content: flex-start;
  }
  
  .service-img img {
	max-width: 90%;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.service-row,
	.service-row.reverse {
	  flex-direction: column;
	  text-align: center;
	}
	.service-img {
	  justify-content: center !important;
	}
	.service-img img {
	  max-width: 100%;
	}
  }
  .portfolio {
	background: #AD9069;
	padding: 8rem 0px;
	
  }
  .portfolio h2{
    font-size: 56px;
    font-weight: 700;
    font-family: 'Urbanist';
    color: #fff;
  }
  .portfolio p{
    font-size: 24px;
    font-family: 'Poppins';
   
  }
  .portfolio .card{
    background: none;
    /* border-radius: 16px; */
    
  }
  /* .portfolio .card-img-top{
    border-radius: 16px;
  } */
  .portfolio .card-body{
  color: #F3F1E0;
  margin-top: 30px;
  }
 .portfolio .card-body h5{
    font-size: 24px;
    font-family: 'Urbanist';
    font-weight: 700;
    color: #F3F1E0;
  }
  .portfolio .card-body p{
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #F3F1E0;
  }
  .row.custom-gap {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem; /* control spacing between columns */
    margin-bottom: 40px;
    }
  /* Make each column flexible */
  .row.custom-gap > .col-md-6 {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 250px; /* ensures responsive wrap on small screens */
  padding: 0px 25px;  
  }
/* end ortfolio */

  .testimonial-section {
    
   
    padding: 6rem 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
	background: linear-gradient(180deg, #F3F1E0 32%, #AD9069 100%);
  }

  .testimonial-left {
    flex: 1;
	margin-left: 110px;
  }

  .testimonial-left h2 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 4rem;
	line-height: 56px;
	color: #1A1A1A;
	font-family: 'Urbanist';
	font-weight: 700;
  }

  /* .testimonial-left .customers {
    display: flex;
    align-items: center;
    gap: 10px;
  } */

  /* .testimonial-left .customers img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
  } */

  .testimonial-left p {
  
    font-size: 20px;
	color: #1A1A1A;
	font-family: 'Urbanist';
	margin-top: 20px;
  }

  /* Slider */
  .testimonial-slider {
    flex: 1.5;
    position: relative;
    overflow: hidden;
  }

  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
	width: 614px;
    height: 336px;
  }


  .slide {
    min-width: 100%;
	background: linear-gradient(165deg, #F7F6F6 12%, #AD9069 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    position: relative;
	color: #1A1A1A;
    width: 614px;
    height: 336px;
}
  

  .slide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .slide-header .profile {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .slide-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .slide-header .name-role {
    display: flex;
    flex-direction: column;
  }

  .slide-header .name-role strong {
    font-size: 16px;
  }

  .stars {
    color: #f5a623;
    font-size: 18px;
  }

  .slide p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
  }

  /* Dots inside slider */
  .dots {
    text-align: center;
    margin-top: 20px;
  }

  .dots span {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }

  .dots .active {
    background: #b08c5c;
  }

  @media (max-width: 900px) {
    .testimonial-section {
      flex-direction: column;
      text-align: center;
    }
    .testimonial-left {
      margin-bottom: 40px;
    }
  }

 .contact-section {
	background: url('../images/home/ct-bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 6rem 0px;
 }
 .contact-section h2{
	font-size: 48px;

	font-family: 'Poppins';
	color: #fff;
	line-height: 60px;
	
	font-weight: 700;
 }
 .bg-dark{
    background-color: #151414 !important;
	font-family: 'Poppins' !important;
}
.pixelify-text-logo h2{
	font-size: 100px;
	font-family: 'Poppins';
	font-weight: bold;
}
.hero-buttons span.color-AD9069{ color: #AD9069;}
.contact-sec {
	background-color: #b28b5e; /* brown shade */
	color: #fff;
  }
  
  /* Video Box */
  .contact-gif-box {
	min-height: 450px;
	background: url("../images/contact/AIVideoWatermarkRemover-VmakeAI-ezgif.com-video-to-gif-converter 1.gif") no-repeat center center/cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 20px;
	position: relative;

  }
  
  .contact-gif-box::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0, 0, 0, 0.3); /* dark overlay to make text readable */
	border-radius: 20px;
  }
  
  .contact-gif-box > * {
	position: relative;
	z-index: 2;
  }
  .contact-gif-box h3{
      font-family: 'Urbanist';
      font-size: 64px;
  }
  .contact-overlay {
	position: relative;
	z-index: 2;
	background: rgba(178, 139, 94, 0.8); /* semi-transparent brown */
	border-radius: 20px;
	display: inline-block;
  }
  
  /* Form Styling */
  .contact-input {
	background: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: 0;
	color: #fff;
  }
  .contact-input::placeholder {
	color: #f1e1d0;
  }
  .contact-input:focus {
	box-shadow: none;
	border-bottom: 1px solid #fff;
  }
  .about-sec {
	/* background-image: url('../images/about/about-bg.jpg'); */
	background: #AD9069;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 6rem 0px;
	position: relative;
    /* overflow: hidden; */
  }
  .about-card-2 h2{
font-family: 'Poppins';
font-size: 36px;
font-weight: 700;
  }
  .about-card-2 {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(3px);
  
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  /* Background */
.app-hero {
	background: url('../images/about/abt-bg.jpg') no-repeat center center;
	background-size: cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
  }
  
  /* Fonts */
  .heading-font {
	font-family: 'Urbanist', sans-serif;
  }
  
  .body-font {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
  }
  
  /* Phone Image */
  .phone-hand {
	max-width: 90%;
	height: auto;
  }
  .why-choose {
	background-color: #B59067; /* your brown background */
	color: #fff;
  }
  
  .heading-font {
    font-family: 'Urbanist', sans-serif;
    font-size: 50px;
}
  
  .body-font {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
  }
  
  .feature-box {
	/* background: #f7f5f0;
	border-radius: 12px; */
	color: #fff;
	transition: transform 0.3s ease;
  }
  
  .feature-box:hover {
	transform: translateY(-5px);
  }
  
  .feature-icon {
	width: 34%;
	flex-shrink: 0;
  }
  .me-3 {
    margin-right: 2rem !important;
}
.feature-box h5 {
    font-size: 32px;
    line-height: 44px;
    font-family: 'Urbanist';
}
.feature-box p {
    font-size: 20px;
  
    font-family: 'Poppins';
}
/* testi-abt */
.testi-abt-section {
    padding: 6rem 0px;
    /* display: flex
; */
    align-items: center;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    background: url('../images/about/testi-bg.jpg');
	color: #090707;
}
body.abt-body , body.services-body{
	overflow-x: hidden;
  }
  .testi-abt-section h2, .abt-last-d h2{
font-family: 'Urbanist';
font-size: 48px;


  }
  p{
	font-family: 'Poppins';
  }
  .abt-last{
	background: linear-gradient(90deg, #F3F1E0 32%, #AD9069 100%);
	padding: 8rem 0;
  }
  .abt-last-d{
	color: #090707;
  }
  .abt-last-d p{
font-size: 28px;
  }
  .testi-desc{
	margin-bottom: 50px;
  }

  /* services/
   */
   .buzz-section {
    position: relative;
    background: url("../images/services/service-bg-2.jpg") no-repeat ;
    background-position: center bottom;
background-size: cover;
    color: #fff;
    padding: 110px 0;
  }
  
  .buzz-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* optional dark overlay */
  }
  
  .buzz-container {
    position: relative;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
  }
  
  /* Left text */
  .buzz-left {
    flex: 1;
    min-width: 300px;
  }
  
  .buzz-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .buzz-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
  }
  
  /* Right steps */
  .buzz-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  
  .buzz-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
  }
  
  .buzz-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5c400; /* yellow circle */
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
  }
  
  /* vertical dotted line between circles */
  .buzz-step:not(:last-child) .buzz-number::after {
    content: "";
    position: absolute;
    top: 150%;
    left: 50%;
    width: 2px;
    height: 50px;
    border-left: 2px dashed #f5c400;
    transform: translateX(-50%);
  }
  
  .buzz-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .buzz-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .buzz-container {
      flex-direction: column;
      gap: 40px;
      text-align: center;
    }
    .buzz-right {
      align-items: center;
    }
  }
  .btn-grey{
    background: #40403E;
    color: white;
  }

  /* industry */
  .industry-bg{
    /* min-height: 450px; */
    background: url("../images/contact/AIVideoWatermarkRemover-VmakeAI-ezgif.com-video-to-gif-converter 1.gif") no-repeat center center/cover;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    border-radius: 20px;
    position: relative;
    text-align: center;
    padding: 30px 20px;
    position: absolute;
    width: 84%;
    top: -13%;
    }
    .industry-section .consult-form input {
      background: #d3d3d3;
      border: 2px solid #e5b93f;
      border-radius: 10px;
      padding: 10px 15px;
      flex: 1 1 200px; /* responsive */
      max-width: 250px;
      outline: none;
    }
    
    .industry-section .btn-submit {
      background: #f8f6e9;
      color: #1c1a1a;
      border: 2px solid #e5b93f;
      border-radius: 10px;
      padding: 10px 20px;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .industry-section .btn-submit:hover {
      background: #e5b93f;
      color: #fff;
    }
    
    .industry-section .stars {
      color: #ffc107;
      font-size: 1.2rem;
    }
    .ht-100vh {
      height:100vh;

    }
    .mt-20{
      margin-top: 40px;
    }
    /* Text */
.section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 1rem;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Cards */
.industry-card {
  background: linear-gradient(180deg, #f3f1e0 32%, #ad9069 100%);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.industry-card:hover {
  transform: translateY(-10px);
}
.icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}
.industry-card h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Poppins';
  font-weight: 600;
  color: #090707;
}
.industry-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 20px;
}

/* CTA Button */
.cta-btn {
  display: none;
  background: #ffb400;
  color: #000;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.industry-card:hover .cta-btn {
  display: inline-block;
  animation: fadeInUp 0.3s ease;
}
/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Swiper */
.swiper {
  padding: 30px 0;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto !important; /* let Swiper calculate */
  max-width: 320px;       /* optional cap, keeps design neat */
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 80% !important; /* mobile slides still stretch nicely */
  }
}
.about-sec{
  position: relative;
}
.industry-section{
  padding-top: 200px;
  padding-bottom: 10rem;
}
.btn-2nd-style {
  line-height: 36px;
  font-size: 30px;
}
.app-services {
  background-color: #000; /* Black section background */
  color: #F3F1E0; /* Light text */
  padding: 6rem;
}
.app-services .service-title {
  font-family: 'Urbanist';
  font-size: 40px;
}
.app-services .service-subtitle {
  font-family: 'Poppins';
  font-size: 24px;
}
.roadmap-section {
  background: #000;
  color: #F3F1E0;
}

.roadmap-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.roadmap-subtitle {
  font-weight: 600;
  margin-bottom: 20px;
}

.btn-roadmap {
  background: #F3F1E0;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-roadmap:hover {
  background: #AD9069;
  color: #fff;
}

/* Steps */
.roadmap-step {
  margin-bottom: 30px;
  align-items: flex-start;
  position: relative;
}

.step-number {
  min-width: 55px;
  height: 55px;
  background: #AD9069;
  color: #000;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #AD9069;
  transform: translateX(-50%);
}

.roadmap-step:last-child .step-number::after {
  display: none;
}

.step-text h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.step-text p {
  margin: 0;
  font-size: 0.95rem;
}
.blogs-section {
  position: relative;
  background: #b29165; /* fallback bg */
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

/* SVG background */
.blogs-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/industry/your-ellipse.svg") no-repeat center center;
  background-size: cover;
  opacity: 0.5; /* adjust transparency */
  z-index: 0;
}

/* Content above SVG */
.blogs-content {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #F3F1E0;
  border-radius: 10px;
  color: #fff;
  /* max-width: 900px; */

  z-index: 1;
}

/* Read More button */
.btn-readmore {
  display: inline-block;
  background: #f8f6e9;
  color: #1c1a1a;
  border: 2px solid #e5b93f;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
}
.btn-readmore:hover {
  background: #e5b93f;
  color: #fff;
}

/* Filter Buttons */
.filter-buttons {
  position: relative;
  z-index: 1;
}
.filter-btn {
  background: #f8f6e9;
  color: #000;
  border: 2px solid #e5b93f;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: #e5b93f;
  color: #fff;
}
.blogs-content h2{
  font-size: 30px;
  font-family: 'Poppins';
  line-height: 40px;
  font-weight: 600;
}
.blog-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 50px 5%;
  background: #e3d4b3; /* beige like your design */
  justify-content: center;
}

.blog-card {
  flex: 1 1 calc(50% - 30px); /* 2 cards per row on large screens */
  max-width: 500px;
  /* background: #fff; */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Responsive - single column on small screens */
@media (max-width: 768px) {
  .blog-card {
    flex: 1 1 100%;
  }
}

/* Card hover effect */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  padding: 10px;
}

/* Image zoom effect */
.blog-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid #ddd;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card h3 {
  font-size: 32px;
  margin-top: 20px;
  font-weight: bold;
  color: #090707;
  font-family: 'Urbanist';
  line-height: 46px;
}

.blog-card p {
  margin-bottom:20px;
  color: #212121;
  font-size: 20px;
  line-height: 1.5;
  font-family: 'Poppins';
  line-height: 34px;
}

.blog-card .btn {
  align-self: flex-start;
  margin: 20px 0;
  padding: 10px 16px;
  background: #222;
  color: #fff;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Button hover effect */
.blog-card .btn:hover {
  background: #f0c040;
  color: #000;
  transform: translateY(-2px);
}

/* Journey cards */
.journey-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  /* min-height: 200px; */
  overflow: hidden;
  cursor: pointer;
  max-width: 300px;
  margin: 0 auto; 
}

.journey-icon img {
  width: 50px;
  height: 50px;
  /* margin-bottom: 15px; */
}

.journey-title {
  font-weight: 700;
  margin: 12px 0 0;
  font-size: 1.2rem;
}

.journey-text {
  font-size: 0.95rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Hover effect */
.journey-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: #fff;
}

.journey-card:hover .journey-text {
  opacity: 1;
  max-height: 200px;
  margin-top: 10px;
}
.social-links a{
  color: #fff;
  text-decoration: none;
}
.services-video, .portfolio-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.portfolio-video {
  height: 400px !important;
}
/*contact us*/
.contact-gif-box .info-box{
    background: #AD9069;
        padding: 10px 30px;
    border-radius: 15px;
   
}.btn.bg-AD9069{
    background: #AD9069;
}