/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  height: 30vh;
  background: url('1.png') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.9rem;
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  
  padding: 40px 15px;
  background: #111;
}

.features .card {
  background: #222;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease;
}

.features .card img {
  max-width: 100%;
  margin-bottom: 20px;
}

.features .card button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.features .card button:hover {
  background: #fff;
  color: #000;
}

.features .card:hover {
  transform: translateY(-5px);
}

/* Partner Brands */
.partners {
  text-align: center;
  padding: 20px 20px;
  background: #000;
  color: #fff;
}

.partners h2 {
  margin-bottom: 30px;
}

.partners .brands {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partners .brands img {
  width: 130px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.partners .brands img:hover {
  opacity: 1;
}


/* Hero content box: gradient + subtle glass + drop shadow */
.hero-content-box {
  max-width: 980px;                /* limit width */
  margin: 0 auto;                  /* center horizontally */
  padding: 27px 50px;              /* internal spacing */
  border-radius: 18px;             /* rounded corners */
  color: #ffffff;                  /* text color inside box */
  text-align: center;

  /* Gradient background (modify colors as needed) */
  background: linear-gradient(135deg,
    rgba(30, 41, 59, 0.92) 0%,
    rgba(43, 56, 86, 0.86) 40%,
    rgba(255, 127, 80, 0.18) 100%);

  /* Optionally make it a frosted glass look on lighter backgrounds */
  backdrop-filter: blur(6px) saturate(1.08); /* needs browser support */
  -webkit-backdrop-filter: blur(6px) saturate(1.08);

  /* Soft inner border (subtle) */
  border: 1px solid rgba(255, 255, 255, 0.06);

  /* Drop shadow for depth (stronger on larger screens) */
  box-shadow:
    0 6px 18px rgba(0,0,0,0.45),    /* main soft shadow */
    0 1px 0 rgba(255,255,255,0.03) inset; /* tiny inner highlight */

  /* For accessibility & contrast fallback */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings & text inside the box */
.hero-content-box h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5.2vw, 56px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35); /* subtle text depth */
}

.hero-content-box p {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 18px);
  opacity: 0.95;
}

/* CTA buttons row inside the box */
.hero-content-box .ctas {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-content-box .btn {
  padding: 10px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

/* Primary and secondary styles */
.hero-content-box .btn.primary {
  background: linear-gradient(90deg,#ffb400,#ffdf7d);
  color:#111;
  box-shadow: 0 8px 20px rgba(255,180,0,0.14);
  font-size: 18px;
}

.hero-content-box .btn.ghost {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Responsive spacing tweak */
@media (max-width: 600px) {
  .hero-content-box {
    padding: 22px;
    border-radius: 12px;
  }
}

.btn.primary {
  background: #007bff;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.primary:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* 📱 Mobile styles */
@media (max-width: 768px) {
  .hero {
    height: auto; 
    background-position: top center; 
    padding: 20px;
    text-align: center;
  }
.features {
    flex-direction: column;   
    align-items: center;      
    padding: 20px 10px;     
    text-align: center; 
    gap: 20px;       
  }
  .hero-content h1 {
    font-size: 20px;
  }
  .hero-content p {
    font-size: 14px;
  }
  
.hero-content-box h1 {
  font-size: 18px;
}
.hero-content-box img{
width: 100px;
}
.partners h2 {
  font-size: 20px;
}

}