@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luxurious+Roman&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* font-family: "Poppins", sans-serif;
font-family: "Montserrat", sans-serif;
font-family: "Inter", sans-serif; 
  font-family: "Luxurious Roman", serif; */


:root {
  --navy: #0D0F30;
  --purple: #261D74;
  --orange: #E17B1D;
  --white: #FFFFFF;
  --gray: #F4F4F8;
  --text: #333344;
  --navy: #1B2255;
  --card-bg: #ffffffcc;
  --text-muted-custom: #858688;
  --drawer-width: 300px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 110px;
}

strong {
  color: #28282B;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #858688;
}

.btn {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
}


/* Common heading start */
.common-top-heading h2 {
  color: #543E2F;
  font-weight: 600;
  font-size: 50px;
}

.common-top-heading p {
  font-weight: 100;
  font-size: 50px;
  padding: 0 0 3% 0;
  margin: 0;
  color: #543E2F;
  letter-spacing: 7px;
}



.common-lightbtn {
  border-radius: 5px;
  padding: 3% 10%;
  transition: 0.4s;
  background-image: linear-gradient(to right, #261D74, #00A3FF);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.common-lightbtn:hover {
  background: #261D74;
  color: #fff;
}

.common-outlinebtn {
  border-radius: 20px;
  padding: 8px 17px 10px;
  font-size: 14px;
  font-weight: 600;
}



/*HERO Banner Section Start*/

/* ===========================
   HERO SECTION
=========================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../assets/banner/banner.svg') no-repeat center center;
  background-size: cover;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

/* subtle background decoration */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 29, 116, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 123, 29, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

/* Small top label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #28282B;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
  /* opacity: 0; */
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.1s;
  font-weight: 400;
}

/* .hero-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #E17B1D;
    border-radius: 2px;
} */

/* Main heading */
.hero-heading {
  font-family: Arial Rounded MT Bold;
  font-size: clamp(52px, 8vw, 96px);
  /* line-height: 1.0; */
  font-weight: 700;
  margin: 0 0 32px 0;
  letter-spacing: -2px;
}

.hero-heading .line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.hero-heading .line-1 {
  background: linear-gradient(90deg, #261D74, #00A3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
  font-size: 130px;
}

.hero-heading .line-2 {
  color: #E17B1D;
  animation-delay: 0.35s;
  font-size: 130px;
}

.hero-heading .line-3 {
  background: linear-gradient(90deg, #261D74, #00A3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.5s;
  font-size: 130px;
}

/* Description */
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.75;
  color: #858688;
  /* max-width: 520px; */
  padding: 0 15% 3% 0;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.65s;
  font-family: "Poppins", sans-serif;
}

/* CTA Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-image: linear-gradient(to right, #261D74, #00A3FF);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, gap 0.2s;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.8s;
}

.hero-btn:hover {
  background: #261D74;
  gap: 25px;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.hero-btn .arrow {
  font-size: 25px;
  color: #fff;
  transition: transform 0.2s;
}

.hero-btn:hover .arrow {
  transform: translateX(4px);
}

/* ===========================
   KEYFRAMES
=========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ===========================
   Strategic Section
=========================== */
.strategic-section {
  position: relative;
  padding: 72px 0 80px;
  overflow: hidden;

  /* Replace 'background.jpg' with your actual background image path */
  background-image: url('../assets/banner/second-banner.svg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Soft warm overlay to match the beige/peach tint in the design */
.strategic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(105deg,
      rgba(245, 242, 235, 0.92) 0%,
      rgba(245, 236, 220, 0.82) 55%,
      rgba(200, 170, 140, 0.45) 100%); */
  z-index: 0;
}

.strategic-section>.container {
  position: relative;
  z-index: 1;
}

/* ── Heading ── */
.section-title {
  /* font-family: Arial Rounded MT Bold; */
  font-size: clamp(1.4rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #303030;
  line-height: 1.2;
  margin-bottom: 48px;
}


/* fade-in on load */
.card {
    opacity: 0;
    transform: translateY(20px);
}
.card.visible {
    animation: fadeUp 0.55s cubic-bezier(.22, 1, .36, 1) forwards;
}



.section-title .highlight {
  color: var(--orange);
  /* font-style: italic; */
}

/* ── Feature Cards ── */
.feature-card {
  display: grid;
  grid-template-columns: 25% 65%;
  gap: 25px;
  background: var(--card-bg);
  /* backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); */
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 5%;
  height: 100%;
  box-shadow: 0 4px 24px rgba(27, 34, 85, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(27, 34, 85, 0.13);
}


/* If using SVG icons inline or <img>, tint them navy */
.feature-icon img,
.feature-icon svg {
  width: 80%;
  /* height: 100%; */
  /* object-fit: contain;
  filter: brightness(0) saturate(100%) invert(14%) sepia(47%) saturate(700%) hue-rotate(204deg) brightness(90%) contrast(95%); */
}

.feature-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #28282B;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.feature-desc {
  font-size: 0.84rem;
  color: var(--text-muted-custom);
  line-height: 1.6;
  margin: 0;
}



/* ===========================
  Our Services Section start
=========================== */
.services-section {
  background: url('../assets/banner/blue-bg.svg')no-repeat;
  background-position: center left;
  background-size: cover;
  padding: 10% 5%;
  /* min-height: 100vh; */
}

.services-section .container .row .col-md-6 {
  padding: 40px 40px;
}

.services-title {
  color: #ffffff;
  font-size: 45px;
  padding: 0 0 2% 0;
}

.services-subtitle {
  color: #fff;
  font-size: 16px;
  max-width: 1000px;
  line-height: 1.7;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 25px;
  padding: 8%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-title {
  color: #28282B;
  font-size: 1.5rem;
  font-weight: 600;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  color: #858688;
  font-size: 0.875rem;
  padding: 4px 0;
  padding-left: 1.4rem;
  position: relative;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1565c0;
  font-weight: bold;
}

.btn-explore {
  background: linear-gradient(90deg, #261D74, #00B7EB);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.btn-explore:hover {
  opacity: 0.88;
  color: #ffffff;
}

.services-section .right img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}



/* Why section start */
.why-section {
  padding: 80px 0;
  background: url('../assets/banner/right-choice.svg')no-repeat;
  background-position: center;
  background-size: cover;
  font-family: Arial, sans-serif;
}

.why-section .left .icon img {
  width: 85%;
}
/* 
.why-section .container {
  width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
} */

/* LEFT */
.why-section .left {
  flex: 1;
}

/* .why-section .left h2 {
  font-size: 42px;
  color: #28282B;
  margin-bottom: 30px;
}

.why-section .left h2 span {
  color: #E17B1D;
} */

.why-section .feature {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.why-section .feature .icon {
  font-size: 22px;
}

.why-section .feature h4 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #28282B;
}

.why-section .feature p {
  margin: 5px 0 0;
  font-size: 13px;
  color: #858688;
}

/* RIGHT */
.why-section .right {
  flex: 1;
  position: relative;
  height: 400px;
}

/* IMAGE BLOCKS */
.why-section .img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

/* Replace with your real images */
.why-section .img1 {
  /* width: 140px;
  height: 140px; */
  top: 0;
  width: 25%;
  left: 22%;
}

.why-section .img2 {
  width: 50%;
  top: 0;
  right: -5%;
  border-radius: 15px;
}

.why-section .img3 {
  width: 50%;
  bottom: -15%;
  left: 40px;
  z-index: 0;
}

.why-section .img4 {
  /* width: 120px;
  height: 160px; */
  bottom: -15%;
  right: 5%;
  background-image: url(img4.jpg);
  width: 28%;
  z-index: 999;
  /* background-image: url('img4.jpg'); */
}

/* CENTER CARD */
.why-section .card {
  position: absolute;
  top: 120px;
  right: 80px;
  background: #fff;
  padding: 10%;
  /* width: 180px; */
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 990;
  left: 30%;
  border: none;
  right: 20%;
}

.why-section .card h3 {
  color: #E17B1D;
  font-size: 32px;
  margin: 0;
}

.why-section .card p {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}


.why-section {
  padding: 60px;
  /* background: linear-gradient(135deg, #e9edf2 40%, #cfe3f1 100%); */
}

/* GRID FIX */
.why-section .right-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "img1 img2 img2"
    "img3 card img4";
  gap: 20px;
  max-width: 700px;
  margin: auto;
  align-items: center;
}

/* GRID AREAS */
.why-section .img1 {
  grid-area: img1;
}

.why-section .img2 {
  grid-area: img2;
}

.why-section .img3 {
  grid-area: img3;
}

.why-section .img4 {
  grid-area: img4;
}

.why-section .card {
  grid-area: card;
}

/* IMAGE STYLE */
.why-section .img img {
  width: 100%;
  /* height: 100%;
  object-fit: cover; */
  border-radius: 12px;
}

/* SPECIFIC SIZES */
.why-section .img1 img {
  /* height: 160px; */
}

.why-section .img2 img {
  /* height: 140px; */
  border-radius: 15px;
}

.why-section .img3 img {
  /* height: 200px; */
}

.why-section .img4 img {
  /* height: 180px; */
}

/* CARD */
/* .why-section .card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
} */

.why-section .card h3 {
  color: #E17B1D;
  font-size: 36px;
  margin: 0;
}

.why-section .card p {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}












/* Web Design Process Section start */
.web-design-process {
  padding: 5%;
  margin: 0 auto;
}

.web-design-process .section-title {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #323335;
  margin-bottom: 8px;
}

.web-design-process .section-sub {
  text-align: center;
  color: #666680;
  font-size: 1rem;
  margin-bottom: 56px;
}

/* ── GRID LAYOUT ── */
.web-design-process .workflow-grid {
  display: grid;
  grid-template-columns: 25% 50% 25%;
  gap: 0;
  align-items: center;
  position: relative;
  margin: 8% 0;
}

/* Centre column */
.web-design-process .center-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

.web-design-process .orbit-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-design-process.orbit-ring::before {
  content: '';
  position: absolute;
  /* width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 50%;
  border: 2px dashed rgba(244, 123, 32, 0.15); */
  top: -15px;
  left: -15px;
}

.web-design-process .center-figure {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Orbit dots */
.dot {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #FDDDB8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(244, 123, 32, 0.18);
  transition: transform 0.3s, background 0.3s;
  z-index: 3;
}

/*.dot.active {*/
/*  background: #F47B20;*/
/*  border-color: #F47B20;*/
/*   transform: scale(1.2); */
/*}*/

.dot.active span{
  filter: brightness(10);
}

.dot img{
    width: 35px;
    height: 35px;
}

/* dot positions (% of orbit-ring dimension) */
.dot-top {
  top: 15%;
  left: 10%;
  transform: translateX(-50%);
  z-index: 100;
}

.dot-right {
  right: -30px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 100;
 
}

.dot-bottom {
  bottom: 10%;
  left: 15%;
  transform: translateX(-50%);
  z-index: 100;
}

.dot-left {
  left: -25px;
  top: 52%;
  transform: translateY(-50%);
    background: #F47B20;
  border-color: #F47B20;
}
.dot-top-right{
  top: 21%;
  right: 4%;
  transform: translateY(-50%);
  z-index: 100;
}

.dot-bottom-right{
  bottom: 5%;
  right: 9.8%;
  transform: translateY(-50%);
  background: url('../assets/icon/rounded-right-btm.png')no-repeat;
  background-size:cover;
}
.left-card-five{
      position: absolute !important;
    top: 40%;
    right: 0%;
    width: 25%;
    z-index: 90;
}
.left-card-six{
  position: absolute !important;
  right: 8%;
  width: 25%;
  bottom: -9%;
}
/* ── CARDS ── */
.card-col-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-right: 24px;
}

.card-col-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 24px;
}

.card {
  background: #ffffff;
  border-radius: 0;
  padding: 24px 26px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #E17B1D;
  position: relative;
  transition: transform 0.35s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.35s,
    border-color 0.35s;
  cursor: default;
}

.card:hover,
.card.active {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 40px rgba(244, 123, 32, 0.18);
  /* border-color: #FDDDB8; */
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFF3E8;
  border-radius: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #F47B20;
  font-family: 'Poppins', sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #323335;
  margin-bottom: 12px;
}

.card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.card ul li {
  font-size: 12px;
  color: #858688;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.card ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F47B20;
  flex-shrink: 0;
  margin-top: 5px;
}

/* step number pill */
.step-num {
  position: absolute;
  top: -13px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  background: #F47B20;
  color: #fff;
  border-radius: 20px;
  padding: 2px 10px;
}

.card-col-left .step-num {
  right: 24px;
}

.card-col-right .step-num {
  left: 24px;
}

/* connector arrows */
.arrow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #F47B20;
  opacity: 0.5;
  padding: 4px;
}



.left-card-one {
  position: absolute;
  left: 7%;
  top: -20px;
  z-index: 90;
  width: 25%;
}

.left-card-two {
  margin: 0 -25px -35px 0;
}

.left-card-three {
  position: absolute;
  bottom: -60px;
  left: 8%;
  width: 25%;
  z-index: 90;
}

.left-card-four{
  position: absolute;
  top: -2%;
  right: 6%;
  /* transform: translateY(-50%); */
  width: 25%;
  z-index: 90;
  border-left: none;
  border-right: 3px solid #E17B1D;
}
.left-card-five {border-left: none;  border-right: 3px solid #E17B1D; }
.left-card-six{border-left: none;  border-right: 3px solid #E17B1D; }

.fst-arrw {
    position: absolute;
    top: 14%;
    left: -4%;
}

.lst-arrw {
    position: absolute;
    bottom: 8%;
    left: 0%;
    /* transition: revert; */
    transform: rotate(-30deg);
}

.fst-arrw-up {
    position: absolute;
    top: 14%;
    right: -3%;
}

.lst-arrw-up{
        position: absolute;
        bottom: 8%;
    right: -3%;
    /* transition: revert; */
    transform: rotate(50deg);
}

/* ── RESPONSIVE ── */












.who-section {
  padding: 5% 2.5%;
  background: url('../assets/banner/quality-banner.svg')no-repeat;
  background-size: cover;
  background-position: center;
}

/* ── Hexagon image ── */
.hex-clip {
  width: 100%;
  height: 100%;
}

.hex-clip img {
  width: 100%;
  padding: 2% 5% 1% 3%;
}

.hex-label .brand-name {
  font-size: 1.2rem;
  font-weight: 700;
}

.hex-label .brand-year {
  font-size: 0.7rem;
  opacity: 0.75;
  letter-spacing: 0.05em;
}

/* ── Text content ── */
.who-section .who-content {
  /* flex: 1; */
  /* max-width: 520px; */
  padding: 0 5% 0 5%;
}

.who-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #28282B;
  margin-bottom: 16px;
}

.who-eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  /* background: #1a73c8; */
  background: linear-gradient(90deg, #261D74, #00A3FF);
  border-radius: 2px;
  display: inline-block;
}

/* .who-headline {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0D0F30;
  padding: 0 0 5% 0;
}

.who-headline .accent {
  color: #E17B1D;
} */

.who-body {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #858688;
  margin-bottom: 16px;
}

.who-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7%;
  font-size: 0.875rem;
  font-weight: 600;
  color: #261D74;
  text-decoration: none;
  /* border-bottom: 2px solid #0D0F30; */
  padding-bottom: 2px;
}

.who-readmore:hover {
  color: #E17B1D;
  border-color: #E17B1D;
}






/* Industry section start */
.industry-section {
  padding: 5%;
  background: url('../assets/banner/blue-gradient.svg') no-repeat;
  background-position: center;
  background-size: cover;
  /* position: relative;
  overflow: hidden; */
}

/* Optional: if you have bg image */
/* .industry-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: url('../assets/banner/blue-gradient.svg') no-repeat center/contain;
  left: -100px;
  top: -100px;
  opacity: 0.2;
} */

.industry-section .sub-text {
  color: #fff;
}

.main-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
}

.sub-text {
  margin-top: 15px;
  font-size: 15px;
  opacity: 0.85;
}

/* CARD DESIGN */
.industry-card {
  position: relative;
  border-radius: 14px;
  padding: 25px 15px;
  color: #fff;
  text-align: center;
  height: 100%;

  /* GLASS EFFECT */
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);

  /* IMPORTANT */
  z-index: 1;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1.5px;
  /* border thickness */

  background: linear-gradient(135deg, #2b2470, #1f6fbf);

  /* MAGIC PART */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: -1;
}

.industry-card::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 25%;
  width: 50%;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(90deg, transparent, #00c6ff, transparent);
  opacity: 0.8;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.industry-card img {
  width: 40px;
  margin-bottom: 10px;
}

.industry-card p {
  line-height: 1.4;
  font-size: 14px;
  margin: 0;
  color: #fff;
  font-weight: 600;
  padding: 10px 15px 0;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-color: #4fc3ff;
}




/* FAQ Section Start */
/* SECTION */
.industry-accordion {
  padding: 60px 0;
}

/* ITEM BOX */
.industry-accordion .acc-item {
  margin-bottom: 15px;
}

/* BUTTON (CARD LOOK) */
.industry-accordion .acc-btn {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  color: #fff;
  font-size: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /* GLASS */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);

  position: relative;
  transition: 0.3s;
}

/* REMOVE DEFAULT BUTTON STYLE */
.industry-accordion .acc-btn:focus {
  outline: none;
  box-shadow: none;
}

/* BODY */
.industry-accordion .acc-body {
  margin-top: 8px;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ccc;
}

/* ========================= */
/* 🔥 ACTIVE STATE (KEY PART) */
/* ========================= */

.industry-accordion .acc-btn:not(.collapsed) {
  border: 1px solid transparent;
}

/* GRADIENT BORDER ONLY WHEN ACTIVE */
.industry-accordion .acc-btn:not(.collapsed)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, #2b2470, #1f6fbf);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* SUBTLE BOTTOM GLOW (VISIBLE IN YOUR UI) */
.industry-accordion .acc-btn:not(.collapsed)::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 30%;
  width: 40%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00c6ff, transparent);
}

/* ARROW */
.industry-accordion .arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* ROTATE WHEN OPEN */
.industry-accordion .acc-btn:not(.collapsed) .arrow {
  transform: rotate(-135deg);
}




/* =============================================
       TECH ACCORDION SECTION — ALL STYLES SCOPED
       UNDER .tech-accordion-section
       ============================================= */

.tech-accordion-section {
  background: url('../assets/banner/accordion-banner.svg')no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* ---- Left Heading ---- */
.tech-accordion-section .tas-heading-wrap {
  padding-right: 40px;
}

/* .tech-accordion-section .tas-label {
  color: #E17B1D;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.tech-accordion-section .tas-title {
  color: #3A3A3B;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
} */

.tech-accordion-section .tas-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
  /* max-width: 340px; */
}

/* ---- Accordion Wrapper ---- */
.tech-accordion-section .tas-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Single Accordion Item ---- */
.tech-accordion-section .tas-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(99, 160, 255, 0.25);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid #282170;
}

.tech-accordion-section .tas-item:hover {
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.12);
}

/* ---- Active Item: blue gradient header ---- */
.tech-accordion-section .tas-item.tas-active {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.22);
}

/* ---- Header / Toggle Button ---- */
.tech-accordion-section .tas-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  border: none;
   color: #3A3A3B;
  background: transparent;
  text-align: left;
  transition: background 0.3s ease;
}

.tech-accordion-section .tas-item.tas-active .tas-header {
  /* background: linear-gradient(135deg, #282170 0%, #2563eb 60%, #3b82f6 100%); */
  background-image: linear-gradient(to right, #261D74, #00A3FF);
  border-radius: 12px 12px 0 0;
}

.tech-accordion-section .tas-header-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3A3A3B;
  transition: color 0.3s ease;
}

.tech-accordion-section .tas-item.tas-active .tas-header-title {
  color: #ffffff;
}

/* ---- Plus / Minus Icon ---- */
.tech-accordion-section .tas-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(99, 160, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.35s ease;
  background: transparent;
}

.tech-accordion-section .tas-icon svg {
  width: 12px;
  height: 12px;
  stroke: #3b82f6;
  transition: stroke 0.3s ease, transform 0.35s ease;
}

.tech-accordion-section .tas-item.tas-active .tas-icon {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(0deg);
}

.tech-accordion-section .tas-item.tas-active .tas-icon svg {
  stroke: #ffffff;
  transform: rotate(45deg);
}

/* ---- Collapsible Body ---- */
.tech-accordion-section .tas-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
  padding: 0 22px;
  background: #ffffff;
}

.tech-accordion-section .tas-item.tas-active .tas-body {
  max-height: 300px;
  background-image: linear-gradient(to right, #261D74, #00A3FF);
  padding: 18px 22px 20px;
  opacity: 1;
}

/* ---- Tech Tag Pills ---- */
.tech-accordion-section .tas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-accordion-section .tas-tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  border: 1.5px solid #E9EFFD;
  color: #282170;
  background: #E9EFFD;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: default;
}

.tech-accordion-section .tas-tag:hover {
  background: #0888e3;
  border-color: #93c5fd;
  transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .tech-accordion-section .tas-heading-wrap {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .tech-accordion-section .tas-subtitle {
    max-width: 100%;
  }
}




/* =============================================
       COUNTER SECTION — all styles scoped under
       .tcs-counter-section  (tcs = tech counter section)
       Safe to drop on any page with Bootstrap + jQuery
       ============================================= */

.tcs-counter-section {
  /* font-family: 'Manrope', sans-serif; */
  padding: 12% 2.5%;
  background: url('../assets/banner/counter-banner.svg')no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
}

/* ---- Grid ---- */
.tcs-counter-section .tcs-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* ---- Single stat cell ---- */
.tcs-counter-section .tcs-stat {
  flex: 1;
  text-align: center;
  padding: 20px 30px;
  position: relative;
}

/* Centre card gets white card treatment */
.tcs-counter-section .tcs-stat.tcs-featured {
  background: #ffffff;
  border-radius: 18px;
  padding: 45px 15px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  z-index: 2;
  margin: -20px 10px;
  /* lifts above siblings */
}

/* ---- Number row ---- */
.tcs-counter-section .tcs-number-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.tcs-counter-section .tcs-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: #E17B1D;
  line-height: 1;
}

.tcs-counter-section .tcs-featured .tcs-number {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.tcs-counter-section .tcs-suffix {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #E17B1D;
  margin: 25px -10px 0 0;
}

/* ---- Label ---- */
.tcs-counter-section .tcs-label {
  font-size: 25px;
  font-weight: lighter;
  color: #ffffff;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

.tcs-counter-section .tcs-featured .tcs-label {
  color: #0D0F30;
  font-weight: 300;
}

/* ---- Divider lines between side stats and card ---- */
.tcs-counter-section .tcs-stat:not(.tcs-featured)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.tcs-counter-section .tcs-stat:last-child::after {
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 576px) {
  .tcs-counter-section .tcs-grid {
    flex-direction: column;
    gap: 16px;
  }

  .tcs-counter-section .tcs-stat.tcs-featured {
    margin: 0;
    width: 100%;
    border-radius: 14px;
    padding: 30px 24px;
  }

  .tcs-counter-section .tcs-stat:not(.tcs-featured)::after {
    display: none;
  }
}





/* Portfolio section start */
.work-portfolio-sec {
  padding: 5%;
  background: url('../assets/banner/portfolio-banner.svg')no-repeat;
  background-position: center;
  background-size: cover;
}

.work-portfolio-sec .row .col-md-3 {
        text-align: right;
    }

.work-portfolio-sec .portfolio-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-portfolio-sec .portfolio-overlay {
  margin: 15px;
}

.work-portfolio-sec .portfolio-item a {
  text-align: center;
  color: #28282B;
  text-decoration: underline;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 12px 0;
  display: block;
  width: 100%;
  transition: 0.4s;
}
.work-portfolio-sec .portfolio-item a:hover{
    color: #19529b;
    text-decoration: none;
    font-weight: 600;
    transform: scale(1.03)
}

/* =============================================
       TESTIMONIAL SLIDER — all styles scoped under
       .tts-section   (tts = testimonial slider)
       ============================================= */

.tts-section {
  padding: 5% 2%;
  background: url(../assets/banner/review-banner.svg)no-repeat;
  background-size: cover;
  background-position: center;
  /* replace / remove as needed */
  position: relative;
  overflow: hidden;
}

/* space between items */
.tts-section .slick-slide {
    margin: 0 10px; /* gap = 20px total between slides */
}

/* fix overflow cutting */
.tts-section .slick-list {
    margin: 0 -10px;
}

/* ---- Section heading ---- */
.tts-section .tts-tag {
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: #E17B1D;
  margin-bottom: 6px;
  text-align: center;
}

.tts-section .tts-heading {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #0D0F30;
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.2;
}

/* ---- Slider wrapper — leaves room for arrows ---- */
.tts-section .tts-slider-wrap {
  position: relative;
  padding: 0 80px;
}

/* ---- Single slide ---- */
.tts-section .tts-slide {
  padding: 0 20px;
  outline: none;
}

.tts-section .tts-slide-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

/* ---- Quote text ---- */
.tts-section .tts-quote-text {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  color: #858688;
  line-height: 1.85;
  margin-bottom: 36px;
}

/* ---- Opening quote mark ---- */
.tts-section .tts-quote-icon {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: #E17B1D;
  font-family: Georgia, serif;
  text-align: left;
  max-width: 760px;
  margin: 0 auto 8px;
  padding-left: 0;
}

/* ---- Author avatar ---- */
.tts-section .tts-author-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.tts-section .tts-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

/* Placeholder avatar when no image is provided */
.tts-section .tts-avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E17B1D, #fb923c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  border: 3px solid #e5e7eb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.tts-section .tts-author-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0D0F30;
}

.tts-section .tts-author-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: #9ca3af;
  margin-top: -6px;
  display: none;
}

/* ---- Arrow buttons ---- */
.tts-section .tts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.tts-section .tts-arrow:hover {
  background: #E17B1D;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.28);
  transform: translateY(-50%) scale(1.07);
}

.tts-section .tts-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #858688;
  transition: stroke 0.25s;
}

.tts-section .tts-arrow:hover svg {
  stroke: #ffffff;
}

.tts-section .tts-prev {
  left: 0;
}

.tts-section .tts-next {
  right: 0;
}

/* Hide default slick arrows */
.tts-section .slick-prev,
.tts-section .slick-next {
  display: none !important;
}

/* ---- Dots ---- */
.tts-section .slick-dots {
  bottom: -36px;
}

.tts-section .slick-dots li button:before {
  font-size: 9px;
  color: #cbd5e1;
  opacity: 1;
  transition: color 0.25s;
}

.tts-section .slick-dots li.slick-active button:before {
  color: #E17B1D;
  opacity: 1;
}

.logo-carouse .logo-item img {
  height: 100px;
  width: 55%;
  margin: 0 auto;
}

.blog-section__tags {
  position: absolute;
  top: 20px;
  left: 5%;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .tts-section .tts-slider-wrap {
    padding: 0 56px;
  }

  .tts-section .tts-arrow {
    width: 40px;
    height: 40px;
  }

  .tts-section .tts-arrow svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .tts-section .tts-slider-wrap {
    padding: 0 44px;
  }
}






/* Blog Slider CSS */
.blog-section {
  background: linear-gradient(90deg, #f4f4f4, #c9e0ef);
}

/* TITLE */
.blog-section .blog-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #0D0F30;
}

.blog-section .blog-section__title span {
  color: #E17B1D;
}

/* CARD COMMON */
.blog-section .blog-section__card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* LARGE CARD */
.blog-section .blog-section__card--large {
  position: relative;
}

.blog-section .blog-section__card--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-section .blog-section__overlay {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* TAGS */
.blog-section .blog-section__tags span {
  background-image: linear-gradient(to right, #261D74, #00A3FF);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  margin-right: 6px;
  display: inline-block;
}

/* META */
.blog-section .blog-section__meta {
  font-size: 12px;
  color: #858688;
  font-weight: 600;
}

.blog-section .blog-section__meta span {
  margin-right: 10px;
}
.blog-section .blog-section__meta span .blu-txt{
    color: #261D74;
}
/* SMALL CARDS */
.blog-section .blog-section__card--small {
  padding: 20% 5% 5%;
  position: relative;
}

.blog-section .blog-section__card--small h5 {
  font-size: 18px;
  font-weight: 600;
  color: #28282B;
}

.blog-section__card--large {
  position: relative;
  overflow: hidden;
}

.blog-section__card--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-section .blog-section__card--small p {
  font-size: 14px;
  color: #858688;
}

.blog-section .blog-section__card--small a {
  font-size: 13px;
  color: #1e73be;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .blog-section .blog-section__card--large {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .blog-section .blog-section__title {
    font-size: 26px;
  }
}





/* Accoriodn css */
.faq-section {
  background: #f5f6f8;
  padding: 60px 0;
}

.faq-section .faq-title {
  color: #E17B1D;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 30px;
}

.faq-section .faq-accordion {
  max-width: 800px;
  margin: auto;
}

.faq-section .faq-item {
  position: relative;
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
}


.faq-section .faq-item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  /* border thickness */
  border-radius: 12px;

  background: linear-gradient(45deg, #261D74, #00A3FF);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}


.faq-section .faq-question {
  padding: 15px 20px 0;
  cursor: pointer;
  position: relative;
  font-size: 14px;
  color: #28282B;
}

.faq-section .faq-question p {
     font-size: 16px;
  color: #28282B;
}

.faq-section .faq-icon {
  position: absolute;
  right: 20px;
  top: 45%;
  transition: 0.3s;
}

.faq-section .faq-answer {
  display: none;
  padding: 15px 20px;
  font-size: 13px;
  color: #555;
  border-top: 1px solid #eee;
}

.faq-section .faq-item.active .faq-icon {
  transform: rotate(180deg);
}













/* ===========================
   FOOTER VARIABLES
=========================== */
:root {
  --navy: #0D0F30;
  --purple: #261D74;
  --orange: #E17B1D;
  --white: #FFFFFF;
  --gray: #F4F4F8;
  --text: #333344;
}

/* ===========================
   CONTACT FORM SECTION
=========================== */

.contact-pg-main .head-container { margin: 5% auto 0;}
.contact-section {
  /* background: linear-gradient(160deg, #f0f0fa 0%, #fdf4ec 100%); */
  padding: 0 0 100px;
  margin: -15% 0 0 0;
  position: relative;
  overflow: hidden;
}

/* decorative blobs */
/* 
.foot-mid::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(225,123,29,0.08);
  pointer-events: none;
}

.foot-mid::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(38,29,116,0.06);
  pointer-events: none;
} */

.contact-card {
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 50px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-card-title {
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  color: #3A3A3B;
  margin-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-card-title span {
  /* background: linear-gradient(90deg, var(--orange), #c96a10);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; */
  color: #E17B1D;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Illustration side */
.contact-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-illustration img {
  max-width: 100%;
  height: auto;
  /* max-height: 280px; */
  object-fit: contain;
}

/* Form side */
.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid;
  border-image: linear-gradient(45deg, #261D74, #00A3FF) 1;
  border-radius: 8px;
  font-size: 13.5px;
  color: 858688;
  /* font-family: 'Segoe UI', sans-serif; */
  /* background: #fafafa; */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(38, 29, 116, 0.08);
  background: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}

.contact-form select {
  color: #aaa;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form select.selected {
  color: var(--text);
}

.contact-form textarea {
  resize: none;
  height: 90px;
}

.contact-form .btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
  font-family: 'Segoe UI', sans-serif;
}

.contact-form .btn-submit:hover {
  background: #c96a10;
  transform: translateY(-1px);
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: url('../assets/banner/footer-banner.svg')no-repeat;
  background-size: cover;
  background-position: bottom;
  color: var(--white);
  /* padding-top: 60px; */
}

/* Links area */
.footer-links-area {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.footer-col ul li a:hover {
  color: var(--orange);
}

/* Social icons row */
.footer-socials-row {
  padding: 36px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon-btn {
  /* width: 44px; height: 44px; */
  border-radius: 50%;
  /* border: 1.5px solid rgba(255,255,255,0.20); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-icon-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(225, 123, 29, 0.08);
}

/* Bottom info area */
.footer-bottom-area {
  padding: 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-decor {
  width: 100%;
}

.footer-tagline {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: lighter;
  line-height: 1.5;
  color: var(--white);
  /* font-family: 'Georgia', serif; */
  letter-spacing: -0.5px;
}

/* Contact info card */
.footer-contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 6% 8%;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item a {
    color: #fff;
}
.footer-contact-item a:hover {
    color: #000;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  /* filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%); */
}

.footer-contact-text {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
}

/* Copyright bar */
.footer-copyright {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright p {
  font-size: 12.5px;
  color: #858688;
}

.footer-copyright p strong {
  color: #fff;
}

.footer-legal {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-links-area .foot-mid {
  position: relative;
  /* padding: 20px; */
}

/* LEFT BORDER */
.footer-links-area .foot-mid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  width: 2px;
  height: 60%;
  background: #ccc;
  /* change color */
}

/* RIGHT BORDER */
.footer-links-area .foot-mid::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  width: 2px;
  height: 60%;
  background: #ccc;
  /* change color */
}


.footer-legal li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: color 0.2s;
}

.footer-legal li:last-child a {
  border-right: none;
}

.footer-legal li a:hover {
  color: var(--orange);
}