/* ==========================================
   BENI SHINE COMPANY LTD - SKY BLUE THEME
========================================== */

:root {
  --sky: #a5dbf3;
  --sky-dark: #0ea5e9;
  --sky-light: #e0f7ff;
  --white: #ffffff;
  --dark: #0f172a;
  --gray: #64748b;
  --bg: #f8fbff;
  --shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  --radius: 14px;
  --transition: all 0.35s ease;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ==========================================
   HEADER
========================================== */

header {
  position: relative;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  color: var(--white);
  text-align: center;
  padding: 100px 20px 120px;
  overflow: hidden;
}

.header__title {
  font-size: 3rem;
  font-weight: 800;
  animation: fadeDown 1s ease forwards;
}

.header__title span {
  font-weight: 400;
  letter-spacing: 2px;
}

.header__tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  opacity: 0.95;
}

.header__sub {
  margin-top: 8px;
  font-weight: 400;
  opacity: 0.9;
}

.header__actions {
  margin-top: 25px;
}

.header__shape {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--bg);
  border-radius: 50% 50% 0 0;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn--primary {
  background: var(--white);
  color: var(--sky-dark);
  box-shadow: var(--shadow);
}

.btn--primary:hover {
  transform: translateY(-4px);
}

.btn--ghost {
  border: 2px solid var(--white);
  color: var(--white);
  margin-left: 10px;
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--sky-dark);
}

/* ==========================================
   NAVIGATION
========================================== */

nav {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

.nav__links a {
  margin: 0 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  position: relative;
}

.nav__links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--sky);
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  background: var(--sky);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
}

/* ==========================================
   SECTIONS
========================================== */

section {
  padding: 80px 8%;
}

.section--alt {
  background: var(--sky-light);
}

.section--dark {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: white;
}

.section__header {
  text-align: center;
  margin-bottom: 50px;
}

.section__label {
  color: var(--sky-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.section--dark .section__label {
  color: #fff;
}

/* ==========================================
   CARDS
========================================== */

.about__card,
.service__card,
.why__item,
.client__chip,
.hours__card {
  background: #1976d2;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: white;
}

.about__card:hover,
.service__card:hover,
.why__item:hover,
.client__chip:hover {
  transform: translateY(-8px);
}

/* GRID */
.about__grid,
.services__grid,
.why__grid,
.clients__grid {
  display: grid;
  gap: 25px;
}

.about__grid,
.services__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why__grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.clients__grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* SERVICE ICON */
.service__icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--sky-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--sky-dark);
}
.logo {
  height: 150px;
}

.logo img {
  max-height: 100%;
  width: auto;
}
/* ==========================================
   CONTACT
========================================== */

.contact__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact__item {
  display: flex;
  margin-bottom: 15px;
}

.contact__item-icon {
  margin-right: 12px;
  font-size: 1.2rem;
  color: var(--sky-dark);
}

/* ==========================================
   FOOTER
========================================== */

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  animation: fadeUp 1s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {
  .header__title {
    font-size: 2.2rem;
  }

  .nav__links {
    display: none;
  }
}