@keyframes dot {
50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dots {
50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes whatsapp-pulse {
0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

@keyframes floatImage {
0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes imageSlide {
0% {
    left: -500px;
    opacity: 0;
  }
  100% {
    left: 60px;   /* centered over yellow */
    opacity: 1;
  }
}

@keyframes scroll {
from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}


/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */


/* clear fix */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */

.grid-sizer,
.grid-item {
  width: 50%;
}

.grid-item img {
  display: block;
  max-width: 100%;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 13px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #03a4ed;
  color: #fff;
}

::-moz-selection {
  background: #03a4ed;
  color: #fff;
}

.page-section {
  margin-top: 120px;
}

.section-heading h2 {
  font-size: 30px;
  text-transform: capitalize;
  color: #2a2a2a;
  font-weight: 700;
  letter-spacing: 0.25px;
  position: relative;
  z-index: 2;
  line-height: 44px;
}

.section-heading h2 em {
  font-style: normal;
  color: #03a4ed;
}

.section-heading h2 span {
  color: #F5C30B;
}

/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.background-header {
  background-color: #fff!important;
  height: 80px!important;
  position: fixed!important;
  top: 0px;
  left: 0px;
  right: 0px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
}

.logo h4 span {
  color: #fe3f40;
}

body {
  padding-top: 80px !important;
}

/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 142px;
  height: 40px;
  background: #fff;
}

.preloader-inner .dot {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 12px;
  left: 15px;
  background: #F5C30B;
  border-radius: 50%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-animation: dot 2.8s infinite;
  animation: dot 2.8s infinite;
}

.preloader-inner .dots {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  margin-top: 12px;
  margin-left: 31px;
  -webkit-animation: dots 2.8s infinite;
  animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
  display: block;
  float: left;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  background: #F5C30B;
  border-radius: 50%;
}

/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

/* ===== HERO SECTION ===== */

.main-banner {
  padding: 100px 0;
  background: #f5f5f5;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #ffcc00, #e6b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO IMAGE */
.hero-image {
  max-width: 100%;
  height: auto;
}

/* ===== HERO IMAGE FLOAT ANIMATION ===== */

.hero-image {
  animation: floatImage 4s ease-in-out infinite;
}

/* ===== HERO STATS ===== */

.hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-stat-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-stat-box span {
  font-size: 14px;
  color: #666;
}

/* ===== HERO STATS HOVER EFFECT ===== */

.hero-stat-box {
  transition: all 0.4s ease;
  cursor: pointer;
}

/* 
---------------------------------------------
About Us Style
--------------------------------------------- 
/* ================= ABOUT SECTION ================= */

.about-section {
  background: #ffffff;
  overflow: hidden;
}

/* ================= YELLOW BLOCK ================= */

.about-yellow {
  position: absolute;
  top: 0;
  left: -600px; /* start outside screen */;
  width: 460px;
  height: 100%;
  background: linear-gradient(135deg, #ffcc00, #e6b800);
  border-radius: 0 30px 30px 0;
  z-index: 1;
  animation: yellowSlide 1.2s ease forwards;
}

/* ================= IMAGE ================= */

.about-img {
  position: absolute;
  top: 50%;
  left: -500px; /* start outside */;
  transform: translateY(-50%);
  width: 520px;      /* increased width */;
  height: 600px;     /* increased height */;
  object-fit: cover;
  border-radius: 15px;
  z-index: 2;
  opacity: 0;
  animation: imageSlide 2s ease forwards;
  animation-delay: 0.9s; /* comes AFTER yellow */;
}

/* ================= ANIMATIONS ================= */

@keyframes yellowSlide {
  from { left: -60px; }
  to   { left: 0; }
}

/* ================= CONTENT ================= */

.about-content {
  padding-left: 40px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #ffcc00;
}

.about-content p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ================= TICK LIST ================= */

.about-points {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #333;
}

.about-points li i {
  color: #ffcc00;
  font-size: 16px;
  margin-top: 4px;
}

---------------------------------------------
Services Style
--------------------------------------------- 
*/

.services-heading {
  text-align: center;
  color: #F5C30B;
  width: 100%;
  display: block;
}

#services h2 {
  text-align: center !important;
  color: #F5C30B;
  padding-top: 10px;
}

/* .our-services .left-image { margin-right: 45px; } */

.our-services .section-heading h2 {
  margin-right: 100px;
}

.our-services .section-heading p {
  margin-top: 30px;
  margin-bottom: 60px;
}

.our-services .progress-skill-bar {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.our-services .progress-skill-bar span {
  position: absolute;
  top: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.our-services .first-bar span {
  left: 83%;
}

.our-services .second-bar span {
  left: 88%;
}

.our-services .third-bar span {
  left: 79%;
}

.our-services .progress-skill-bar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 14px;
}

.our-services .progress-skill-bar .full-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: #f7eff1;
  position: relative;
  z-index: 1;
}

.our-services .progress-skill-bar .filled-bar {
  background: #F5C30B;
  /* background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%); */
  height: 6px;
  border-radius: 3px;
  margin-bottom: -6px;
  position: relative;
  z-index: 2;
}

.our-services .first-bar .filled-bar {
  width: 90%;
}

.our-services .second-bar .filled-bar {
  width: 95%;
}

.our-services .third-bar .filled-bar {
  width: 85%;
}

/* .our-services .left-image {
  margin-right: 45px;
}

.our-services .services .item {
  margin-bottom: 30px;
}

.about-us .services .item .icon {
  float: left;
  margin-right: 25px;
}

.our-services .services .item .icon img {
  max-width: 80px;
}

.our-services .services .item h4 {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.our-services .services .item p {
  color: #111010;
} */
.service-card {
  background: #ffffff;
  padding: 18px 14px 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 0;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 2px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* Fixed-size icon box — same for every card regardless of image dimensions */
.service-card .icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 12px;
}

.service-card .icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.service-card h4 {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 7px;
  color: #111;
  min-height: auto;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  font-size: 12px;
  color: #333;
  line-height: 1.5;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

/* HOVER EFFECT */
.service-card:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-card:hover h4 {
  color: #ffc107;
}

/* Services section title */
.services-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.services-section-title span {
  color: #ffc107;
}

.services-section-subtitle {
  font-size: 15px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

/* Service card link wrapper */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* "Learn More" arrow text inside card */
.service-card-arrow {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #111;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.service-card-link:hover .service-card-arrow,
.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateY(0);
  color: #111;
}

/* (flex layout now consolidated in main .service-card rule above) */

/* 
---------------------------------------------
Portfolio
--------------------------------------------- 
*/
.portfolio-preview {
  padding: 100px 6%;
  overflow: hidden;
  background: #f5f5f5;
}

/* HEADING */

.portfolio-heading {
  text-align: center;
  font-size: 46px;
  margin-bottom: 80px;
  font-weight: bolder;
}

.portfolio-heading span {
  color: #f5c30b;
}

/* LAYOUT */

.portfolio-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}

/* VIDEO */

.portfolio-video {
  flex: 1.4;
  margin-left: 40px;
}

.portfolio-video video {
  width: 90%;
  border-radius: 24px;
}

/* WORKFLOW */

/* WORKFLOW HEADING */

.workflow-small-heading {
  text-align: center;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
  color: #f5c30b;
  font-weight: 600;
}

/* VERTICAL WORKFLOW */

.workflow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* STEP */

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-align: center;
  color: #777;
  position: relative;
  opacity: 0.5;
  transition: .4s;
}

/* Bigger Icons */

.step i {
  font-size: 30px;              /* increased */;
  padding: 26px;                /* increased */;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ddd;
  transition: .4s;
}

/* Text */

.step p {
  font-size: 16px;
}

/* DOWN ARROW */

.step:not(:last-child)::after {
  content: "⬇";
  position: absolute;
  bottom: -55px;
  font-size: 38px;             /* bigger arrow */;
  color: #ccc;
  transition: .4s;
}

/* ACTIVE ICON */

.step.active {
  opacity: 1;
  color: #000;
}

.step.active i {
  background: #f5c30b;
  color: #000;
  animation: iconGlow 2s infinite alternate;
}

/* ACTIVE ARROW */

.step.active:not(:last-child)::after {
  color: #f5c30b;
  animation: arrowGlow 2s infinite alternate;
}

/* BUTTON */

.portfolio-btn {
  text-align: center;
  margin-top: 40px;
}

.portfolio-btn a {
  display: inline-block;
  background-color: #F5C30B;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #F5C30B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
}

.portfolio-btn a:hover {
  background-color: #fff;
  color: #111;
  border-color: #F5C30B;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
}

/* MARQUEE */

.marquee {
  overflow: hidden;
  margin-top: 80px;
}

.marquee span {
  font-weight: 600;
  color: #f5c30b;
  border: 2px solid #F5C30B;
  border-radius: 20px;
  padding: 10px;
}

/* MOBILE */

@media(max-width:768px) {
  .workflow-steps {
    flex-direction: column;
    gap: 80px;
  }
  .step:not(:last-child)::after {
    content: "⬇";
    right: auto;
    bottom: -50px;
    font-size: 34px;
  }
}

---------------------------------------------
Clients
--------------------------------------------- 
*/

.our-clients {
  padding-top: 120px;
  margin-top: 0px;
}

.our-clients .section-heading h2 {
  text-align: center;
  margin: 0px 90px 0px 90px;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.our-clients .item {
  position: relative;
}

.our-clients .item:hover .hidden-content {
  top: -100px;
  opacity: 1;
  visibility: visible;
}

.our-clients .item:hover .showed-content {
  top: 90px;
}

.our-clients .hidden-content {
  background: rgb(245, 195, 11);
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  opacity: 0;
  top: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  transition: all 0.5s;
}

.our-clients .hidden-content:after {
  width: 20px;
  height: 20px;
  position: absolute;
  background: rgb(245, 195, 11);
  content: '';
  left: 50%;
  bottom: -8px;
  margin-left: -5px;
  transform: rotate(45deg);
  z-index: -1;
}

.our-clients .hidden-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 5px;
}

.our-clients .hidden-content p {
  color: #fff;
}

.our-clients .showed-content {
  top: 0px;
  position: relative;
  z-index: 3;
  background-color: #fff;
  text-align: center;
}

.our-clients .showed-content img {
  max-width: 75%;
}

.our-clients .row:first-child {
  margin-bottom: -70px;
}

/* 
---------------------------------------------
Blog
--------------------------------------------- 
*/

.our-blog {
  position: relative;
  margin-top: 80px;
  padding-top: 120px;
}

.our-blog .section-heading h2 {
  margin-right: 180px;
}

.our-blog .top-dec {
  text-align: right;
  margin-top: -80px;
}

.our-blog .top-dec img {
  max-width: 200px;
}

/* LEFT IMAGE SHRINK */
.our-blog .left-image {
  position: relative;
  max-width: 350px;   /* aggressively shrink container */;
  width: 100%;        /* make responsive */;
  margin: 0 auto;     /* center it */;
}

.our-blog .left-image img {
  width: 100%;        /* scale to container */;
  height: auto;       /* maintain aspect ratio */;
  border-radius: 20px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  display: block;
}

/* INFO BOX */
.our-blog .left-image .info {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
}

/* DISCOVER BUTTON */
.our-blog .left-image .info .main-blue-button {
  position: relative;
  bottom: 0;
  left: 0;
  margin-top: 15px;
}

.our-blog .left-image ul li {
  display: inline-block;
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
  margin-right: 20px;
}

.our-blog .left-image ul li:last-child {
  margin-right: 0px;
}

.our-blog .left-image ul li i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .left-image h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .right-list {
  margin-left: 30px;
}

.our-blog .right-list ul li {
  display: inline-flex;
  width: 100%;
  margin-bottom: 30px;
}

.our-blog .right-list .left-content {
  margin-right: 45px;
}

.our-blog .right-list .left-content span {
  font-size: 15px;
  color: #afafaf;
  font-weight: 300;
}

.our-blog .right-list .left-content span i {
  color: #ff4d61;
  font-size: 16px;
  margin-right: 8px;
}

.our-blog .right-list .left-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
  margin: 20px 0px 15px 0px;
}

.our-blog .right-list .right-image img {
  width: 250px;
  border-radius: 20px;
}

/* ═══════════════════════════════════════
   CONTACT SECTION — Clean redesign
═══════════════════════════════════════ */

.contact-left-info {
  padding-right: 30px;
}

.contact-left-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.3;
}

.contact-left-info h2 span {
  color: #F5C30B;
}

.contact-left-info > p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: #F5C30B;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #111;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
}

.contact-detail-text a {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-text a:hover {
  color: #F5C30B;
}

/* Form clean styles */
.contact-form-clean {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 32px 28px;
}

.contact-form-clean fieldset {
  border: none;
  padding: 0;
  margin: 0 0 16px;
}

.contact-form-clean input,
.contact-form-clean textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  background: #fff;
  color: #111;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.contact-form-clean input:focus,
.contact-form-clean textarea:focus {
  border-color: #F5C30B;
}

.contact-form-clean textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-clean .main-button {
  width: 100%;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column;
    gap: 40px;
    padding: 60px 8%;
  }
}

/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/

@media (max-width: 1645px) {
  .contact-dec {
    display: none;
  }
}

/* ===== WHO ARE WE SECTION ===== */

.who-we-are {
  padding: 60px 0 80px 0;
}

.about-description {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #ddd;
}

#services .left-image img {
  max-width: 100%;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .sub-menu {
    position: static;
    display: block;
    background: #ffffff;
    box-shadow: none;
    color: #222 !important;
    padding-left: 25px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDIES PREVIEW SECTION
   Horizontal cinematic scroll — 3 cards
═══════════════════════════════════════════════════════════ */

.cs-section {
  background: #fff;
  padding: 80px 0 80px;
  margin-top: 60px;       /* breathing room from blog Discover More button */;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #f0f0f0;
}

/* Subtle yellow accent glow — works on white bg */
.cs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 10% 0%, rgba(245,195,11,0.06) 0%, transparent 55%);
  pointer-events: none;
}

/* --- Heading --- */
.cs-heading {
  text-align: center;
  margin-bottom: 60px;
}

.cs-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cs-heading h2 em {
  font-style: poppins;
  color: #666;
}

.cs-heading h2 span {
  color: #F5C30B;
}

.cs-heading p {
  color: #666;
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

/* --- Scroll wrapper --- */
.cs-scroll-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  padding-top: 6px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cs-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.cs-scroll-wrapper:active {
  cursor: grabbing;
}

/* --- Track --- */
.cs-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 10px 4px 30px;
  align-items: stretch;
}

/* --- Card --- */
.cs-card {
  width: 380px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}

/* --- Card image area --- */
.cs-card-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f5f5f5;
}

.cs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.cs-card:hover .cs-card-img img {
  transform: scale(1.05);
}

/* Gradient overlay on image */
.cs-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}

/* --- Industry/Service tag --- */
.cs-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(245,195,11,0.92);
  color: #111;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

/* --- Card body --- */
.cs-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* --- Client row --- */
.cs-client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.cs-client-icon {
  width: 40px;
  height: 40px;
  background: rgba(245,195,11,0.15);
  border: 1px solid rgba(245,195,11,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5C30B;
  font-size: 16px;
  flex-shrink: 0;
}

.cs-client span {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

/* --- Description --- */
.cs-desc {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

/* --- CTA button inside card --- */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #F5C30B;
  text-decoration: none;
  border: 1px solid rgba(245,195,11,0.35);
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-self: flex-start;
  background: rgba(245,195,11,0.06);
}

/* --- Bottom CTA --- */
.cs-cta {
  text-align: center;
  margin-top: 56px;
}

/* ── Drag-to-scroll JS ── */

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  .cs-section {
    padding: 70px 0 60px;
  }
  .cs-inner {
    padding: 0 5%;
  }
  .cs-heading h2 {
    font-size: 28px;
  }
  .cs-heading p {
    font-size: 14px;
  }
  .cs-card {
    width: 300px;
  }
  .cs-card-body {
    padding: 20px 22px 22px;
  }
  .cs-client span {
    font-size: 16px;
  }
}

/* ── Mobile: stack insights & case-study cards vertically (1 per row) ── */
@media (max-width: 600px) {
  .cs-scroll-wrapper,
  .blog-scroll-wrapper {
    overflow-x: visible;
    overflow-y: visible;
    cursor: default;
    scroll-snap-type: none;
  }
  .cs-track {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 10px 16px 20px;
    align-items: stretch;
  }
  .cs-card,
  .blog-cs-card {
    width: 100% !important;
    flex-shrink: 1;
  }
}

@media (max-width: 480px) {
  .cs-heading h2 {
    font-size: 24px;
  }
  .cs-card {
    width: 272px;
  }
  .cs-cta-btn {
    font-size: 13px;
    padding: 14px 28px;
  }
}

/* ═══════════════════════════════════════════
   CS-CARD SCROLL REVEAL ANIMATION
   Cards fade + slide up as they enter viewport
═══════════════════════════════════════════ */

.cs-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s ease, transform 0.55s ease,;
}

/* Stagger delays for siblings */
.cs-card:nth-child(1) {
  transition-delay: 0.05s;
}

/* Override: keep hover transform on top of visible state */
.cs-card.cs-visible:hover {
  transform: translateY(-8px);
}

/* ── Services Horizontal Scroll ── */
.services-scroll-wrapper {
  position: relative;
  overflow: hidden;
  padding-bottom: 12px;
}

.services-scroll-track::-webkit-scrollbar {
  height: 6px;
}

.services-scroll-track::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.services-scroll-track::-webkit-scrollbar-thumb {
  background: #ffc107;
  border-radius: 10px;
}

/* Scroll hint arrows */
.services-scroll-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 12px;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
  pointer-events: none;
  border-radius: 0 15px 15px 0;
}


/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */


/* 

TemplateMo 562 Space Dynamic

https://templatemo.com/tm-562-space-dynamic

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.grid-item {
  float: left;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 75%;
  height: 2px;
  left: 0;
  content: "";
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  margin: 20px 0 30px;
  font-size: 18px;
  color: #555;
}

.contact-us .section-heading h2,
.contact-us .section-heading h2 em,
.contact-us .section-heading h2 span {
  color: #000000;
}

.contact-us .section-heading p {
  color: #000000;
  margin-top: 30px;
}

form#contact textarea {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  max-height: 180px;
  min-height: 140px;
  height: 140px;
  border-radius: 20px;
  background-color: #00000022;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 20px;
}

form#contact textarea::placeholder {
  color: #2a2a2a;
}

.hero-text {
  font-size: 18px;
  color: #555;
  max-width: 550px;
}

.about-title {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.trusted-text {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 40px;
}

.stat-text {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Contact Alignment Fix */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.contact-item a:hover {
  color: #F5C30B;
}

.contact-item i {
  color: white;
  font-size: 16px;
  padding: 10px;
}


/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */


header, nav, section, article, aside, footer, hgroup {
  display: block;
}

.background-header .logo,
.background-header .main-nav .nav li a {
  color: #1e1e1e!important;
}

.background-header .main-nav .nav li:hover a {
  color: #fe3f40!important;
}

.background-header .nav li a.active {
  color: #fe3f40!important;
}

.header-area {
  background-color: #fafafa;
  position: fixed;   /* Make it fixed */;
  top: 0;
  left: 0;
  right: 0px;
  z-index: 999;
  height: 80px;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
  width: 100%;
  background: #fff;  /* Or #fafafa */;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 80px;
  color: #fff;
  width: 200px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo h4 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #03a4ed;
  line-height: 100px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.background-header .main-nav .logo h4 {
  line-height: 80px;
}

.background-header .main-nav .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 30px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
  padding-left: 40px;
}

.header-area .main-nav .nav li:last-child a ,
.background-header .main-nav .nav li:last-child a {
  color: #fff !important;
  padding: 0px 20px;
  font-weight: 400;
}

.header-area .main-nav .nav li:last-child a:hover,
.header-area .main-nav .nav li:last-child a.active {
  color: #fff !important;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 15px;
  color: #2a2a2a;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #f5c30b !important;
}

.background-header .main-nav .nav li:hover a,
.background-header .main-nav .nav li a.active {
  color: #f5c30b !important;
  opacity: 1;
}

.header-area .main-nav .nav li:last-child a:hover ,
.background-header .main-nav .nav li:last-child a:hover {
  background-color: #000000;
}

.header-area .main-nav .nav li.submenu {
  position: relative;
  padding-right: 30px;
}

.header-area .main-nav .nav li.submenu:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #2a2a2a;
  position: absolute;
  right: 18px;
  top: 12px;
}

.background-header .main-nav .nav li.submenu:after {
  color: #2a2a2a;
}

.header-area .main-nav .nav li.submenu ul {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 50px;
  opacity: 0;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.header-area .main-nav .nav li.submenu ul li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.submenu ul li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.submenu ul li a:hover {
  background: #fff;
  color: #fe3f40!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.submenu ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.submenu:hover ul {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: none;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area .nav {
  margin-top: 30px;
}

.header-area.header-sticky .nav li a.active {
  color: #f5c30b;
}

/* ===== DROPDOWN ONLY ===== */

.main-nav .nav .has-sub {
  position: relative;
}

/* Dropdown container */
.main-nav .nav .has-sub .sub-menu {
  position: absolute;
  top: 100%;          /* directly below Services */;
  left: 0;
  width: 280px;
  background: #111;
  border-radius: 8px;
  padding: 8px 0;
  display: none;
  z-index: 999;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Force vertical layout */
.main-nav .nav .has-sub .sub-menu li {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

/* Dropdown links */
.main-nav .nav .has-sub .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: #fff !important;
  background: transparent !important;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
  width: 300;
}

/* Hover effect */
.main-nav .nav .has-sub .sub-menu li a:hover {
  color: #f4b400 !important;
}

/* Show dropdown on hover */
.main-nav .nav .has-sub:hover > .sub-menu,
.main-nav .nav .has-sub .sub-menu:hover {
  display: block;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 35px;
  width: auto;
}


/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */


.hero-content {
  max-width: 600px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  background: #F5C30B;
  color: #111;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 2px solid #F5C30B;
}

.hero-btn:hover {
  background: #fff;
  color: #111;
  border-color: #F5C30B;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
}

.hero-image {
  transition: 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 30px rgba(255, 204, 0, 0.3));
}

.hero-stat-box {
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  text-align: center;
  flex: 1;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hero-stat-box i {
  font-size: 24px;
  color: #f5c30b;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.hero-stat-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hero-stat-box:hover i {
  transform: scale(1.2);
  color: #f5c30b;
}

.hero-sub {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-left-video {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 320px;
  z-index: 999;
  border-radius: 14px;
}

.hero-left-video video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 0 25px #1c1c1b;
  display: block;
}

.hero-left-video video:hover {
  transform: scale(1.05);
  transition: 0.4s ease;
  box-shadow: 0 0 40px #f5c30b;
}

.main-banner {
  margin-top: 0 !important;
  padding-top: 70px !important;
}


/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */


.main-blue-button a {
  display: inline-block;
  background-color: #03a4ed;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.main-red-button a {
  display: inline-block;
  background-color: #F5C30B;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  padding: 12px 28px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: 2px solid #F5C30B;
  transition: all 0.3s ease;
}

.main-red-button a:hover {
  background-color: #fff;
  color: #111;
  border-color: #F5C30B;
  box-shadow: 0 6px 20px rgba(245,195,11,0.3);
}

.main-white-button a {
  display: inline-block;
  background-color: #fff;
  font-size: 15px;
  font-weight: 400;
  color: #fe3f40;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
}

.about-btn {
  margin-top: 32px;
}

.about-btn a {
  display: inline-block;
  background-color: #F5C30B;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #F5C30B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
}

.about-btn a:hover {
  background-color: #fff;
  color: #111;
  border-color: #F5C30B;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
}

.discover-btn {
  display: inline-block;
  background-color: #F5C30B;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #F5C30B;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
}

.discover-btn:hover {
  background-color: #fff;
  color: #111;
  border-color: #F5C30B;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
}

.our-blog .left-image .info .main-blue-button {
  position: absolute;
  bottom: -80px;
  left: 0;
}

form#contact button,
#popup-contact-form button[type="submit"],
#form-submit {
  display: inline-block;
  background-color: #F5C30B;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #F5C30B;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
  letter-spacing: 0.3px;
  width: 100%;
}

form#contact button:hover,
#popup-contact-form button[type="submit"]:hover,
#form-submit:hover {
  background-color: #fff;
  color: #111;
  border-color: #F5C30B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
}

.cs-btn:hover {
  background: #F5C30B;
  color: #111;
  border-color: #F5C30B;
  gap: 12px;
}

.cs-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.cs-btn:hover i {
  transform: translateX(3px);
}

.cs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F5C30B;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid #F5C30B;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  font-family: Poppins, sans-serif;
}

.cs-cta-btn:hover {
  background: #fff;
  color: #111;
  border-color: #F5C30B;
  box-shadow: 0 8px 24px rgba(245,195,11,0.35);
  gap: 14px;
}

.cs-cta-btn i {
  transition: transform 0.3s ease;
}

.cs-cta-btn:hover i {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */


.our-services {
  padding: 30px 0;
  margin-top: 10px;
}

#services .services {
  margin-top: 30px;
}

.cs-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,195,11,0.5);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 2px rgba(245,195,11,0.2);
}

.cs-card.cs-visible {
  opacity: 1;
  transform: translateY(0);
}

.cs-card:nth-child(2) {
  transition-delay: 0.18s;
}

.cs-card:nth-child(3) {
  transition-delay: 0.31s;
}

.cs-card:nth-child(4) {
  transition-delay: 0.44s;
}


/* ═══════════════════════════════════════
   COUNTERS & STATS
═══════════════════════════════════════ */


.stat-box {
  position: relative;
  padding: 20px;
}

.stat-number {
  font-size: 44px;
  font-weight: 800;
  color: #ffb400; /* use your template yellow */;
}


/* ═══════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════ */


.about-section,
.portfolio-box,
.contact-us {
  padding: 70px 0;
}

.our-blog .left-image .info .inner-content {
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto;
}

.cs-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.cs-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5C30B;
  background: rgba(245,195,11,0.1);
  border: 1px solid rgba(245,195,11,0.25);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}


/* ═══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */


/* 
---------------------------------------------
contact
--------------------------------------------- 
*/

.contact-us {
  padding: 160px 0px;
  margin-top: 100px;
  background-image: url(../images/animated.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

form#contact .contact-dec {
  position: absolute;
  right: -166px;
  bottom: 0;
}

form#contact .contact-dec img {
  max-width: 178px;
}

form#contact {
  margin-left: 30px;
  position: relative;
  background-color: #fff;
  padding: 60px 30px;
  border-radius: 20px;
}

form#contact input {
  width: 100%;
  height: 46px;
  border-radius: 33px;
  background-color: #00000025;
  border: none;
  outline: none;
  font-size: 15px;
  font-weight: 300;
  color: #2a2a2a;
  padding: 0px 20px;
  margin-bottom: 20px;
}

form#contact input::placeholder {
  color: #2a2a2a;
}

/* Contact Info Styling */
.contact-info li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info li a i {
  color: #ffcc00;
  font-size: 15px;
  transition: 0.3s;
}

.contact-info li a:hover {
  transform: translateX(5px);
  color: #ffcc00;
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */


/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

.footer {
  background: #000;
  color: #ccc;
  padding: 70px 10%;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #aaa;
  max-width: 300px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffcc00;
  padding-left: 6px;
}

/* Bottom Section */
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 50px;
  border-top: 1px solid #222;
  font-size: 14px;
  color: #777;
}

.footer-section {
  background-color: #000000;   /* Black */;
  color: #ffffff;
  padding: 70px 0 30px 0;
}

.footer-section p {
  color: white;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 10px;
}

.footer-links li {
  margin-bottom: 8px;
  display: flex;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #F5C30B;
}

.footer-social {
  display: flex; gap: 10px; margin-top: 18px;
}

.footer-social a {
  width: 38px; height: 38px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: #F5C30B; border-color: #F5C30B;
  color: #000; transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid white;
  padding-top: 20px;
  font-size: 14px;
  color: white;
}


/* ═══════════════════════════════════════
   ANIMATIONS & KEYFRAMES
═══════════════════════════════════════ */


@-webkit-keyframes dot {
  50% {
    -webkit-transform: translateX(96px);
    transform: translateX(96px);
  }
}

@-webkit-keyframes dots {
  50% {
    -webkit-transform: translateX(-31px);
    transform: translateX(-31px);
  }
}


/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */


.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

a {
  text-decoration: none !important;
}

.about-left {
  position: relative;
  height: 650px;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 70px;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.keyword {
  color: #F5C30B;
  font-weight: 700;
}


/* ═══════════════════════════════════════
   MEDIA QUERIES
═══════════════════════════════════════ */


@media (max-width: 991px) {
html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

@media (max-width: 1200px) {
.header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
.header-area .main-nav .nav li:last-child  ,
  .background-header .main-nav .nav li:last-child {
    display: none;
  }
  .header-area .main-nav .nav li:nth-child(6),
  .background-header .main-nav .nav li:nth-child(6) {
    padding-right: 0px;
  }
}

@media (max-width: 767px) {
.background-header .main-nav .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #fe3f40!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .background-header .nav {
    margin-top: 80px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #fe3f40!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }

  /* ── Mobile fix: .has-sub Services dropdown ── */
  .main-nav .nav .has-sub .sub-menu {
    display: none;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    box-shadow: none !important;
    background: #222 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    z-index: 1;
  }
  .main-nav .nav .has-sub .sub-menu li {
    border-bottom: 1px solid #333 !important;
  }
  .main-nav .nav .has-sub .sub-menu li a {
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 20px !important;
    color: #fff !important;
    background: #222 !important;
    font-size: 13px !important;
  }
  .main-nav .nav .has-sub .sub-menu li a:hover {
    color: #F5C30B !important;
    background: #2e2e2e !important;
  }
  /* Disable hover-show on mobile — JS handles it */
  .main-nav .nav .has-sub:hover > .sub-menu {
    display: none;
  }
}

@media (min-width: 767px) {
.header-area .main-nav .nav {
    display: flex !important;
  }
}

@media (max-width: 768px) {
.about-section,
  .portfolio-box,
  .contact-us {
    padding: 50px 0;
  }

  .our-services {
    padding: 30px 0;
    margin-top: 0;
  }
}

@media (max-width: 991px) {
.hero-content {
    text-align: center;
  }

  .hero-image {
    margin-top: 40px;
    max-width: 85%;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-stat-box {
    width: 45%;
  }
}

@media (max-width: 576px) {
.hero-stat-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
.service-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
.main-banner {
    padding-top: 196px;
  }
  .main-banner .left-content {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .main-banner:after {
    top: 76px;
    z-index: -1;
  }
  .main-banner .left-content form,
  .main-banner .left-content form input {
    width: 100%!important;
  }
  #about {
    margin-top: 0px;
  }
  .about-us {
    position: relative;
    background-image: none;
    padding: 0px;
  }
  .about-us .left-image {
    margin-right: 0px;
    position: absolute;
    bottom: -220px;
    right: 0;
  }
  .about-us .services {
    text-align: center;
  }
  .about-us .services .item  {
    /*background: rgb(255,77,30);
    background: linear-gradient(105deg, rgba(255,77,30,1) 0%, rgba(255,44,109,1) 100%); */
    background: #f5c30b;
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
  }
  .about-us .services .item .right-text {
    text-align: left;
  }
  .our-services .left-image {
    margin-right: 0px;
    margin-bottom: 45px;
    text-align: center;
  }
  .our-services .section-heading h2,
  .our-services .section-heading p {
    margin-right: 0px;
    text-align: center;
  }
  .our-services section{
    margin-top: 10px;
  }
  .our-portfolio .section-heading h2 {
    margin: 0px 0px 80px 0px;
  }
  .our-portfolio .item {
    margin-bottom: 15px;
  }
  .our-clients .section-heading h2 {
    margin: 0px 0px 80px 0px;
  }
  .our-clients .item {
    margin-bottom: 15px;
  }
  .our-blog {
    margin-top: 0px;
  }
  .our-blog .top-dec {
    display: none;
  }
  .our-blog .section-heading h2 {
    margin-right: 0px;
    text-align: center;
    margin-bottom: 45px;
  }
  .our-blog .left-image .info .inner-content {
    position: relative;
    margin-right: 0px;
  }
  .our-blog .left-image .info .main-blue-button {
    position: relative;
    bottom: 0px;
    margin-top: 30px;
  }
  .our-blog .left-image {
    margin-bottom: 45px;
  }
  .contact-us {
    margin-top: 60px;
    padding: 120px 0px;
  }
  .contact-us .section-heading {
    text-align: center;
  }
  form#contact {
    margin-left: 0px;
    margin-top: 30px;
  }
  form#contact .contact-dec {
    display: none;
  }
  footer p {
    margin: 15px 0px 30px 0px;
  }
}

@media (max-width: 767px) {
.about-us .left-image {
    bottom: -250px;
    text-align: center;
    img{
      width: 70%;
    }
  }
/* ===== BLOG SECTION ===== */
.our-blog {
  padding: 80px 0;
  background: #f8f9fa;
}

/* Blog uses the same cs-card/cs-track style — override only what differs */
.blog-scroll-wrapper {
  /* slightly tighter padding since bg is light grey not white */
  padding-bottom: 16px;
}

/* Blog cards sit on light grey bg — keep white card surface */
.our-blog .cs-card {
  background: #fff;
}

/* ===== BUTTON STYLE ===== */


  .phone-info h4 span {
    display: block;
    margin-top: 15px;
  }
  .phone-info h4 span i {
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
.hero-left-video{
    position: static;
    width: 90%;
    margin: 20px auto;
  }
}

@media (max-width: 480px) {
.cs-heading h2 {
    font-size: 24px;
  }

  .cs-card {
    width: 272px;
  }

  .cs-cta-btn {
    font-size: 13px;
    padding: 14px 28px;
  }
}

/* ══════════════════════════════════════════
   SERVICES GRID — 4 top + 4 bottom
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.services-grid-card {
  width: 100%;
   

}

.services-grid-card .service-card {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
 
}

/* ══════════════════════════════════════════
   FULL RESPONSIVE OVERRIDES
══════════════════════════════════════════ */

/* Tablet portrait */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .hero-image {
    max-width: 70%;
    margin: 30px auto 0;
    display: block;
  }

  .hero-stats {
    justify-content: center;
  }

  .about-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 14px 10px 12px;
  }

  .service-card h4 {
    font-size: 12px;
  }

  .service-card p {
    font-size: 11px;
  }

  .services-section-title {
    font-size: 26px;
  }

  .services-section-subtitle {
    font-size: 13px;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stat-box {
    width: 45%;
  }

  .about-content h2 {
    font-size: 26px;
  }
}

/* Extra small */
@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-card {
    padding: 12px 8px 10px;
  }

  .service-card .icon {
    width: 40px;
    height: 40px;
  }

  .service-card .icon img {
    width: 32px;
    height: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FULL PAGE RESPONSIVE — Comprehensive mobile/tablet overrides
═══════════════════════════════════════════════════════════ */

/* ── Global ── */
html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ── Hero Section ── */
@media (max-width: 991px) {
  .main-banner {
    padding: 60px 0;
  }
  .main-banner .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero-title {
    font-size: 36px !important;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-image {
    max-width: 65%;
    margin: 30px auto 0;
    display: block;
  }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  .hero-stat-box {
    width: 45%;
  }
  .hero-btn {
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .main-banner {
    padding: 40px 0;
  }
  .hero-title {
    font-size: 28px !important;
  }
  .hero-image {
    max-width: 85%;
  }
  .hero-stat-box {
    width: 100%;
  }
}

/* ── About Section ── */
@media (max-width: 991px) {
  .about-section .col-lg-5,
  .about-section .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-left {
    min-height: 420px;
    margin-bottom: 30px;
    height: auto;
  }
  .about-img {
    width: 90% !important;
    max-width: 460px;
    height: 340px !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
  .about-yellow {
    width: 90%;
    left: 5% !important;
    border-radius: 16px;
    animation: none;
  }
  .about-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about-left {
    min-height: 300px;
    margin-bottom: 20px;
  }
  .about-img {
    width: 88% !important;
    height: 260px !important;
  }
  .about-content h2 {
    font-size: 24px;
  }
  .about-content p {
    font-size: 13px;
  }
}

/* ── Portfolio Section ── */
@media (max-width: 991px) {
  .portfolio-preview {
    padding: 60px 5%;
  }
  .portfolio-heading {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .portfolio-container {
    flex-direction: column;
    gap: 40px;
  }
  .portfolio-video {
    margin-left: 0;
    width: 100%;
    flex: none;
  }
  .portfolio-video video {
    width: 100%;
  }
  .illustration {
    width: 100%;
  }
  .workflow {
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .step:not(:last-child)::after {
    content: "→";
    bottom: auto;
    right: -22px;
    top: 30px;
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .portfolio-heading {
    font-size: 26px;
  }
  .workflow {
    flex-direction: column;
    align-items: center;
  }
  .step:not(:last-child)::after {
    content: "⬇";
    bottom: -45px;
    right: auto;
    top: auto;
    font-size: 28px;
  }
}

/* ── Services Section ── */
@media (max-width: 991px) {
  .our-services {
    padding: 50px 0;
  }
  .services-section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .our-services {
    padding: 36px 0;
  }
  .services-section-title {
    font-size: 24px;
  }
  .services-section-subtitle {
    font-size: 13px;
    padding: 0 10px;
  }
}

/* ── Blog / Case Study sections ── */
@media (max-width: 991px) {
  .our-blog {
    padding-top: 60px;
    margin-top: 40px;
  }
  .cs-section {
    padding: 50px 0;
  }
  .cs-inner {
    padding: 0 4%;
  }
  .cs-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .cs-heading h2 {
    font-size: 22px;
  }
  .cs-card {
    width: 280px;
  }
}

/* ── Contact Section ── */
@media (max-width: 991px) {
  .contact-us {
    padding: 60px 0;
  }
  .contact-left-info {
    padding-right: 0;
    margin-bottom: 36px;
  }
  .contact-left-info h2 {
    font-size: 24px;
  }
  .contact-us .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .contact-left-info h2 {
    font-size: 20px;
  }
  .contact-detail-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  .contact-detail-text a {
    font-size: 13px;
  }
  .contact-form-clean {
    padding: 20px 16px;
  }
}

/* ── Footer ── */
@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 5%;
  }
  .footer-col {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-container {
    padding: 30px 6%;
  }
  .footer-bottom {
    font-size: 12px;
    padding: 14px 10px;
  }
}

/* ── Marquee / Stats row ── */
@media (max-width: 576px) {
  .marquee {
    margin-top: 40px;
  }
}

/* ── Discover button ── */
@media (max-width: 576px) {
  .discover-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
  .cs-cta-btn {
    font-size: 13px;
    padding: 12px 24px;
  }
}

/* ── WhatsApp float — smaller on mobile ── */
@media (max-width: 576px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
}
.service-card {
  background: #F5C30B; /* yellow */
  padding: 18px 14px 16px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 0;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: none; /* remove grey border */
}
.contact-us {
  background: none !important;
  margin-top: 0 !important;
}.contact-form-clean {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}.contact-form-clean input,
.contact-form-clean textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e5e5e5;
  border-radius: 12px;
  font-size: 14px;
  background: #fafafa;
  transition: all 0.3s ease;
}.contact-form-clean input:focus,
.contact-form-clean textarea:focus {
  border-color: #F5C30B;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245,195,11,0.15);
}.contact-form-clean .main-button {
  width: 100%;
  background: #F5C30B;
  color: #111;
  font-weight: 600;
  padding: 14px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
}.contact-form-clean .main-button:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}.contact-form-clean fieldset {
  margin-bottom: 14px;
}.popup-row {
  gap: 14px;
}