/* ================= ROOT ================= */
:root {
  --main-font: Arial, sans-serif;
}

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--main-font);
}

/* ================= GLOBAL ================= */
html, body {
  height: 50%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

html {
  overflow-y: scroll;
}

body {
  scroll-behavior: smooth;
}

/* ================= HEADER ================= */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: all 0.3s ease;
  border-bottom: 1px solid #eee;
}

/* ================= LOGO ================= */
.logo {
  height: 50px;
  width: auto;
  margin-right: 20px;
  margin-left: -8px;
  transition: transform 0.3s ease;
  display: block;
  flex-shrink: 0;
}

.logo:hover {
  transform: scale(1.05);
}

@media (max-width:768px){
  .logo{
    height:45px;
    margin-left:0;
  }
}

/* ================= NAVBAR ================= */
nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

/* ✅ FIX ADDED: prevent overflow at tablet */
@media (max-width: 1024px) {
  nav {
    gap: 18px;
    justify-content: flex-end;
  }

  .nav-link {
    font-size: 14px;
  }

  .contact-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ================= NAV LINK ================= */
.nav-link {
  text-decoration: none;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #3b82f6;
}

/* ================= DROPDOWN ================= */
.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  background: #ffffff;
  min-width: 180px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.dropdown ul {
  list-style: none;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
  color: #1f2937;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:hover {
  background: #f3f4f6;
}

/* ================= BUTTON ================= */
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(90deg,#0f1f3d,#1e3a8a);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ================= MENU BUTTON ================= */
#menuBtn{
  font-size:26px;
  cursor:pointer;
  border:none;
  background:none;
  display:none;
  -webkit-tap-highlight-color: transparent;
}

/* ================= MOBILE MENU ================= */
#mobileMenu{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#ffffff;
  z-index:999;

  max-height:0;
  overflow-y:auto;
  opacity:0;
  transform:translateY(-10px);
  pointer-events:none;
  transition:all .4s ease;

  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

#mobileMenu.active{
  max-height:90vh;
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* ================= MOBILE LINK ================= */
.mobile-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:12px 16px;
  font-size:16px;
  border:none;
  background:none;
  border-bottom:1px solid #eee;
  font-weight:500;
  color:#1f2937;
  text-align:left;
  cursor:pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-link:hover{
  background:#f1f1f1;
}

.mobile-link span{
  margin-left:auto;
  font-size:18px;
  color:#6b7280;
  transition:0.3s ease;
}

#mobileMenu.active .mobile-link span{
  transform:rotate(180deg);
}

/* ================= SUBMENU ================= */
#mobileSubMenu{
  max-height:0;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  transition:max-height .35s ease;
}

#mobileSubMenu.show{
  max-height:70vh;
}

#mobileSubMenu a{
  display:block;
  padding:10px 25px;
  font-size:14px;
  text-decoration:none;
  color:#1f2937;
  border-bottom:1px solid #f1f1f1;
  background:#ffffff;
}

#mobileSubMenu a:hover{
  background:#f3f4f6;
}

/* ================= TABLET FIX ================= */
@media(max-width:991px){
  nav{
    gap:15px;
  }

  .nav-link{
    font-size:14px;
  }

  .contact-btn{
    padding:8px 14px;
    font-size:13px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  nav{
    display:none;
  }

  #menuBtn{
    display:block;
  }
}

/* ================= DESKTOP SAFETY FIX ================= */
@media(min-width:769px){
  #mobileMenu{
    display:none !important;
    height:auto;
    max-height:none;
    opacity:1;
    transform:none;
    pointer-events:auto;
  }

  #mobileMenu.active{
    display:none !important;
  }
}

/* ================= HERO ================= */

/* Default Hero (Home Page) */
.hero {
  position: relative;
  height: 70vh;
  margin-top: 70px;
  background: url("images/indexbackground.png") no-repeat center/cover;
  display: flex;
  align-items: center;
  padding: 0 80px;
  color: #fff;
}

/* Hero Variants */
.hero-about { background: url("images/aboutushero.webp") no-repeat center/cover; }
.hero-contactus { background: url("images/contactus.webp") no-repeat center/cover; }
.hero-carrer { background: url("images/carrer.webp") no-repeat center/cover; }
.hero-casestudy { background: url("images/casestudy.webp") no-repeat center/cover; }
.hero-webdev { background: url("images/webdevlopementhero.webp") no-repeat center/cover; }
.hero-cmsdev { background: url("images/cmsdev.webp") no-repeat center/cover; }
.hero-qaauto { background: url("images/aiautohero.webp") no-repeat center/cover; }

/* Image Set Starts From Here */
.hero-dataanalytics { background: url("images/dataanalytics.webp") no-repeat center/cover; }
.hero-aiautomation { background: url("images/aiautomation.webp") no-repeat center/cover; }
.hero-businessanalyst { background: url("images/businessanalyst.webp") no-repeat center/cover; }
.hero-mobileapp { background: url("images/mobileapp.webp") no-repeat center/cover; }
.hero-erpsolutions { background: url("images/erpsolutions.webp") no-repeat center/cover; }

/* ================= OVERLAY ================= */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 25, 50, 0.9),
    rgba(8, 25, 50, 0.5),
    rgba(8, 25, 50, 0.1)
  );
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  max-width: 750px;
  z-index: 2;
}

/* ================= TEXT ================= */
.hero h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.3;
}

.highlight {
  color: #f5d7a1;
}

.hero p {
  margin: 20px 0;
  font-size: 16px;
  color: #e0e0e0;
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 14px 24px;
  background: #f5d7a1;
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  margin-top: 32px;
  position: relative;
  top: 0;
  transition: transform .15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .hero {
    padding: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 34px;
  }

  .btn {
    margin-top: 32px;
  }

}

/* ================= RIBBON ================= */
.ribbon {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #0f1f3d, #1e3a8a);
  padding: 23px 0;
  white-space: nowrap;
  margin-top: 3px;
}

.ribbon-track {
  display: inline-flex;
  gap: 25px;
  animation: scroll 40s linear infinite;
}

.ribbon span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

.ribbon span::after {
  content: "✦";
  margin-left: 25px;
  color: #f5d7a1;
  font-size: 20px;
}

@keyframes scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* ================= ABOUT ================= */

.about {
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.about-text {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
}

/* RIGHT */
.about-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: flex-end;
}

/* ================= TAG ================= */
.tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 14px;
}

/* ================= TEXT ================= */
.about-text h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

.desc {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* ================= FEATURES (DESKTOP SIDE BY SIDE) ================= */
.features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* FEATURE BOX */
.feature {
  display: flex;
  gap: 15px;
  flex: 1;
  min-width: 250px;
}

/* ICON */
.about .icon {
  width: 42px;
  height: 42px;
  background: #eef2ff;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .icon svg {
  width: 20px;
  height: 20px;
}

/* TEXT */
.feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.feature p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* ================= IMAGE ================= */
.image-wrapper {
  position: relative;
}

.image-wrapper::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 20%;
  height: 80%;
  width: 4px;
  background: #3b82f6;
}

.about-image img {
  width: 100%;
  max-width: 390px;
  display: block;
}

/* ================= MOBILE (STACK VERTICAL) ================= */
@media (max-width: 768px) {

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    order: -1;
    justify-content: center;
  }

  .features {
    flex-direction: column;
    align-items: center;
  }

  .feature {
    justify-content: center;
    text-align: left;
    max-width: 100%;
  }

  .image-wrapper::before {
    display: none;
  }

  .about-text h2 {
    font-size: 28px;
  }
}

/* ================= STATS SECTION ================= */
.stats {
  padding: 60px 20px;
  background: #fff;
}

/* ================= HEADING ================= */
.stats-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 40px;
}

/* ================= CONTAINER ================= */
.stats-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

/* ================= STAT BOX ================= */
.stat {
  flex: 1;
  text-align: center;
}

/* ================= NUMBER ================= */
.stat h2 {
  font-size: 36px;
  color: #111;
  font-weight: 700;
  margin-bottom: 6px;
}

/* ================= TEXT ================= */
.stat p {
  font-size: 13px;
  color: #6b7280;
  letter-spacing: 1px;
}

/* ================= DIVIDER ================= */
.divider {
  width: 1px;
  height: 45px;
  background: #e5e7eb;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .stats-title {
    font-size: 28px;
  }

  .stats-container {
    flex-direction: column;
  }

  .divider {
    width: 60%;
    height: 1px;
  }
}


/* ================= SERVICES ================= */

.services {
  padding: 70px;
  text-align: center;
  background: #f3f4f6;
}

/* 🔹 NEW HEADER (TECH STYLE) */

.services-header .tag {
  font-size: 12px;
  color: #6b7280;
  letter-spacing: 1px;
}

.services-header h2 {
  font-size: 32px;
  margin: 10px 0;
  color: #0f172a;
  font-weight: 700;
}

.services-header p {
  font-size: 14px;
  color: #4b5563;
  max-width: 600px;
  margin: auto;
}

/* ================= GRID ================= */
.services-container {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD ================= */
.card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= ICON ================= */
.icon-box {
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 32px;
  color: #0f172a;
}

/* ================= TEXT ================= */
.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.card h3 a {
  text-decoration: none;
  color: inherit;
}

.card p {
  font-size: 14px;
  color: #6b7280;
}

/* ================= HIDDEN ================= */
.hidden {
  display: none;
}

/* ================= SHOW MORE ================= */

.show-more {
  margin-top: 50px;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
}

#toggleBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 160px;
  height: 46px;
  padding: 0 24px;

  border: none;
  border-radius: 50px;
  cursor: pointer;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;

  background: linear-gradient(90deg, #0f1f3d, #1e3a8a);

  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  transition: .3s ease;
}

#toggleBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

/* ===== EXPLORE STRIP ===== */

.explore-strip {
  background: linear-gradient(90deg, #0f1f3d, #1e3a8a);
  padding: 24px 20px;
}

.explore-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 20px;
}

.explore-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;

  margin-left: 40px;
  margin-right: 10px;

  flex: 1;
}

.explore-btn {
  padding: 12px 26px;
  background: #f5d7a1;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 550;
  white-space: nowrap;

  flex-shrink: 0;

  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
  background: #fadfac;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .services-container {
    grid-template-columns: 1fr;
  }

  .show-more {
    margin-top: 40px;
    justify-content: center;
  }

  #toggleBtn {
    min-width: 150px;
    height: 44px;
    font-size: 13px;
    padding: 0 22px;
  }

  .explore-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding-left: 0;
  }

  .explore-text {
    font-size: 16px;
    margin: 0;
  }

  .explore-btn {
    width: 100%;
    text-align: center;
  }

}

/* <!-- ================= WHY CHOOSE US ================= --> */
.why2-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(90deg, #0f1f3d, #1e3a8a);
  color: #fff;
}

/* CONTAINER */
.why2-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* TAG */
.why2-tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: #8aa0ff;
}

/* TITLE */
.why2-title {
  font-size: 34px;
  margin: 15px 0 50px;
  font-weight: 700;
  line-height: 1.3;
}

/* GRID */
.why2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.why2-card {
  position: relative;
  padding-top: 55px;
  transition: transform 0.3s ease;
}

.why2-card:hover {
  transform: translateY(-5px);
}

/* NUMBER */
.why2-number {
  font-size: 48px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* HEADING */
.why2-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.why2-card p {
  font-size: 14px;
  color: #cfd8ff;
  line-height: 1.7;
  max-width: 320px;
}

/* MOBILE */
@media (max-width: 992px) {
  .why2-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .why2-section {
    padding: 60px 0;
  }

  .why2-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .why2-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why2-card {
    padding-top: 45px;
  }

  .why2-number {
    font-size: 40px;
  }

  .why2-card p {
    font-size: 13px;
  }
}

/* ================= STATS ================= */
.stats {
  padding: 60px 20px;
  background: #fff;
}

.stats-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.stats-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat h2 {
  font-size: 36px;
}

.stat p {
  font-size: 13px;
  color: #6b7280;
}

.divider {
  width: 1px;
  height: 50px;
  background: #e5e7eb;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* SERVICES */
  .services {
    padding: 40px 16px;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 30px 25px;
  }

  .show-more {
    text-align: center;
  }

  /* STATS */
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .divider {
    display: none;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 70px;
  text-align: center;
}

/* headings same */
.subheading {
  color: #888;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.heading {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 40px;
}

/* ================= GRID ================= */

.testimonial-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= CARD (STATIC HOVER EFFECT LOOK) ================= */

.testimonial-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  transition: none;
}

/* ================= PROFILE ================= */

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.profile img {
  width: 100px;
  height: 100px;
  border-radius: 70%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.profile h4 {
  margin: 0;
  font-size: 18px;
  color: #111;
}

.profile span {
  font-size: 12px;
  color: #6b7280;
}

/* ================= TEXT ================= */

.quote {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 10px 0 15px;
}

/* ================= STARS ================= */

.stars {
  color: #fbbf24;
  font-size: 16px;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

.testimonials{
padding:50px 14px;
}

.testimonial-container{
grid-template-columns:1fr;
gap:16px;
width:100%;
}

.testimonial-card{
width:100%;
max-width:100%;
padding:26px 20px;
}

}

/* ================= TECHSTACK ================= */

.tech {
  max-width: 1000px;
  margin: 80px auto;
  text-align: center;
}

/* 🔹 HEADER */
.tech-header .tag {
  font-size: 12px;
  color: #888;
}

.tech-header h2 {
  font-size: 28px;
  margin: 10px 0;
  color: #0f1f3d;
}

.tech-header p {
  font-size: 14px;
  color: #666;
}

/* 🔹 TABS */
.tech-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.tab {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
  position: relative;
  transition: 0.2s;
  white-space: nowrap;
}

.tab.active {
  color: #0f1f3d;
  font-weight: 600;
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0f1f3d;
}

/* 🔹 CONTENT */
.tech-content {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateX(40px);
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
  transition: all 0.35s ease;
}

/* 🔥 ANIMATION */
.slide-left {
  animation: slideLeft 0.35s ease;
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-right {
  animation: slideRight 0.35s ease;
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 🔥 ICON GRID (DESKTOP) */
.tech-icons {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center;
  gap: 35px 55px;
  padding: 35px 0;
}

/* 🔥 FRONTEND */
#frontend .tech-icons {
  grid-template-columns: repeat(5, max-content);
  justify-content: center;
}

/* 🔹 DIVIDER LINE */
.tech-icons div {
  text-align: center;
  position: relative;
}

.tech-icons div::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 10px;
  height: 45px;
  width: 1px;
  background: #ddd;
}

.tech-icons div:nth-child(5n)::after {
  display: none;
}

/* 🔹 ICON */
.tech-icons img {
  width: 52px;
  height: 52px;
  margin-bottom: 10px;
  transition: transform 0.2s ease;
}

.tech-icons img:hover {
  transform: scale(1.15);
}

/* 🔹 TEXT */
.tech-icons span {
  display: block;
  font-size: 13px;
  color: #555;
}

/* ================= MOBILE ================= */

.tech-mobile {
  display: none;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .tech-content {
    display: none;
  }

  .tech-mobile {
    display: block;
    overflow: hidden;
    position: relative;
    height: auto;
  }

  .tech-mobile-wrapper {
    display: flex;
    transition: transform 0.4s ease, height 0.3s ease;
    width: 100%;

    align-items: flex-start;
  }

  .mobile-tab {
    min-width: 100%;
    flex-shrink: 0;
  }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 8px;
    justify-items: center;
    align-items: start;
    padding: 15px 6px;
  }

  .tech-grid img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .tech-grid span {
    font-size: 11px;
    text-align: center;
    margin-top: 4px;
    color: #444;
  }

  .tech-icons {
    display: none;
  }

  .tech-icons div::after {
    display: none;
  }

  .tech-header h2 {
    font-size: 24px;
  }
}

/* 🔥 MOBILE TABS SCROLL */
@media (max-width: 768px) {

  .tech-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 10px;
  }

  .tech-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    flex: 0 0 auto;
  }
}

/* ================= Case Studies ================= */

.cs-section{
padding:90px 20px;
background:#f3f4f6;
}

.cs-container{
max-width:1180px;
margin:auto;
}


/* HEADING */
.cs-head{
margin-bottom:60px;
}

.cs-tag{
display:inline-block;
font-size:12px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
color:#888;
margin-bottom:14px;
}

.cs-head h2{
font-size:34px;
line-height:1.1;
font-weight:700;
color:#101828;
margin:0;
}


/* GRID */
.cs-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:34px;
}


/* CARD */
.cs-card{
display:block;
text-decoration:none;
transition:.35s ease;
}

.cs-image-wrap{
position:relative;
overflow:hidden;
border-radius:22px;
background:#fff;
box-shadow:0 10px 35px rgba(0,0,0,.06);
}


/* ✅ FIXED IMAGE RATIO (1536 × 1024 = 3:2) */
.cs-image-wrap img{
width:100%;
aspect-ratio: 3 / 2;
height:auto;
object-fit:cover;
display:block;
transition:.5s ease;
}


/* Hover Overlay (No Button) */
.cs-overlay{
position:absolute;
inset:0;
background:rgba(15,23,42,.28);
opacity:0;
transition:.35s ease;
}

.cs-card:hover img{
transform:scale(1.06);
filter:blur(1px);
}

.cs-card:hover .cs-overlay{
opacity:1;
}


/* TEXT */
.cs-content{
padding-top:18px;
}

.cs-content h3{
margin:0 0 8px;
font-size:28px;
line-height:1.3;
font-weight:700;
color:#111827;
}

.cs-content p{
margin:0;
font-size:15px;
color:#6b7280;
}


/* SHOW MORE BUTTON */
.cs-more-wrap{
display:flex;
justify-content:center;
margin-top:50px;
}

.cs-more-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 24px;
min-width:160px;
border-radius:50px;
text-decoration:none;
font-size:14px;
font-weight:700;
letter-spacing:.2px;
transition:.3s ease;

background:linear-gradient(
90deg,
#0f1f3d,
#1e3a8a
);

color:#fff;
box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.cs-more-btn:hover{
transform:translateY(-3px);
box-shadow:0 14px 34px rgba(0,0,0,.22);
}


/* Tablet */
@media(max-width:991px){

.cs-head h2{
font-size:42px;
}

.cs-grid{
grid-template-columns:1fr 1fr;
gap:30px;
}

.cs-content h3{
font-size:24px;
}

}


/* Mobile */
@media(max-width:768px){

.cs-section{
padding:70px 18px;
}

.cs-head{
margin-bottom:40px;
}

.cs-head h2{
font-size:34px;
}

.cs-grid{
grid-template-columns:1fr;
gap:32px;
}

.cs-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 8px 28px rgba(0,0,0,.07);
}

.cs-image-wrap{
border-radius:0;
}

.cs-image-wrap img{
width:100%;
aspect-ratio: 3 / 2;
height:auto;
object-fit:cover;
filter:none !important;
transform:none !important;
}

.cs-overlay{
display:none;
}

.cs-card:hover img{
transform:none;
filter:none;
}

.cs-card:hover .cs-overlay{
opacity:0;
}

.cs-content{
padding:20px;
text-align:center;
background:#fff;
}

.cs-content h3{
font-size:22px;
margin-bottom:10px;
}

.cs-content p{
font-size:14px;
}

.cs-more-wrap{
margin-top:40px;
}

.cs-more-btn{
padding:11px 22px;
min-width:150px;
font-size:13px;
}

}

/* ================= FAQ ================= */

.faq {
  width: 100%;
  background: #f5f6f8;
  padding: 40px 0;
}

.faq-inner {
  max-width: 760px;
  margin: auto;
  padding: 0 15px;
}

/* ================= HEADER (same as tech) ================= */

.faq .tech-header {
  text-align: center;
  margin-bottom: 20px;
}

.tech-header .tag {
  font-size: 12px;
  color: #888;
}

.tech-header h2 {
  font-size: 28px;
  margin: 10px 0;
  color: #0f1f3d;
}

.tech-header p {
  font-size: 14px;
  color: #666;
}

/* ================= LIST ================= */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* ================= ITEM ================= */

.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
}

/* ================= QUESTION ================= */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
}

/* ================= ICON (ROUND + SPIN) ================= */

.icon {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9edf3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.3s ease;
}

/* plus lines */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #333;
  transition: all 0.3s ease;
}

/* horizontal */
.icon::before {
  width: 10px;
  height: 2px;
}

/* vertical */
.icon::after {
  width: 2px;
  height: 10px;
}

/* 🔥 ACTIVE → MINUS + SPIN */
.faq-item.active .icon {
  transform: rotate(180deg);
}

.faq-item.active .icon::after {
  transform: scaleY(0);
}

/* hover effect */
.faq-item:hover .icon {
  background: #dfe5ec;
}

/* ================= ANSWER ================= */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* active open */
.faq-item.active .faq-answer {
  max-height: 140px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .faq {
    padding: 30px 0;
    margin: 15px 0;
  }

  .faq-inner {
    padding: 0 14px;
  }

  .faq-list {
    gap: 3px;
  }

  .faq .tech-header {
    margin-bottom: 15px;
  }

  .tech-header h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .icon {
    width: 26px;
    height: 26px;
  }
}

/* ===== NEWSLETTER STRIP ===== */

.newsletter-bar {
  width: 100%;
  background: linear-gradient(90deg, #0f1f3d, #1e3a8a);
  padding: 30px 20px;
}

/* CONTAINER */
.nb-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ================= LEFT (HEADER STYLE) ================= */

.nb-left {
  max-width: 520px;
}

/* 🔥 TAG */
.nb-tag {
  font-size: 12px;
  color: #9fb3d1;
  margin-bottom: 6px;
  display: inline-block;
}

/* 🔥 HEADING */
.nb-left h2 {
  font-size: 28px;
  margin: 8px 0;
  color: #ffffff;
}

/* 🔥 PARAGRAPH */
.nb-left p {
  font-size: 14px;
  color: #cbd5f1;
  line-height: 1.6;
}

/* ================= RIGHT FORM ================= */

.nb-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* INPUTS (proper rectangle) */
.nb-form input {
  padding: 12px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  background: #ffffff;
  min-width: 200px;
  transition: 0.2s ease;
}

/* focus effect */
.nb-form input:focus {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}

/* BUTTON */
.nb-form button {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  border: none;
  background: #b08d57;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nb-form button:hover {
  transform: translateY(-2px);
  background: #c9a96a;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .nb-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nb-left {
    text-align: left;
  }

  .nb-left h2 {
    font-size: 22px;
  }

  .nb-left p {
    font-size: 13px;
  }

  .nb-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nb-form input {
    width: 100%;
  }

  .nb-form button {
    width: 100%;
    height: 44px;
  }
}

/* ================= CTA ================= */

.final-cta{
padding:100px 20px 80px;
background:#fff;
text-align:center;
}

.final-cta-wrap{
max-width:920px;
margin:auto;
}

.final-cta-title{
max-width:850px;
margin:0 auto 26px;
font-size:50px;
line-height:1.08;
font-weight:700;
letter-spacing:-1.5px;
color:#111827;
}

.final-cta-text{
max-width:760px;
margin:0 auto 40px;
font-size:18px;
line-height:1.8;
color:#6b7280;
}

.final-cta-actions{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}


/* Gradient Primary Button */
.cta-primary,
.cta-secondary{
text-decoration:none;
padding:15px 34px;
border-radius:14px;
font-size:15px;
font-weight:600;
transition:.3s;
}

.cta-primary{
background:linear-gradient(
90deg,
#0f1f3d,
#1e3a8a
);
color:#fff;
box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.cta-primary:hover{
transform:translateY(-3px);
box-shadow:0 14px 34px rgba(0,0,0,.24);
}


.cta-secondary{
background:#fff;
border:1px solid #cfd9ea;
color:#1e293b;
}

.cta-secondary:hover{
transform:translateY(-3px);
border-color:#0f1f3d;
color:#1e3a8a;
}


@media(max-width:768px){

.final-cta{
padding:70px 18px 60px;
}

.final-cta-title{
font-size:42px;
line-height:1.15;
}

.final-cta-text{
font-size:16px;
}

}


@media(max-width:480px){

.final-cta-title{
font-size:36px;
}

.final-cta-actions{
flex-direction:column;
align-items:center;
}

.cta-primary,
.cta-secondary{
width:100%;
max-width:280px;
}

}

/* ================= CONTACT SECTION ================= */

.nx-contact-section{
padding:100px 20px;
background:#ffffff;
text-align:center;
}

/* ================= LAYOUT ================= */

.nx-contact-wrap{
max-width:900px;
margin:auto;
}

/* ================= HEADING ================= */

.nx-contact-heading{
font-size:56px;
line-height:1.1;
font-weight:700;
letter-spacing:-1.2px;
color:#111827;
margin-bottom:20px;
}

.nx-contact-text{
max-width:780px;
margin:0 auto 40px;
font-size:18px;
line-height:1.8;
color:#6b7280;
}

/* ================= FORM LAYOUT ================= */

.nx-row{
display:flex;
gap:20px;
margin-bottom:20px;
}

.nx-full{
flex-direction:column;
}

/* ================= INPUTS ================= */

.nx-contact-wrap input,
.nx-contact-wrap textarea{
width:100%;
padding:15px 18px;
border:1px solid #ddd;
border-radius:12px;
background:#fff;
font-size:14px;
}

.nx-contact-wrap textarea{
min-height:130px;
resize:vertical;
}

.nx-contact-wrap input:focus,
.nx-contact-wrap textarea:focus{
outline:none;
border-color:#b08d57;
box-shadow:0 0 0 2px rgba(176,141,87,.15);
}

/* ================= DROPDOWN ================= */

.nx-dropdown{
position:relative;
width:100%;
}

.nx-dropdown-trigger{
width:100%;
padding:15px 18px;
border:1px solid #ddd;
border-radius:10px;
cursor:pointer;
background:#fff;
position:relative;
text-align:left;
}

.nx-dropdown-trigger:after{
content:"▼";
position:absolute;
right:16px;
top:50%;
transform:translateY(-50%);
font-size:10px;
}

.nx-dropdown-menu{
display:none;
position:absolute;
top:105%;
left:0;
width:100%;
background:#fff;
border:1px solid #e8e8e8;
border-radius:14px;
padding:14px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
z-index:999;
flex-wrap:wrap;
gap:12px;
}

.nx-dropdown.open .nx-dropdown-menu{
display:flex;
}

.nx-option{
padding:10px 20px;
background:#fff;
border:1px solid #d6d6d6;
border-radius:999px;
cursor:pointer;
font-size:13px;
white-space:nowrap;
transition:.25s;
}

.nx-option:hover{
border-color:#1e3a8a;
background:#faf7f1;
}

.nx-option.active{
background:#1e3a8a;
border-color:#1e3a8a;
color:#fff;
}

/* ================= BUTTON ================= */

.nx-submit-btn{
margin-top:30px;
padding:14px 32px;
background:#f5d7a1;
border:none;
border-radius:999px;
cursor:pointer;
font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.nx-contact-heading{
font-size:38px;
}

.nx-contact-text{
font-size:16px;
}

.nx-row{
flex-direction:column;
gap:15px;
}

.nx-option{
font-size:12px;
padding:10px 16px;
}

}

/* ================= Career Section ================= */

.career-cta-section{
padding:100px 20px;
background:#ffffff;
text-align:center;
}

.career-cta-wrap{
max-width:900px;
margin:auto;
}

.career-cta-title{
font-size:56px;
line-height:1.1;
font-weight:700;
letter-spacing:-1.2px;
color:#111827;
margin-bottom:20px;
}

.career-cta-text{
max-width:780px;
margin:0 auto 40px;
font-size:18px;
line-height:1.8;
color:#6b7280;
}

/* ================= Layout ================= */

.career-row{
display:flex;
gap:18px;
margin-bottom:18px;
}

.career-full{
flex-direction:column;
}

.career-cta-wrap input,
.career-cta-wrap textarea{
width:100%;
padding:15px 18px;
border:1px solid #e5e7eb;
border-radius:12px;
font-size:14px;
transition:.25s;
background:#fff;
}

.career-cta-wrap textarea{
min-height:140px;
resize:vertical;
}

.career-cta-wrap input:focus,
.career-cta-wrap textarea:focus{
outline:none;
border-color:#1e3a8a;
box-shadow:0 0 0 3px rgba(30,58,138,.12);
}

/* ================= Dropdown ================= */

.career-dropdown{
position:relative;
width:100%;
}

.career-dropdown-trigger{
padding:15px 18px;
border:1px solid #e5e7eb;
border-radius:12px;
cursor:pointer;
text-align:left;
background:#fff;
position:relative;
font-size:14px;
}

.career-dropdown-trigger:after{
content:"▼";
position:absolute;
right:16px;
top:50%;
transform:translateY(-50%);
font-size:10px;
}

.career-dropdown-menu{
display:none;
position:absolute;
top:110%;
left:0;
width:100%;
background:#fff;
border:1px solid #e5e7eb;
border-radius:14px;
padding:14px;
box-shadow:0 12px 30px rgba(0,0,0,.08);
z-index:999;
flex-wrap:wrap;
gap:10px;
}

.career-dropdown.open .career-dropdown-menu{
display:flex;
}

.career-option{
padding:10px 16px;
border:1px solid #d1d5db;
border-radius:999px;
cursor:pointer;
font-size:13px;
transition:.2s;
}

.career-option:hover{
border-color:#1e3a8a;
background:#f5f8ff;
}

.career-option.active{
background:#1e3a8a;
color:#fff;
border-color:#1e3a8a;
}

/* ================= Resume Upload ================= */

.career-file-label{
display:block;
text-align:left;
font-size:14px;
font-weight:600;
color:#374151;
margin-bottom:8px;
}

.career-file-input{
padding:14px;
border:1px dashed #cbd5e1;
border-radius:12px;
background:#fafafa;
cursor:pointer;
}

.career-file-input::file-selector-button{
padding:10px 16px;
border:none;
background:linear-gradient(90deg,#0f1f3d,#1e3a8a);
color:#fff;
border-radius:8px;
cursor:pointer;
margin-right:12px;
font-weight:600;
}

/* ================= Button ================= */

.career-submit-btn{
margin-top:25px;
padding:15px 36px;
background:linear-gradient(90deg,#0f1f3d,#1e3a8a);
color:#fff;
border:none;
border-radius:14px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.career-submit-btn:hover{
transform:translateY(-3px);
box-shadow:0 14px 34px rgba(0,0,0,.22);
}

/* ================= Responsive ================= */

@media(max-width:768px){

.career-cta-title{
font-size:38px;
}

.career-cta-text{
font-size:16px;
}

.career-row{
flex-direction:column;
}

}

.abt-cs-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;

  padding:14px 28px;
  border-radius:60px;
  font-weight:600;
  font-size:17px;
  color:#fff;
  background:linear-gradient(90deg, #0f1f3d, #1e3a8a);
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  transform:translateY(8px);
  transition:.35s ease;
  border:none;
  cursor:pointer;
}

/* hover effect */
.abt-cs-btn:hover{
  transform:translateY(8px) scale(1.03);
  box-shadow:0 14px 34px rgba(0,0,0,.25);
}

/* ================= PROCESS SECTION ================= */

.process-section{
padding:90px 20px;
text-align:center;
background:#ffffff;
}

.process-container{
max-width:1200px;
margin:auto;
}

/* ================= PROCESS FLOW ================= */

.process-flow{
display:flex;
align-items:flex-start;
justify-content:center;
flex-wrap:nowrap;
margin-top:70px;
}

/* ================= STEP ================= */

.process-step{
width:180px;
text-align:center;
position:relative;
flex-shrink:0;
}

/* ================= PREMIUM DARK BLUE CIRCLE ================= */

.step-circle{
position:relative;

width:90px;
height:90px;

margin:auto auto 24px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:24px;
font-weight:700;
color:#ffffff;

background:
linear-gradient(
145deg,
#081120 0%,
#0f1f3d 35%,
#17326b 70%,
#1e3a8a 100%
);

border:1px solid rgba(255,255,255,0.08);

box-shadow:
0 14px 35px rgba(8,17,32,0.45),
0 8px 18px rgba(15,31,61,0.28),
inset 0 1px 10px rgba(255,255,255,0.08);

overflow:hidden;

transition:all .35s ease;
}

/* glossy top shine */

.step-circle::before{
content:"";

position:absolute;

top:10px;
left:12px;

width:65%;
height:28%;

border-radius:50%;

background:rgba(255,255,255,0.10);

filter:blur(2px);
}

/* subtle outer ring */

.step-circle::after{
content:"";

position:absolute;

inset:-6px;

border-radius:50%;

border:1px solid rgba(30,58,138,0.28);

box-shadow:
0 0 18px rgba(30,58,138,0.18);
}

/* hover premium effect */

.process-step:hover .step-circle{
transform:translateY(-6px) scale(1.04);

box-shadow:
0 20px 45px rgba(8,17,32,0.52),
0 10px 24px rgba(15,31,61,0.32),
inset 0 2px 12px rgba(255,255,255,0.12);
}

/* ================= CONNECTOR LINE ================= */

.process-line{
width:65px;
height:3px;

margin-top:44px;

border-radius:50px;

background:linear-gradient(
90deg,
rgba(15,31,61,0.15),
#17326b,
rgba(15,31,61,0.15)
);
}

/* ================= TEXT ================= */

.process-step h3{
font-size:18px;
font-weight:700;
margin-bottom:12px;
color:#0f172a;
}

.process-step p{
font-size:14px;
line-height:1.7;
color:#64748b;
padding:0 6px;
}

/* ================= MOBILE ================= */

@media(max-width:992px){

.process-flow{
flex-direction:column;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.process-step{
width:100%;
max-width:290px;
}

.process-line{
width:3px;
height:52px;
margin:0;

background:linear-gradient(
180deg,
rgba(15,31,61,0.15),
#17326b,
rgba(15,31,61,0.15)
);
}

.step-circle{
width:84px;
height:84px;
font-size:22px;
}

}

.stack-section{
padding:80px 20px;
background:#f8fafc;
text-align:center;
}

.stack-header{
max-width:760px;
margin:auto auto 60px;
}

.stack-tag{
font-size:12px;
color:#6b7280;
}

.stack-header h2{
font-size:38px;
margin:14px 0;
}

.stack-header p{
color:#667085;
line-height:1.7;
}


/* GRID */

.stack-grid{
max-width:1150px;
margin:auto;

display:grid;
grid-template-columns:repeat(2,1fr);

gap:26px;
}


/* CARD */

.stack-card{
background:#fff;
padding:35px 30px;
border-radius:20px;
box-shadow:0 8px 24px rgba(0,0,0,.05);
text-align:left;
}

.stack-card h3{
font-size:22px;
margin-bottom:28px;
color:#111827;
}


/* ICON GRID */

.stack-icons{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:32px 26px;
}


/* EACH ITEM */

.stack-item{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
}

.stack-item img{
width:52px;
height:52px;
display:block;
margin-bottom:12px;
object-fit:contain;
}

.stack-item span{
display:block;
font-size:14px;
line-height:1.4;
color:#475467;
}


/* MOBILE */

@media(max-width:768px){

.stack-grid{
grid-template-columns:1fr;
}

.stack-icons{
grid-template-columns:repeat(3,1fr);
gap:28px 18px;
}

.stack-header h2{
font-size:30px;
}

.stack-card{
padding:30px 22px;
}

}

/* ================= GLOBAL FONT ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

/* ================= BENEFITS ================= */

.value-section{
background:#fff;
padding:80px 30px;
text-align:center;
}

.value-tag{
font-size:14px;
font-weight:600;
letter-spacing:1px;
color:#6b7280;
margin-bottom:12px;
}

.value-title{
font-size:38px;
font-weight:700;
color:#111827;
margin-bottom:14px;
}

.value-subtitle{
max-width:680px;
margin:auto;
font-size:15px;
line-height:1.7;
color:#6b7280;
margin-bottom:55px;
}

/* GRID */

.value-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* CARDS */

.value-card{
background:#fff;
padding:35px 25px;
border-radius:18px;

box-shadow:
0 8px 20px rgba(0,0,0,.05),
0 2px 6px rgba(0,0,0,.04);
}

/* ICON */

.value-icon{
width:70px;
height:70px;
margin:0 auto 20px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;
font-size:30px;

background:#fff;

box-shadow:
0 10px 24px rgba(0,0,0,.08),
0 3px 8px rgba(0,0,0,.05);
}

.value-card h3{
font-size:20px;
margin-bottom:12px;
color:#111827;
}

.value-card p{
font-size:14px;
line-height:1.7;
color:#6b7280;
}

/* MOBILE */

@media(max-width:992px){
.value-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.value-section{
padding:60px 20px;
}

.value-title{
font-size:30px;
}

.value-grid{
grid-template-columns:1fr;
}

}

/* ================= INDUSTRY PILLS ================= */

.industry-pill-section{
padding:80px 10px;
background:#f5f7f5;
text-align:center;
}

.industry-pill-tag{
font-size:14px;
font-weight:600;
letter-spacing:1px;
color:#6b7280;
margin-bottom:12px;
}

.industry-pill-title{
font-size:38px;
font-weight:700;
color:#111827;
margin-bottom:14px;
}

.industry-pill-sub{
max-width:680px;
margin:auto;
font-size:15px;
line-height:1.7;
color:#6b7280;
margin-bottom:50px;
}

/* GRID */

.industry-pill-grid{
max-width:950px;
margin:auto;

display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

/* PILL */

.industry-pill{
display:inline-flex;
align-items:center;
justify-content:center;

padding:14px 26px;
border-radius:50px;

font-size:15px;
font-weight:600;
color:#0f1f3d;

background:#fff;

border:1px solid #e5e7eb;

box-shadow:
0 6px 16px rgba(0,0,0,.05),
0 2px 6px rgba(0,0,0,.03);

transition:.25s ease;
}

.industry-pill:hover{
transform:translateY(-3px);
box-shadow:
0 10px 22px rgba(0,0,0,.08),
0 3px 8px rgba(0,0,0,.04);
}

/* MOBILE */

@media(max-width:768px){

.industry-pill-section{
padding:55px 18px;
}

.industry-pill-title{
font-size:28px;
line-height:1.3;
}

.industry-pill-sub{
font-size:14px;
margin-bottom:28px;
}

/* centered wrapped pills */
.industry-pill-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px 12px;
max-width:100%;
}

/* smaller elegant pills */
.industry-pill{
width:auto;
min-width:auto;

padding:10px 16px;
font-size:13px;
font-weight:600;

border-radius:999px;

box-shadow:
0 4px 10px rgba(0,0,0,.04);

}

/* featured pills variation feel */
.industry-pill:nth-child(3n){
padding:10px 20px;
}

.industry-pill:nth-child(4n){
background:#f8fafc;
}

}

/* very small phones */
@media(max-width:480px){

.industry-pill-grid{
gap:9px;
}

.industry-pill{
font-size:12px;
padding:9px 14px;
}

}


.privacy-page{
    background:#ffffff;
    color:#475569;
    font-family:'Inter',sans-serif;
    margin-top: 20px;
}

.privacy-page .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 20px;
}

.privacy-hero{
    padding:100px 0 75px;
    background:#ffffff;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.privacy-hero:before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#f1f5ff;
    border-radius:50%;
    top:-220px;
    left:-180px;
}

.privacy-hero:after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:#f8fafc;
    border-radius:50%;
    bottom:-150px;
    right:-100px;
}

.privacy-hero .container{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-flex;
    padding:8px 18px;
    background:#eff6ff;
    color:#2563eb;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.privacy-hero h1{
    color:#0f1f3d;
    font-size:52px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:22px;
}

.privacy-hero p{
    max-width:780px;
    margin:0 auto;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.privacy-hero strong{
    color:#0f1f3d;
}

.last-updated{
    display:inline-flex;
    margin-top:30px;
    padding:10px 22px;
    border:1px solid #e2e8f0;
    border-radius:50px;
    background:#ffffff;
    color:#64748b;
    font-size:14px;
}

.breadcrumb-section{
    padding:18px 0;
    background:#f8fafc;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
}

.breadcrumb a{
    color:#0f1f3d;
    text-decoration:none;
    font-weight:600;
}

.breadcrumb a:hover{
    color:#2563eb;
}

.breadcrumb span{
    color:#94a3b8;
}

.privacy-section{
    padding:85px 0;
    background:#ffffff;
}

.privacy-section.alt-bg{
    background:#f8fafc;
}

.section-heading{
    max-width:760px;
    margin:0 auto 45px;
    text-align:center;
}

.section-heading span{
    display:block;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.2px;
    margin-bottom:14px;
}

.section-heading h2{
    color:#0f1f3d;
    font-size:38px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:18px;
}

.section-heading p{
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

@media(max-width:992px){
    .privacy-hero{
        padding:80px 0 60px;
    }
    .privacy-hero h1{
        font-size:42px;
    }
    .privacy-section{
        padding:70px 0;
    }
}

@media(max-width:768px){
    .privacy-page .container{
        padding:0 16px;
    }
    .privacy-hero h1{
        font-size:34px;
    }
    .privacy-hero p{
        font-size:16px;
    }
    .section-heading h2{
        font-size:28px;
    }
    .section-heading p{
        font-size:15px;
    }
}

@media(max-width:480px){
    .privacy-hero{
        padding:60px 0 45px;
    }
    .privacy-hero h1{
        font-size:30px;
    }
    .hero-badge{
        font-size:12px;
    }
    .section-heading h2{
        font-size:24px;
    }
}
/* ===========================
   Privacy Policy - Part 2
   Enterprise Content Style
   =========================== */

.policy-card{
    max-width:900px;
    margin:0 auto;
    padding:35px 40px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:14px;
}

.policy-card p{
    color:#475569;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.policy-card p:last-child{
    margin-bottom:0;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    align-items:stretch;
}

.info-card{
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:14px;
    padding:30px;
    display:flex;
    flex-direction:column;
    height:100%;
    transition:.3s ease;
}

.info-card:hover{
    border-color:#bfdbfe;
    box-shadow:0 12px 30px rgba(15,31,61,0.07);
    transform:translateY(-4px);
}

.info-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    border-radius:12px;
    font-size:23px;
    margin-bottom:20px;
}

.info-card h3{
    color:#0f1f3d;
    font-size:20px;
    line-height:1.4;
    font-weight:700;
    margin-bottom:14px;
}

.info-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
    flex-grow:1;
}

.info-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.info-card ul li{
    position:relative;
    padding-left:20px;
    margin-bottom:10px;
    color:#475569;
    font-size:14px;
}

.info-card ul li:before{
    content:"";
    position:absolute;
    left:0;
    top:8px;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#2563eb;
}

.usage-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.usage-card{
    background:#ffffff;
    border-left:3px solid #2563eb;
    padding:28px 30px;
    border-radius:10px;
    transition:.3s ease;
}

.usage-card:hover{
    background:#f8fafc;
    transform:translateX(4px);
}

.usage-card h3{
    color:#0f1f3d;
    font-size:19px;
    font-weight:700;
    margin-bottom:12px;
}

.usage-card p{
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

.contact-policy-card{
    max-width:850px;
    margin:0 auto;
    text-align:center;
    padding:45px 35px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:18px;
}

.contact-policy-card span{
    display:block;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:15px;
}

.contact-policy-card h2{
    color:#0f1f3d;
    font-size:34px;
    line-height:1.3;
    margin-bottom:18px;
}

.contact-policy-card p{
    color:#64748b;
    font-size:16px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 28px;
}

@media(max-width:1100px){
    .info-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .usage-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .policy-card{
        padding:25px;
    }
    .info-grid,
    .usage-grid{
        grid-template-columns:1fr;
    }
    .info-card{
        padding:25px;
    }
    .usage-card{
        padding:25px;
    }
    .contact-policy-card{
        padding:35px 20px;
    }
    .contact-policy-card h2{
        font-size:28px;
    }
}

@media(max-width:480px){
    .policy-card{
        padding:20px;
    }
    .info-card h3{
        font-size:18px;
    }
    .contact-policy-card h2{
        font-size:24px;
    }
}
/* ===========================
   Privacy Policy - Part 3
   Final CTA & Polish
   =========================== */

.privacy-cta{
    padding:85px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.privacy-cta:before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    background:#dbeafe;
    opacity:.45;
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.privacy-cta:after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#e0f2fe;
    opacity:.5;
    border-radius:50%;
    bottom:-120px;
    left:-90px;
}

.privacy-cta .container{
    position:relative;
    z-index:2;
}

.cta-content{
    max-width:900px;
    margin:0 auto;
    padding:55px 45px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(15,31,61,0.06);
}

.cta-content span{
    display:block;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.3px;
    margin-bottom:16px;
}

.cta-content h2{
    color:#0f1f3d;
    font-size:40px;
    line-height:1.3;
    font-weight:700;
    margin-bottom:18px;
}

.cta-content p{
    max-width:720px;
    margin:0 auto 32px;
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

.cta-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 34px;
    background:#0f1f3d;
    color:#ffffff;
    border-radius:8px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.cta-btn:hover{
    background:#2563eb;
    transform:translateY(-3px);
}

.policy-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 32px;
    background:#0f1f3d;
    color:#ffffff;
    border-radius:8px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.policy-btn:hover{
    background:#2563eb;
    transform:translateY(-2px);
}

.privacy-page a{
    transition:.3s ease;
}

.info-card,
.usage-card,
.policy-card,
.contact-policy-card,
.cta-content{
    animation:privacyFade .45s ease both;
}

@keyframes privacyFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:992px){
    .privacy-cta{
        padding:70px 0;
    }
    .cta-content{
        padding:45px 35px;
    }
    .cta-content h2{
        font-size:34px;
    }
}

@media(max-width:768px){
    .privacy-cta{
        padding:55px 0;
    }
    .cta-content{
        padding:35px 22px;
        border-radius:16px;
    }
    .cta-content h2{
        font-size:29px;
    }
    .cta-content p{
        font-size:15px;
    }
    .cta-btn,
    .policy-btn{
        width:100%;
        max-width:280px;
    }
}

@media(max-width:480px){
    .privacy-cta{
        padding:45px 0;
    }
    .cta-content h2{
        font-size:25px;
    }
    .cta-content span{
        font-size:12px;
    }
    .cta-content p{
        font-size:14px;
    }
}

/* ================= FOOTER ================= */

.footer{
    background:#0b1631;
    color:#fff;
    padding:80px 5% 25px;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.5fr 1fr 1.2fr 1.1fr;
    gap:60px;
}

.footer-logo{
    width:230px;
    margin-bottom:25px;
}

.footer-about p{
    color:#fff;
    font-size:15px;
    line-height:1.9;
    margin:5px 0 0;
}

.footer-col h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:32px;
    position:relative;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:60px;
    height:2px;
    background:#2f7df6;
    border-radius:20px;
}

.footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-col ul li{
    margin-bottom:16px;
}

.footer-col ul li:last-child{
    margin-bottom:0;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    display:inline-block;
    transition:all .3s ease;
}

.footer-col ul li a:hover{
    transform:translateY(-3px);
}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:16px;
    transition:all .3s ease;
}

.contact-item:hover{
    transform:translateY(-3px);
}

.contact-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:50%;
    background:#132346;
    color:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:all .3s ease;
}

.contact-icon svg{
    width:25px;
    height:25px;
}

.contact-item:hover .contact-icon{
    background:#2f7df6;
    color:#fff;
}

.contact-item span{
    color:#fff;
    font-size:15px;
    line-height:1.6;
}

.footer-social{
    display:flex;
    gap:14px;
    margin-top:30px;
}

.footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#132346;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all .3s ease;
}

.footer-social a svg{
    width:25px;
    height:25px;
}

.footer-social a:hover{
    background:#2f7df6;
    transform:translateY(-5px) scale(1.05);
}

.footer-bottom{
    position:relative;
    margin-top:70px;
    padding-top:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    border:none;
}

.footer-bottom::before{
    content:"";
    position:absolute;
    top:0;
    left:-5%;
    right:-5%;
    height:1px;
    background:rgba(255,255,255,.08);
}

.footer-bottom p{
    color:#fff;
    font-size:14px;
    margin:0;
}

.footer-bottom strong{
    color:#fff;
}

.footer-links{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    display:inline-block;
    transition:all .3s ease;
}

.footer-links a:hover{
    transform:translateY(-3px);
}

@media(max-width:1100px){

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:45px;
}

.footer-bottom::before{
    left:0;
    right:0;
}

}

@media(max-width:768px){

.footer{
    padding:60px 25px 25px;
}

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-logo{
    width:200px;
}

.footer-col h3{
    margin-bottom:24px;
}

.footer-bottom{
    margin-top:50px;
    flex-direction:column;
    text-align:center;
}

.footer-bottom::before{
    left:0;
    right:0;
}

.footer-links{
    justify-content:center;
    gap:18px;
}

.contact-item{
    align-items:center;
}

}

/* ================= MOBILE SCROLL TOP BUTTON ================= */

#scrollTopBtn{
position:fixed;

bottom:20px;
right:20px;

width:52px;
height:52px;

border:none;
border-radius:50%;

background:linear-gradient(
90deg,
#0f1f3d,
#1e3a8a
);

cursor:pointer;

display:flex;
align-items:center;
justify-content:center;

opacity:0;
visibility:hidden;

transition:all .3s ease;

z-index:999;

box-shadow:0 8px 20px rgba(0,0,0,0.18);
}

/* SVG ICON */

#scrollTopBtn svg{
width:26px;
height:26px;
}

/* SHOW BUTTON */

#scrollTopBtn.show{
opacity:1;
visibility:visible;
}

/* PRESS EFFECT */

#scrollTopBtn:hover{
transform:translateY(-3px);
}

/* ONLY MOBILE */

@media (min-width:769px){

#scrollTopBtn{
display:none;
}

}