/* ================= RESET & BASE STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

section {
  padding: 80px 60px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #4a6cf7;
}

.btn {
  display: inline-block;
  background: #4a6cf7;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn:hover {
  background: #3a5ce5;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 108, 247, 0.2);
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 140px;
  padding: 0;
  background: transparent;
  transition: 0.3s ease;
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  width: 95%;
  max-width: 1600px; 
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-container {
    padding-left: 8px;
    padding-right: 16px;
  }
}

/* Logo */
.nav-logo img {
  width: 135px;          
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
  cursor: pointer;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .nav-logo img {
    width: 120px;     
    height: auto;
    max-width: none;
    max-height: none;
  }
}

.nav-menu-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* ================= MOBILE RESPONSIVE NAVBAR ================= */

@media (max-width: 768px) {

  .navbar{
    height:118px;
  }

  .nav-container{
    width:95%;
    display:flex;
    justify-content:space-between;
    align-items:center;
  }

  .nav-logo img{
    width:110px;
  }

  /* Show dots */
  .menu-dots{
    display:flex;
    width:40px;
    height:40px;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
  }

  .menu-dots span{
    width:6px;
    height:6px;
    background:#000;
    border-radius:50%;
  }

  /* Mobile Dropdown */
  .nav-menu{
    position:absolute;
    top:65px;
    right:0;
    width:220px;
    background:#111827;
    border-radius:10px;
    list-style:none;
    padding:10px 0;
    margin:0;

    display:none;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
  }

  .nav-menu.active{
    display:block;
  }

  .nav-menu li{
    width:100%;
  }

  .nav-menu li a{
    display:block;
    padding:14px 20px;
    color:#fff;
    text-decoration:none;
    font-size:16px;
  }

  .nav-menu li a:hover{
    background:#2563eb;
  }

}


/* ================= HERO ================= */

.hero{
    position: relative;
    overflow: hidden;
    padding: 150px 0 80px;
    font-family: "Poppins", sans-serif;

    background:
        radial-gradient(circle at top right,
            #ffe600 0%,
            #ffe600 18%,
            transparent 40%),

        radial-gradient(circle at bottom left,
            #d7ecff 0%,
            transparent 35%),

        radial-gradient(circle at top left,
            #fff8d6 0%,
            transparent 30%),

        linear-gradient(
            135deg,
            #fcfcf8 0%,
            #fffef6 35%,
            #ffffff 65%,
            #fffdf4 100%
        );
}
/* ================= BACKGROUND ================= */

.hero-shade-1{
    position:absolute;
    width:110%;
    height:120%;
    top:-30%;
    right:-30%;
    background:radial-gradient(circle at 30% 50%,#ffee1a 45%,#ffeb00 100%);
    border-radius:50%;
    z-index:0;
}

.hero-shade-2{
    position:absolute;
    width:500px;
    height:350px;
    left:120px;
    bottom:100px;
    background:rgba(0,0,0,.08);
    filter:blur(60px);
    border-radius:50%;
    z-index:0;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero::before{
    content:"";
    position:absolute;
    top:-60px;
    right:-200px;
    width:50%;
    height:130%;
    background:radial-gradient(circle at 30% 50%,#fff534 0%,#ffee1a 40%,#fff006 100%);
    border-radius:50% 0 0 50%;
    z-index:0;
}

.hero::after{
    content:"";
    position:absolute;
    top:-8%;
    right:0;
    width:40vw;
    max-width:700px;
    height:120%;
    background:#fff600;
    border-radius:60% 0 0 60%;
    z-index:0;
}

/* ================= CONTAINER ================= */

.hero-container{
    width:90%;
    max-width:1300px;
    margin:0 auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    z-index:5;
}

/* ================= SLIDER ================= */

.hero-slider{
    position:relative;
}

.hero-slide{
    display:none;
    width:100%;
    padding:70px;
    box-sizing:border-box;
}

.hero-slide.active{
    display:block;
}

/* ================= CONTENT ================= */

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* ================= TEXT ================= */

.hero-text{
    flex:1;
}

.hero-pretitle{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    background:#fff3b0;
    color:#444;
    font-size:15px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-title{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    color:#222;
    margin-bottom:20px;
}

.hero-accent{
    color:#ff3b30;
}

.hero-desc{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:35px;
    max-width:550px;
}

/* ================= BUTTON ================= */

.hero .btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:35px;
    background:#ff3b30;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.hero .btn:hover{
    background:#df2b20;
    transform:translateY(-2px);
}

/* ================= IMAGE ================= */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{
    width:100%;
    max-width:470px;
    height:auto;
    object-fit:contain;
}

/* ================= DOTS ================= */

.slider-dots{
    display:flex;
    justify-content:center;
    gap:12px;
    margin:30px 0;
}

.slider-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#cfcfcf;
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    width:30px;
    border-radius:30px;
    background:#ff3b30;
}

/* ================= TABLET ================= */

@media(max-width:992px){

.hero{
    padding-top:140px;
}

.hero-slide{
    padding:50px 40px;
}

.hero-content{
    flex-direction:column;
    text-align:center;
}

.hero-title{
    font-size:44px;
}

.hero-desc{
    max-width:100%;
}

.hero-image{
    margin-top:30px;
}

.hero-image img{
    max-width:360px;
}

}

/* ================= MOBILE ================= */

@media(max-width:576px){

.hero{
    padding-top:130px;
    padding-bottom:60px;
}

.hero-container{
    width:94%;
}

.hero-slide{
    padding:35px 20px;
}

.hero-title{
    font-size:32px;
}

.hero-pretitle{
    font-size:13px;
}

.hero-desc{
    font-size:15px;
    line-height:1.6;
}

.hero-image img{
    max-width:260px;
}

.hero .btn{
    padding:12px 26px;
    font-size:15px;
}

}

/* ================= DROPDOWN MENU ================= */
.nav-menu {
  position: absolute;
  top: 70px;
  right: 0;
  background: #ffffff;
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  display: none;
  flex-direction: column;
  z-index: 9999;
}

.nav-menu.active {
  display: flex;
}


.nav-menu li a,
.nav-link {
  font-size: 21px; /* Applied text size */
  font-weight: 600;
  padding: 12px 20px;
  display: block;
  color: #000;
  text-decoration: none;
  transition: color 0.25s ease;
  background: transparent;
}

/* Active link */
.nav-link.active {
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (min-width: 992px) {
  /* Hide dots on desktop */
  .menu-dots {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 36px;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .nav-menu li a {
    padding: 8px 0;
  }

  .nav-menu li a:hover {
    color: #000;
    background: transparent !important;
  }
}
/* ================= MOBILE & TABLET ================= */
@media (max-width: 991px) {
  .nav-menu li a:hover {
    color: #4a6cf7;
    background: transparent;
  }
}




/* ================= SLIDER CONTROLS ================= */

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: grid; /* ✅ change */
  grid-template-columns: auto 1fr auto;
  align-items: center;
  z-index: 50;
  pointer-events: none;
}

.slider-btn {
  pointer-events: auto;
  width: auto;
  height: auto;
  border: none;
  background: transparent;
  border-radius: 0;
  color: #fff;
  font-size: 48px;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.slider-btn:hover {
  color: #ff3b30;
  transform: scale(1.1);
}
.slider-dots {
  pointer-events: auto;
  display: flex;
  gap: 10px;
  cursor: pointer !important;
  justify-self: center;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer !important;
}

.slider-dots .dot.active {
  background: #fff;
  transform: scale(1.4);
}
.slider-dots .dot:hover {
  background: #ff3b30; 
  transform: scale(1.4); 
}



/* ================= GLOBAL SAFETY ================= */

html,
body {
  overflow-x: hidden;
}

/* ============ HERO BOTTOM GRIDS ============ */
.service-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  text-align: left;
}

.service-box,
.service-card {
    align-items: flex-start;
}

.service-box h3,
.service-box p,
.service-card h3,
.service-card p {
    width: 100%;
    text-align: left;
}
.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: justify;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.12);
}

.service-box .icon {
  width: 70px;
  height: auto;
  margin: 0 auto 15px auto;
  display: block;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

.service-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ================= OUR SERVICES ================= */
.services {
  padding: 20px 0;
  background: #f9fbff;
}

.services-header{
    width:90%;
    max-width:900px;
    margin:0 auto 50px;
    text-align:center;
}

.services-header small{
    color:#0066ff;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.services-header h2{
    margin:15px 0 20px;
    font-size:46px;
    line-height:1.3;
    color:#222;
}

.services-header p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  overflow-x: hidden;
}
.service-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px; 
}

/* Horizontal scrolling */
.cards-wrapper {
  display: flex;
  gap: 20px;
  /* padding-right: 20px; */
  transition: transform 0.6s ease;
  align-items: stretch;
  width: max-content;
}

/* Smaller cards */
.service-card {
  min-width: 300px;
  max-width: 300px;
  min-height: 320px;
  height: auto;
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Image size reduced */
.service-card img {
  width: 180px;
  height: 180px;
  margin-bottom: 6px;
  object-fit: contain;
  transition: 0.3s ease;
  display: block;
  margin: 0 auto 10px auto;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 18px;
  text-align: center;
}

/* LEFT TEXT CARD */
.left-card {
  min-width: 420px;
  max-width: 420px;
  height: auto;
  justify-content: flex-start;
  padding: 24px;
  box-sizing: border-box;
}
@media (max-width:768px){

    .slider-container{
        width:100%;
        overflow:hidden;
        padding:0 15px 70px;
        box-sizing:border-box;
    }

    .cards-wrapper{
        display:flex;
        gap: 10px; !important;
        width:auto !important;
    }

    .service-card,
    .left-card{
        flex:0 0 100%;
        min-width:100%;
        max-width:100%;
        width:100%;
        box-sizing:border-box;
    }

    .service-dots{
        margin-top:20px;
        display:flex;
        justify-content:center;
    }

}

.left-card h2 {
  font-size: 24px;
  line-height: 1.3;
}

.left-card small {
  color: #0066ff;
  font-weight: 700;
  letter-spacing: 1px;
}

/* SLIDE BUTTON */
.slide-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #0066ff;
  color: white;
  padding: 14px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s ease;
  z-index: 10;
}

.slide-btn:hover {
  background: #004dd1;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {

  /* Normal service cards */
  .service-card:not(.left-card) {
    min-width: 260px;
    max-width: 260px;
    height: 330px;
  }

  /* Intro card */
  .left-card {
    min-width: 260px;
    max-width: 260px;

    height: auto;
    min-height: 430px;   /* adjust if needed */

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    padding: 20px;
    box-sizing: border-box;
  }

}
.service-text {
    display: block;
    max-width: 140px;      
    line-height: 1.8;      
    white-space: normal;
    word-break: break-word;
}
/* ================= PREMIUM CLIENTS ================= */
.clients {
  padding: 80px 20px;
  background: #fff;
}

.client-block {
  max-width: 1300px;
  margin: 0 auto 90px;
}

.client-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 35px;
  padding-left: 14px;
  position: relative;
}

.client-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 85%;
  background: #ff6a00;
  border-radius: 2px;
}

/* ================= AUTOMOTIVE PARTNERS ================= */
/* ================= AUTOMOTIVE PARTNERS ================= */
.automotive-slider {
  overflow: hidden;
  width: 100%;
}

.automotive-track {
  display: flex;
  gap: 18px;
  transition: transform 0.7s ease;
  will-change: transform;
}

/* Smaller logo cards */
.automotive .client {
  min-width: 220px;
  background: #ffffff;
  padding: 20px 14px 18px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #e5e7eb;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  cursor: pointer;
}
.automotive .client:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
  border-color: #0066ff;
}

/* Logo size reduced */
.automotive .client img {
  width: 160px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: grayscale(100%);
  transition: all 0.35s ease;
}
.automotive .client:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.automotive .client p {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  transition: color 0.3s ease;
}
.automotive .client:hover p {
  color: #0066ff;
}
.automotive .client.active {
  border-color: #0066ff;
  box-shadow: 0 18px 32px rgba(0, 102, 255, 0.2);
}

/* Dots */
.automotive .client-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 10px;
}

.automotive .client-dots span {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.automotive .client-dots span.active {
  background: #0066ff;
  transform: scale(1.25);
}

/* Mobile */
@media (max-width: 768px) {
  .automotive .client {
    min-width: 180px;
  }

  .automotive .client img {
    width: 108px; 
    height: auto;
  }
}

/* ================= TECHNOLOGY PARTNERS ================= */
.technology-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  justify-items: center;
  align-items: stretch;
}
.technology-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:16px;
    margin-top:30px;
}

.technology .client{
    width:100%;
    max-width:none;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:18px 12px;
    text-align:center;
    box-sizing:border-box;
}

.technology .client img{
    width:100%;
    max-width:140px;
    height:90px;
    object-fit:contain;
    margin:0 auto 12px;
    display:block;
}

.technology .client p{
    font-size:16px;
    font-weight:600;
}

@media (max-width:1200px){
    .technology-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media (max-width:768px){
    .technology-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:576px){
    .technology-grid{
        grid-template-columns:1fr;
    }
}

.technology .client {
  width: 100%;
  max-width: 240px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 12px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.technology .client img {
  width: 200px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: none;
  transition: all 0.35s ease;
}
.technology .client:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  border-color: #0066ff;
}
.technology .client:hover img {
  /* filter: grayscale(0%); */
  transform: scale(1.08);
}
.client p {
  font-weight: 600;
  font-size: 15px;
  color: #444;
  transition: color 0.3s ease;
}

.technology .client:hover p {
  color: #0066ff;
}
@media (max-width: 1024px) {
  .technology-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .technology-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .technology .client img {
    width: 170px;
    height: 120px;
  }
}
@media (max-width: 992px){
    .technology-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px){
    .technology-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .client{
        padding: 20px;
    }

    .client img{
        width: 70px;
        height: 70px;
    }

    .client p{
        font-size: 18px;
    }
}

/* ================= COMMON STYLES ================= */
.client img {
  object-fit: contain;
  margin-bottom: 14px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.client:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.client p {
  font-weight: 600;
  font-size: 16px;
  color: #444;
}

/* -----------Portfolio Section ---------- */
#portfolio {
  width: 100%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

/* ===============================
   PORTFOLIO HERO
================================ */
.portfolio-hero {
  background: linear-gradient(180deg, #1e1e1e, #111);
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.portfolio-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.portfolio-hero-subtitle {
  font-size: 18px;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Stats */
.portfolio-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.portfolio-stats div {
  text-align: center;
}

.portfolio-stats strong {
  font-size: 32px;
  font-weight: 700;
  color: #ffb703;
  display: block;
}

.portfolio-stats span {
  font-size: 14px;
  opacity: 0.8;
  display: block;
}

/* ===============================
   FILTER BUTTONS
================================ */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 60px 0 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  color: #222;
  padding: 8px 12px;
  transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  color: #ffb703;
}

/* ===============================
   PORTFOLIO GRID
================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Laptop */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .portfolio-grid {
    gap: 15px;
    padding: 0 10px;
  }
}
.portfolio-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
}

.portfolio-card img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.portfolio-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.portfolio-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================= OUR PROCESS ================= */
.process-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Heading */
.process-heading {
  text-align: center;
  margin-bottom: 60px;
}

.process-heading small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0066ff;
}

.process-heading h2 {
  font-size: 38px;
  font-weight: 700;
  margin-top: 8px;
}

/* Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)); 
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Process Card */
.process-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.process-item:hover {
  transform: translateY(-6px);
}

/* Icon Circle */
.process-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  background: #f0f5ff;
  border: 5px solid #1f57f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon img {
  width: 70%;
}

/* Step number */
.step-no {
  font-size: 17px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

/* Colors */
.red {
  color: #ff3b3b;
}
.green {
  color: #17c964;
}
.yellow {
  color: #f9a825;
}
.purple {
  color: #8e24aa;
}
.pink {
  color: #e91e63;
}

.process-item h4 {
  font-size: 17px;
  margin-bottom: 6px;
}

.process-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
  .process-icon {
    width: 130px;
    height: 130px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .process-grid {
    gap: 20px;
  }

  .process-icon {
    width: 110px;
    height: 110px;
  }

  .process-item h4 {
    font-size: 15px;
  }

  .process-item p {
    font-size: 13px;
  }
}
@media (max-width: 992px){
    .process-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px){
    .process-heading h2{
        font-size: 40px;
        text-align: center;
    }

    .process-grid{
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .process-item{
        max-width: 320px;
        margin: 0 auto;
    }

    .process-icon{
        width: 110px;
        height: 110px;
    }

    .process-icon img{
        width: 60px;
        height: 60px;
    }

    .step-no{
        font-size: 28px;
    }

    .process-item h4{
        font-size: 22px;
    }

    .process-item p{
        font-size: 16px;
    }
}


/* ------------------------ */
/* CASE STUDIES MAIN LAYOUT */
/* ------------------------ */
.case-study-new {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
  padding: 50px 0;
}

/* LEFT SIDE */
.case-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 0px;
  min-height: 700px;
}

/* MAP + CARTOON WRAPPER */
.india-map-wrapper {
  display: flex;
  /* height: 100%; */
  flex: 1;
  flex-direction: column;
  gap: 0;
}

/* LEAFLET MAP */
#indiaMap {
  width: 100%;
  height: 550;
  flex: 5;
  /* height: 400px; */
  /* min-height: 400px;
  min-height: 300px; */
  border-radius: 10px 10px 0 0;
  /* object-fit: cover; */
}

.case-label,
.cs-title,
.cs-desc{
    padding-left: 20px;
}

/* CARTOON */
.cartoon-wrapper {
  width: 100%;
  height: 150px;
  /* flex: 1; */
  /* height: 250%; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 10px 10px;
}

.cartoon-img {
  width: 80%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

/* TOOLTIP */
.tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  font-size: 14px;
  transition: opacity 0.2s;
}

/* RIGHT SIDE */
.case-text-wrapper {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* text-align: justify; */
  padding-right: 20px; 
}
.case-text-wrapper small {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0066ff;
  margin-bottom: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
  text-align: justify;
}

.stat-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e4e4e4;
}

.stat-box h3 {
  font-size: 32px;
  margin-bottom: 5px;
}

.stat-box span {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .case-left,
  .case-text-wrapper {
    flex: 1 1 100%;
    padding-left: 15px;
  }
  #indiaMap {
    height: 350px;
  }
  .cartoon-img {
    max-width: 0px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #indiaMap {
    height: 300px;
  }
  .cartoon-img {
    max-width: 120px;
  }
}
@media (min-width: 1200px) {
  .india-map-wrapper {
    max-height: 600px;
  }
}

/* ================= CONTACT ================= */
#contact {
  background: #f3f4f6;
}

.section-padding {
  padding: 90px 0;
}
.service-card left-card{
  text-align: justify;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #6b7280;
}


/* ================= GRID LAYOUT ================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:start;
}

.contact-info,
.contact-form{
    width:100%;
}

.contact-form form{
    width:100%;
}

.form-group{
    position:relative;
    width:100%;
    margin-bottom:20px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:15px 20px 15px 50px;
    box-sizing:border-box;
}

.form-group i{
    position:absolute;
    left:18px;
    top:18px;
}

.form-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

@media (max-width:768px){

    .contact-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }

    .contact-item{
        flex-direction:row;
        align-items:flex-start;
    }

    .form-footer{
        flex-direction:column;
        align-items:stretch;
    }

    .form-check{
        width:100%;
    }

    .btn-submit{
        width:100%;
    }

    .social-icons{
        justify-content:center;
        flex-wrap:wrap;
    }
}

@media (max-width:480px){

    .container{
        padding:0 15px;
    }

    .contact-form{
        padding:20px;
    }

    .contact-form h3{
        font-size:24px;
        text-align:center;
    }

    .form-group input,
    .form-group textarea{
        font-size:15px;
    }

    .contact-icon{
        width:50px;
        height:50px;
    }

    .contact-details h3{
        font-size:18px;
    }

    .contact-details p{
        font-size:15px;
    }
}

/* ================= LEFT SIDE ================= */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

/* Contact item */
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.contact-item:last-child {
  margin-bottom: 0;
}
.form-group{
    position:relative !important;
}

.form-group input,
.form-group textarea{
    padding-left:55px !important;
}

.form-group i{
    position:absolute !important;
    left:18px !important;
    top:18px !important;
    transform:none !important;
    z-index:100 !important;
    pointer-events:none;
}

.form-group textarea + i{
    top:18px !important;
}

/* Icon */
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
  flex-shrink: 0;
}

/* Text */
.contact-details h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.contact-details p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* ================= FOLLOW US ================= */
.contact-social {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid #e5e7eb;
}

.contact-social h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #1e40af;
  transform: translateY(-4px);
}

/* ================= RIGHT SIDE (FORM) ================= */
.contact-form {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* Form groups */
.form-group {
  position: relative;
  margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 45px 14px 15px;
  border-radius: 10px;
  border: 1.5px solid #d1d5db;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.form-group textarea {
  resize: none;
}

/* Icons */
.form-group i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

/* Focus */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

/* Validation */
.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}

.form-group.success input,
.form-group.success textarea {
  border-color: #16a34a;
}

.error-message {
  font-size: 13px;
  margin-top: 6px;
  color: #dc2626;
}

/* Footer */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.form-check {
  display: flex;
  gap: 8px;
  font-size: 14px;
}

/* Submit button */
.btn-submit {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

/* ================= ALERT MESSAGE ================= */
.form-alert {
  margin-top: 25px;
  padding: 15px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  display: none;
}

.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border-left: 4px solid #16a34a;
}

.form-alert.error {
  background: #fef2f2;
  color: #7f1d1d;
  border-left: 4px solid #dc2626;
}

/* ==========Footer Section ===============*/


.footer{
    background:#050505;
    color:#fff;
    padding:100px 0 35px;
    position:relative;
    overflow:hidden;
    font-family:"Poppins",sans-serif;
    margin-top: 20px;
}

.footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/*==============================
        CTA SECTION
===============================*/

.footer-cta{
  
    background:#090d18;
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    padding:80px 40px;
    text-align:center;
    margin-bottom:70px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.footer-cta span{
    display:inline-block;
    color:#2f6cff;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    margin-bottom:25px;
}

.footer-cta h2{
    font-size:72px;
    line-height:1.08;
    color:#fff;
    font-weight:800;
    margin:0 0 30px;
}

.footer-cta h2 em{
    font-style:italic;
    font-family:Georgia,serif;
    color:#7da8ff;
}

.footer-cta p{
    font-size:22px;
    color:#9ca3af;
    margin-bottom:45px;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    padding:22px 45px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    border-radius:60px;
    transition:.35s;
    box-shadow:0 15px 35px rgba(37,99,235,.35);
}

.footer-btn:hover{
    background:#1d4ed8;
    transform:translateY(-5px);
}

.footer-btn i{
    transition:.3s;
}

.footer-btn:hover i{
    transform:translateX(8px);
}

/*==============================
          DIVIDER
===============================*/

.footer-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:70px 0;
}

/*==============================
        RESPONSIVE
===============================*/

@media(max-width:992px){

.footer-cta{
    padding:60px 30px;
}

.footer-cta h2{
    font-size:52px;
}

.footer-cta p{
    font-size:18px;
}

}

@media(max-width:768px){

.footer{
    padding:70px 0 30px;
}

.footer-cta{
    padding:45px 20px;
    border-radius:20px;
}

.footer-cta span{
    font-size:13px;
}

.footer-cta h2{
    font-size:38px;
}

.footer-cta p{
    font-size:16px;
}

.footer-btn{
    width:100%;
    font-size:18px;
    padding:18px 28px;
}

}
/*==================================
        FOOTER GRID
==================================*/
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
}

.footer-col h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 28px;
    position: relative;
    font-weight: 600;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.footer-col p {
    color: var(--text-light-gray);
    line-height: 1.9;
    font-size: 15px;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    color: var(--text-light-gray);
    font-size: 15px;
}

.footer-col ul li a {
    color: var(--text-light-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.footer-col ul li a::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--light-blue);
    margin-right: 10px;
    font-size: 13px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-white);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    color: var(--primary-blue);
    transform: translateX(3px);
}


.footer-col:last-child ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-col:last-child ul li:nth-child(odd) {
    color: var(--text-white);
    font-weight: 600;
    margin-top: 12px;
}

.footer-col:last-child ul li:nth-child(even) {
    color: var(--text-gray);
}

/* Contact Info Sub-section */
.footer-contact {
    margin-top: 25px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--text-light-gray);
}

.footer-contact i {
    color: var(--light-blue);
    font-size: 16px;
    margin-top: 4px;
}

/* Social Icons */
.footer-social {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #11141d;
    border: 1px solid var(--border-dark);
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
/* Tablet */

@media(max-width:992px){

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:45px;
}

}

/* Mobile */

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-col{
    text-align:left;
}

.footer-social{
    justify-content:flex-start;
}

}

/*==============================
        FOOTER BOTTOM
==============================*/
.footer-bottom {
    /* margin-top: 10px; */
    padding-top: 10px;
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 15px;
    margin: 0; 
}

.footer-bottom strong {
    color: var(--text-white);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 14px;
    white-space: nowrap; 
}

.footer-legal a:hover {
    color: var(--light-blue);
}

.footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    transition: var(--transition);
}

.footer-legal a:hover::after {
    width: 100%;
}
.footer-bottom {
    /* padding-top: 10px; */
    border-top: 1px solid var(--border-dark);
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    
    /* ADD/MODIFY THESE PROPERTYS BELOW */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    grid-column: 1 / -1;
}
/*==============================
        NEWSLETTER
==============================*/

.footer-newsletter{
    margin-top:30px;
}

.footer-newsletter form{
    display:flex;
    align-items:center;
    background:#111827;
    border-radius:50px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
}

.footer-newsletter input{
    flex:1;
    padding:18px 22px;
    border:none;
    background:transparent;
    color:#fff;
    outline:none;
    font-size:15px;
}

.footer-newsletter input::placeholder{
    color:#9ca3af;
}

.footer-newsletter button{
    width:58px;
    height:58px;
    border:none;
    background:#ffffff;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.footer-newsletter button:hover{
    background:#1d4ed8;
}

/*==============================
        BACK TO TOP
==============================*/

.back-top{
    position:fixed;
    right:25px;
    bottom:25px;

    width:52px;
    height:52px;

    border-radius:50%;
    background:#2563eb;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    text-decoration:none;

    box-shadow:0 12px 25px rgba(37,99,235,.35);
    transition:.35s;
    z-index:999;
}

.back-top:hover{
    transform:translateY(-6px);
    background:#1d4ed8;
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:992px){

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-bottom-links{
    justify-content:center;
}

.footer-newsletter form{
    max-width:500px;
    margin:auto;
}

}

@media(max-width:768px){

.footer{
    padding:70px 0 25px;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
}

.footer-bottom-links{
    flex-direction:column;
    gap:15px;
}

.footer-newsletter form{
    flex-direction:column;
    border-radius:20px;
}

.footer-newsletter input{
    width:100%;
    text-align:center;
    padding:18px;
}

.footer-newsletter button{
    width:100%;
    height:55px;
}

.back-top{
    width:45px;
    height:45px;
    right:15px;
    bottom:15px;
}

}
