/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f172a;
    color: #f1f5f9;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #020617;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

/* LOGO */
.logo img {
    height: 39px;
}

/* MENU */
.menu {
    display: flex;
    gap: 25px;
}



.menu a {
    text-decoration: none;
    color: #cbd5f5;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #22c55e;
}

/* BUTTONS */
.nav-right {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    border: 1px solid #334155;
    transition: 0.3s;
}

.btn:hover {
    background: #1e293b;
}

.btn.primary {
    background: #22c55e;
    border: none;
    color: #022c22;
    font-weight: 600;
}

.btn.primary:hover {
    background: #16a34a;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #fff;

    /* BACKGROUND IMAGE */
    background: url('images/hero.jpg') center/cover no-repeat;
}

/* DARK OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(2 6 23 / 27%), rgb(2 6 23 / 55%))
    
}

/* CONTENT ABOVE OVERLAY */
.hero .container {
    position: relative;
    z-index: 2;
}

/* TEXT */
.hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.hero p {
    margin-top: 10px;
    color: #cbd5f5;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}


.card {
    background: #020617;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card .content {
    padding: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.card p {
    font-size: 14px;
    color: #94a3b8;
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    color: #64748b;
    font-size: 14px;
}

/* ===== DARK MODE SUPPORT ===== */
.dark body {
    background: #020617;
}

/* ===== MOBILE ===== */
@media(max-width: 768px) {
    .menu {
        display: none;
    }

    .hero h1 {
        font-size: 26px;
    }
}



.hero h1 {
    font-size: 40px;
    font-weight: 700;
    color: #f8fafc;
}

.hero p {
    margin-top: 10px;
    font-size: 16px;
    color: #dbb91a;
}

/* SEARCH BOX */
.hero-search {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-search input {
    width: 300px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #020617;
    color: #fff;
}

.hero-search button {
    padding: 12px 20px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #022c22;
}

.hero-search button:hover {
    background: #16a34a;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* MOBILE */
@media(max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-search {
        flex-direction: column;
        align-items: center;
    }

    .hero-search input {
        width: 90%;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

/* ===== CITY IMAGE GRID ===== */
.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* CARD */
.city-card {
    position: relative;
    height: 260px;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

/* IMAGE */
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

/* DARK OVERLAY */
.city-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

/* CITY NAME */
.city-card span {
    position: absolute;
    bottom: 12px;
    left: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    z-index: 2;
}

/* HOVER EFFECT */
.city-card:hover img {
    transform: scale(1.1);
}

.city-card:hover .overlay {
    background: linear-gradient(to top, rgba(34,197,94,0.8), rgba(0,0,0,0.2));
}

/* ===== TRUST SECTION ===== */
.trust {
    padding: 70px 0;
    text-align: center;
}

.trust h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.trust .subtitle {
    color: #94a3b8;
    margin-bottom: 40px;
    font-size: 15px;
}

/* GRID */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.trust-card {
    background: #020617;
    border-radius: 14px;
    padding: 25px 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    position: relative;
}

/* ICON */
.trust-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

/* TITLE */
.trust-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* TEXT */
.trust-card p {
    font-size: 14px;
    color: #94a3b8;
}

/* HOVER */
.trust-card:hover {
    transform: translateY(-6px);
    border-color: #22c55e;
    box-shadow: 0 10px 30px rgba(34,197,94,0.1);
}

/* MOBILE */
@media(max-width: 768px) {
    .trust h2 {
        font-size: 24px;
    }
}

.demand-graph {
    padding: 100px 0;
}

.graph-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.graph-left {
    text-align: center;
}

canvas {
    max-width: 100%;
    margin-top: 30px;
}

.graph-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: #020617;
    padding: 18px;
    border-radius: 12px;
}

.info-card.highlight {
    background: rgba(34,197,94,0.1);
}

@media(max-width:768px){
    .graph-wrapper {
        grid-template-columns: 1fr;
    }
}

.seo-content {
    padding: 60px 0;
}

.seo-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.seo-content h3 {
    font-size: 20px;
    margin-top: 20px;
}

.seo-content p {
    color: #94a3b8;
    margin-top: 10px;
    line-height: 1.7;
}



/* MODEL */
.model {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  height: 260px;
  z-index: 3;
}

/* CENTER TEXT */
.center-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  z-index: 3;
}

/* BUBBLE BASE */
.bubble {
  position: absolute;
  padding: 10px 16px;
  border-radius: 25px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  z-index: 2;
}

/* LEFT SIDE */
.b1 {
  top: 40px;
  left: 90px;
  transform: rotate(-8deg);
}

.b2 {
  top: 190px;
  left: 40px;
  transform: rotate(6deg);
}

.b3 {
  bottom: 110px;
  left: 110px;
  transform: rotate(-5deg);
}

/* RIGHT SIDE */
.b4 {
  top: 50px;
  right: 90px;
  transform: rotate(8deg);
}

.b5 {
  top: 210px;
  right: 40px;
  transform: rotate(-6deg);
}

.b6 {
  bottom: 120px;
  right: 110px;
  transform: rotate(5deg);
}

/* FLOATING ICONS */
.icon {
  position: absolute;
  font-size: 20px;
  opacity: 0.8;
  z-index: 1;
}

.i1 {
  top: 130px;
  right: 200px;
}

.i2 {
  bottom: 150px;
  left: 200px;
}

.i3 {
  top: 90px;
  left: 300px;
}

@media (max-width: 768px) {

  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .model {
    position: relative;
    top: 0;
    height: 200px;
    margin: auto;
    display: block;
  }

  .center-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    margin-top: 15px;
  }

  .bubble {
    position: relative;
    display: inline-block;
    margin: 6px;
    transform: none;
  }

  .icon {
    display: none;
  }
}