
/* HERO */
.hero{
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:url("../img/9.jpg");
  background-size: cover;
  background-position: center;
  
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 30, 60, 0.95) 0%,
    rgba(6, 30, 60, 0.85) 40%,
    rgba(6, 30, 60, 0.45) 65%,
    rgba(6, 30, 60, 0.15) 100%
  );
}

.hero-content{
  max-width:650px;
  color:#fff;
   z-index: 2;
   padding-left: 2em;
}

.hero-tag{
  display:inline-block;
  background:#38bdf8;
  color:#0f172a;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:15px;
}

.hero h1{
  font-size:50px;
  margin-bottom:15px;
}

.hero p{
  font-size:18px;
  color:#d1d5db;
  margin-bottom:30px;
}

.hero-btns{
  display:flex;
  gap:15px;
}

/* BUTTONS */
.btn{
  padding:14px 34px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.primary{
  background:#38bdf8;
  color:#0f172a;
}

.primary:hover{
  background:#0ea5e9;
}

.outline{
  border:2px solid #38bdf8;
  color:#38bdf8;
}

.outline:hover{
  background:#38bdf8;
  color:#0f172a;
}

.dark{
  background:#0f172a;
  color:#fff;
}

/* FEATURES */
.features{
  padding:90px 8%;
  text-align:center;
}

.features h2{
  font-size:38px;
}

.section-sub{
  color:#64748b;
  margin:10px 0 50px;
}

.feature-box{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.feature-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.feature-card span{
  font-size:36px;
}

.feature-card:hover{
  transform:translateY(-12px);
}

/* ABOUT */
.about{
  padding:90px 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.about img{
  width:100%;
  border-radius:20px;
}

.about-text h2{
  font-size:38px;
  margin-bottom:15px;
}

.about-text p{
  color:#475569;
  line-height:1.7;
  margin-bottom:25px;
}

/* CTA */
.cta{
  background:linear-gradient(120deg,#38bdf8,#0ea5e9);
  padding:80px 8%;
  text-align:center;
  color:#0f172a;
}

.cta h2{
  font-size:38px;
  margin-bottom:10px;
}


@media(max-width:900px){
  .about{
    grid-template-columns:1fr;
  }
  .hero h1{
    font-size:38px;
  }
}
.search {
  background: white;
  padding: 50px;
  text-align: center;
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.search-box input,
.search-box select {
  padding: 12px;
  width: 200px;
}

.search-box button {
  padding: 12px 25px;
  background: #ff9800;
  border: none;
  color: white;
  cursor: pointer;
}
  .container {
    width: 100%;
    margin: 50px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
  }
  .image-side {
    flex: 1 1 50%;
    min-width: 320px;
  }
  .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .content-side {
    flex: 1 1 50%;
    padding: 48px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .content-side .tag {
    color: #007bff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
  }
  .content-side h1 {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .content-side p.subtitle {
    font-size: 1rem;
    color: #6b7280; /* Gray-500 */
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.5;
  }
  .stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }
  .stat-card {
    flex: 1 1 120px;
    min-width: 120px;
  }
  .stat-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .stat-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.4;
  }
  /* Bottom bar */
  .bottom-bar {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
  }
  .bottom-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .bottom-left img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  .bottom-left p {
    font-style: italic;
    font-weight: 600;
    color: #374151;
    margin: 0;
  }
  .bottom-right a {
    font-weight: 600;
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .bottom-right a:hover {
    border-bottom-color: #007bff;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .container {
      flex-direction: column;
    }
    .content-side {
      padding: 30px 30px 40px 30px;
    }
    .stats {
      justify-content: space-between;
      gap: 20px;
    }
  }
  /* Existing styles unchanged, only additions below */

/* Animation Keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate heading and subtitle */
.content-side h1,
.content-side p.subtitle {
  opacity: 0;
  animation-name: fadeSlideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.content-side h1 {
  animation-delay: 0.3s;
}

.content-side p.subtitle {
  animation-delay: 0.5s;
}

/* Animate each stat-card with stagger */
.stat-card {
  opacity: 0;
  animation-name: fadeSlideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* Delay for each stat card */
.stat-card:nth-child(1) {
  animation-delay: 0.7s;
}
.stat-card:nth-child(2) {
  animation-delay: 0.9s;
}
.stat-card:nth-child(3) {
  animation-delay: 1.1s;
}
.stat-card:nth-child(4) {
  animation-delay: 1.3s;
}

/* Animate bottom bar */
.bottom-bar {
  opacity: 0;
  animation-name: fadeSlideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  animation-delay: 1.5s;
}
  .valuation-banner {
    position: relative;
     background-image:url("../img/14.jpg");
  background-size: cover;
  background-position: center;
    /* border-radius: 15px; */
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 30px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
  }

  /* Dark overlay */
  .valuation-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    z-index: 0;
  }

  .valuation-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }

  .valuation-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .valuation-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #ddd;
  }

  .btn-primary {
    background-color: #0099ff;
    color: white;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgb(0 153 255 / 0.4);
    transition: background-color 0.3s ease;
  }
  .btn-primary:hover {
    background-color: #007acc;
  }

  /* Arrow icon */
  .btn-primary svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: transform 0.3s ease;
  }
  .btn-primary:hover svg {
    transform: translateX(5px);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .valuation-banner {
      height: 300px;
      padding: 20px;
    }
    .valuation-content h2 {
      font-size: 1.8rem;
    }
  }
    .core-values-section {
    width: 100%;
    background: rgb(0, 0, 0);
    margin-top: 60px;
    padding: 50px 40px 60px;
    /* border-radius: 15px; */
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.1);
    text-align: center;
  }
  .core-values-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #38bdf8;
  }
  .values-grid {
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .value-card {
    flex: 1 1 250px;
    max-width: 280px;
  }
.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #38bdf8; /* Blue */
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* Optional: pointer on hover */
}

.icon-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 15px rgba(56, 189, 248, 0.6);
}

  .icon-circle svg {
    fill: rgb(255, 255, 255);
    width: 28px;
    height: 28px;
  }
  .value-card h3 {
    font-size: 1.2rem;
    color: #ffffffc2;
    font-weight: 750;
    margin-bottom: 12px;
  }
  .value-card p {
    font-size: 0.95rem;
    color: #ffffff; /* Gray-500 */
    line-height: 1.5;
  }

  /* Responsive */
  @media (max-width: 700px) {
    .values-grid {
      flex-direction: column;
      gap: 30px;
    }
    .value-card {
      max-width: 100%;
    }
  }
/* Animation keyframes */
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to each card */
.value-card {
  opacity: 0; /* Start hidden */
  animation-name: fadeSlideUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* Stagger delays for smooth sequential effect */
.value-card:nth-child(1) {
  animation-delay: 0.3s;
}
.value-card:nth-child(2) {
  animation-delay: 0.5s;
}
.value-card:nth-child(3) {
  animation-delay: 0.7s;
}
.how-it-works{
  padding:90px 8%;
  background:#fff;
}

.hiw-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hiw-image img{
  width:100%;
  border-radius:10px;
}

.hiw-tag{
  color:#ef4444;
  text-transform:uppercase;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
}

.hiw-content h2{
  font-size:36px;
  margin:15px 0;
}

.hiw-desc{
  max-width:520px;
  color:#555;
  line-height:1.7;
  margin-bottom:40px;
}

.hiw-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.hiw-steps .icon {
  width: 60px;
  height: 60px;
  background: #e9f3ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.hiw-steps .icon i {
  font-size: 24px;
  color: #1e88e5;
}

.step{
  text-align:center;
}

.step .icon{
  width:70px;
  height:70px;
  margin:auto;
  background:#f1f5f9;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
}

.step .num{
  display:inline-block;
  margin:10px 0;
  background:#38bdf8;
  color:#fff;
  font-size:13px;
  padding:4px 10px;
  border-radius:20px;
}

.step h4{
  font-size:15px;
  line-height:1.4;
}

/* RESPONSIVE */
@media(max-width:900px){
  .hiw-container{
    grid-template-columns:1fr;
  }
  .hiw-steps{
    grid-template-columns:repeat(2,1fr);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.services-section {
  padding: 70px 10%;
  background: #5c9ebd;
  text-align: center;
}

.section-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  animation: fadeDown 1s ease forwards;
}

.section-subtitle {
  margin-top: 10px;
  color: #000000;
  font-size: 15px;
  animation: fadeDown 1.2s ease forwards;
}

.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  gap: 30px;
}

.services-column {
  flex: 1;
}

/* SERVICE ITEM */
.service-item {
  margin-bottom: 40px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.services-column .service-item:nth-child(1) {
  animation-delay: 0.3s;
}
.services-column .service-item:nth-child(2) {
  animation-delay: 0.5s;
}
.services-column .service-item:nth-child(3) {
  animation-delay: 0.7s;
}

.service-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 1px solid #ffffff;
  transition: 0.4s;
}

.service-item:hover img {
  transform: scale(1.1) rotate(5deg);
}

.service-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
}

.service-item p {
  font-size: 13px;
  color: #000000;
}

/* CENTER IMAGE */
.services-center {
  flex: 1;
}

.services-center img {
  max-width: 100%;
  border-radius: 12px;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  animation-delay: 0.4s;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-wrapper {
    flex-direction: column;
  }

  .services-center {
    order: -1;
    margin-bottom: 40px;
  }
}
.testimonial-section {
  padding: 90px 10%;
  background: linear-gradient(180deg, #f4f7ff, #ffffff);
  text-align: center;
}

/* Titles */
.section-title {
  font-size: 34px;
  font-weight: 700;
  color: #2b2650;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: #666;
  max-width: 620px;
  margin-inline: auto;
}

/* Wrapper */
.testimonial-wrapper {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  align-items: stretch;
}

/* Card */
.testimonial-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  padding: 45px 30px 35px;
  border-radius: 26px;
  position: relative;
  box-shadow: 0 25px 55px rgba(0,0,0,0.08);
  transition: 0.45s ease;
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(35px);
  animation: riseUp 0.8s forwards;
}

/* Center highlight */
.testimonial-card.featured {
  transform: scale(1.05);
  
}

/* Hover */
.testimonial-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 40px 80px rgba(32, 181, 255, 0.452);
}

/* Animation */
@keyframes riseUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Quote icon */
.quote-icon {
  position: absolute;
  top: -22px;
  left: 25px;
  font-size: 80px;
  color: #6a4cff;
  opacity: 0.12;
}

/* Review */
.review {
  font-size: 15.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 22px;
}

/* Rating */
.rating {
  font-size: 16px;
  letter-spacing: 3px;
  color: #ffc107;
  margin-bottom: 25px;
}

/* Customer */
.customer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.customer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;

  object-fit: cover;
}

.customer h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.customer span {
  font-size: 13px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 6%;
  }

  .testimonial-card.featured {
    transform: scale(1);
  }
}
/* Card entrance animation */
.testimonial-card {
  animation: riseUp 0.8s ease forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.25s; }
.testimonial-card:nth-child(3) { animation-delay: 0.4s; }

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating animation */
@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Shine hover animation */
@keyframes shineMove {
  to {
    transform: translateX(100%);
  }
}

/* Quote icon pop animation */
@keyframes quotePop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
