html, body {
  overflow-x: hidden;
}

:root {
  --ai-primary: #6366f1;     /* Soft Indigo */
  --ai-secondary: #22d3ee;   /* Sky Cyan */
  --ai-accent: #a78bfa;      /* Light Violet */
  --ai-bg-light: #f8fafc;
  --ai-text-dark: #0f172a;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.logo-img {
  height: 52px;
  width: auto;
}

.footer-logo {
  height: 60px;
  width: auto;
  opacity: 0.95;
}

.navbar {
	padding: 12px 0;
  background: white !important;
}

.navbar .nav-link {
  color: #334155;
  font-weight: 500;
}


body {
  font-family: 'Inter', sans-serif;
  color: var(--ai-text-dark);
  background-color: white;
}

.bg-light {
  background-color: var(--ai-bg-light) !important;
}



.hero-section {
  padding: 110px 0 70px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #eef2ff,
    #ecfeff,
    #f5f3ff
  );
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
  top: -100px;
  right: -150px;
  z-index: 0;
}

.hero-section > .container {
  position: relative;
  z-index: 1;
}


.hero-text h1 {
  font-size: 46px;
  font-weight: 700;
  color: #0f172a;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #6366f1, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 18px;
  margin: 20px 0 30px;
  color: #334155;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 90%;      /* ⬅ reduce width slightly */
  max-height: 300px;   /* ⬅ reduce height slightly */
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.hero-section .btn-primary {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  border: none;
  color: white;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 600;
}

.hero-section .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


.btn-primary {
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  transition: .3s;
}



.section-padding h2 {
  margin-top: 0;
  margin-bottom: 12px;
}


.section-padding {
  padding: 70px 0;
}




.stats {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

.stats h2 {
  color: #6366f1;
  font-weight: 700;
  transition: transform .3s ease;
}

.stats .col-md-3:hover h2 {
  transform: scale(1.1);
}

.footer {
  background: #f1f5f9;
  color: #334155;
}


.why-us { background: #f8f9fa; }





.process-step span {
  font-size: 40px;
  font-weight: bold;
  color: #6366f1;
  position: relative;
  padding: 20px;
}

.process-step::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background: var(--ai-primary);
  top: 30px;
  right: -20px;
}

.process-step:last-child::after {
  display: none;
}

.hero-points {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.hero-points li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #334155;
  display: flex;
  align-items: center;
}

.hero-points i {
  color: var(--ai-primary);
  margin-right: 8px;
  font-size: 16px;
}


.section-divider {
  width: 80px;
  height: 4px;
  margin: 12px auto 28px;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-secondary));
  border-radius: 10px;
}


.testimonial-card {
  background: white;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(109,40,217,.12);
  transition: transform .3s, box-shadow .3s;
}


.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(6,182,212,.25);
}




.why-card{
  background:#ffffff;
  padding:30px 20px;
  border-radius:12px;
  text-align:center;
  transition:all 0.35s ease;
  border:1px solid #eef2f7;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
  height:100%;
}

.why-card i{
  font-size:26px;
  color:#6366f1;
  margin-bottom:15px;
  transition:all 0.35s ease;
}

.why-card h5{
  font-weight:600;
  margin-bottom:10px;
}

.why-card p{
  font-size:15px;
  color:#475569;
}

/* Hover effect */

.why-card:hover{
  transform:translateY(-6px);
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  box-shadow:0 15px 35px rgba(99,102,241,0.25);
  border-color:transparent;
}

.why-card:hover i{
  color:#4f46e5;
  transform:scale(1.15);
}

.industry-icon {
  font-size: 32px;
  color: var(--ai-primary);
  margin-bottom: 8px;
}

.cta {
  background: linear-gradient(
    135deg,
    #eef2ff 0%,
    #ecfeff 50%,
    #f5f3ff 100%
  );
  padding: 100px 0;
}

.cta h2 {
  color: #0f172a;
  font-weight: 700;
}

.cta p {
  color: #334155;
}


.cta .btn-light {
  background: linear-gradient(135deg, #6366f1, #22d3ee);
  color: white;
  border: none;
  border-radius: 12px;
}



img {
  transition: transform .4s ease, box-shadow .4s ease;
}

img:hover {
  transform: scale(1.04);
  box-shadow: 0 20px 40px rgba(109,40,217,.25);
}


@media (max-width: 768px) {
  .hero-image img {
    max-width: 65%;
    max-height: 300px;
    margin-top: 30px;
  }

  .hero-text h1 {
    font-size: 34px;
  }
}


.portfolio-card {
  height: 260px;                 /* SAME HEIGHT */
  background: white;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(99,102,241,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-card img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform .4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}


@media (max-width: 768px) {
  .portfolio-card {
    height: 220px;
  }
}



html {
  scroll-behavior: smooth;
}

.avatar-initial {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ai-primary), var(--ai-accent));
  color: white;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}



.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(99,102,241,0.25);
}

.capability-card {
  background: white;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(99,102,241,0.15);
  transition: transform 0.3s ease;
}

.capability-card i {
  font-size: 36px;
  color: var(--ai-primary);
  margin-bottom: 15px;
}

.capability-card:hover {
  transform: translateY(-10px);
}

.contact-modern {
  background: linear-gradient(135deg, #eef2ff, #ecfeff);
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(99,102,241,0.2);
}

.contact-points {
  list-style: none;
  padding-left: 0;
}

.contact-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-points i {
  color: var(--ai-primary);
  margin-right: 8px;
}

.contact-link{
  text-decoration:none;
  color:#cbd5f5;
  display:inline-block;
  transition:0.3s;
}

.contact-link:hover{
  color:#22d3ee;
}


.map-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(99,102,241,0.2);
}

.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
}


#about .col-md-6:last-child {
  padding-left: 50px;
}

@media (max-width: 768px) {
  #about .col-md-6:last-child {
    padding-left: 0;
    padding-top: 40px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 55px 0;
  }

  .section-padding h2 {
    margin-bottom: 10px;
  }

  .section-divider {
    margin-bottom: 24px;
  }
}





.footer-main{
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 50%,
    #312e81 100%
  );
  color:#cbd5f5;
  padding:45px 0 20px;   /* reduced from 70px */
}

.footer-tagline{
  color:#a78bfa;
  font-weight:700;
}

.footer-subtitle{
  color:#22d3ee;
  font-weight:600;
  margin-bottom:2px;
}

.footer-motto{
  color:#cbd5f5;
  font-size:14px;
}

.footer-shift{
  padding-left:40px;
}

.footer-main h5{
  color:white;
  margin-bottom:18px;
  font-weight:600;
}

.footer-main .fa-map-marker-alt,
.footer-main .fa-envelope,
.footer-main .fa-phone{
  width:20px;
}

.footer-divider{
  height:2px;
  width:100%;
  margin:35px 0 20px;
  background:linear-gradient(
    90deg,
    transparent,
    #6366f1,
    #22d3ee,
    transparent
  );
  border-radius:2px;
}

.footer-main p{
  font-size:14px;
  line-height:1.6;
  margin-bottom:10px;
}

.footer-main i{
  color:#22d3ee;
  margin-right:8px;
}

.social-icons {
  margin-top: 8px;
}

.linkedin-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#cbd5f5;        /* same color as other footer text */
  text-decoration:none;
  font-size:14px;       /* same as footer-main p */
  font-weight:400;
  line-height:1.6;
  margin-left:0;
}

.linkedin-link i{
  font-size:20px;       /* same visual size as other icons */
  color:#22d3ee;        /* same icon color */
  width:20px;           /* aligns with address/email/phone icons */
  text-align:center;
}

.linkedin-link:hover{
  color:#22d3ee;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #cbd5f5;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #22d3ee;
  transform: translateY(-3px);
}

.footer-logo {
  height: 36px;
  margin-bottom: 10px;
}

.footer-main hr {
  border-color: rgba(255,255,255,0.1);
}


.footer-links{
  list-style:none;
  padding:0;
}

.footer-links-center{
  padding-left:60px;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  color:#cbd5f5;
  text-decoration:none;
  transition:.3s;
}

.footer-links a:hover{
  color:#22d3ee;
  padding-left:4px;
}


.hero-tagline{
  font-size:20px;
  font-weight:600;
  margin-top:10px;
  color:#6366f1;
  letter-spacing:1px;
}


.testimonials{
  background:#f8fafc;
}

.testimonial-card{
  background:white;
  padding:30px 25px;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(109,40,217,.12);
  transition:transform .3s, box-shadow .3s;
  text-align:center;
}

.testimonial-card p{
  font-size:16px;
  color:#334155;
  margin-bottom:15px;
}

.testimonial-card h6{
  font-weight:600;
  color:#0f172a;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(6,182,212,.25);
}

.service-item{
  padding:20px 10px;
  border-radius:8px;
  transition:all .3s ease;
}

.service-item i{
  color:#6366f1;
  font-size:20px;
  margin-bottom:10px;
}

.service-item h5{
  font-weight:600;
  margin-bottom:10px;
  color:#0f172a;
}

.service-item p{
  color:#334155;
  font-size:15px;
  line-height:1.6;
}

/* Hover effect like your screenshot */

.service-item:hover{
  background:linear-gradient(135deg,#eef2ff,#ecfeff);
  padding:25px;
  transform:translateY(-4px);
}

.service-item:hover i{
  transform:scale(1.2);
  transition:0.3s;
}