/* Push content below fixed navbar */
body {
    padding-top: 80px; /* Adjust this value based on your navbar height */
}

/* ================= SLIDER ================= */

.gen1-slider-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 1;
    clear: both;
}

.gen1-slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

.gen1-slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
    transform: translateZ(0);
    will-change: transform;
}

.gen1-slide picture {
    display: block;
    width: 100%;
}

.gen1-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ================= CONTENT ================= */

.gen1-slide-content {
    background: #2564ebc3;
    color: white;
    padding: 15px;
    text-align: center;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.gen1-slide-content h1 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff !important;
}

.gen1-slide-content h2 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffffff !important;
}

/* ================= CONTROLS ================= */

.gen1-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.gen1-slider-btn {
    pointer-events: all;
    background: rgba(37, 99, 235, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.gen1-slider-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: scale(1.15);
}

.gen1-slider-btn:active {
    transform: scale(0.95);
}

/* ================= MOBILE FIX (2:1 RATIO) ================= */

@media (max-width: 768px) {

    .gen1-slider-container {
        margin-top: 15px;
    }

    /* 🔥 2:1 ratio force (100% x 50%) */
    .gen1-slide picture {
        width: 100%;
        aspect-ratio: 2 / 1;
        overflow: hidden;
    }

    .gen1-slide img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }

    .gen1-slide-content {
        padding: 12px 15px;
    }

    .gen1-slide-content h1 {
        font-size: 0.88rem;
        color: #ffffff !important;
    }

    .gen1-slide-content h2 {
        font-size: 0.88rem;
        color: #ffffff !important;
    }

    .gen1-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gen1-slider-controls {
        padding: 0 10px;
    }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

    .gen1-slider-container {
        margin-top: 10px;
    }

    /* same 2:1 ratio maintained */
    .gen1-slide picture {
        aspect-ratio: 2 / 1;
    }

    .gen1-slide-content {
        padding: 10px 15px;
    }

    .gen1-slide-content h1 {
        font-size: 0.88rem;
        color: #ffffff !important;
    }

    .gen1-slide-content h2 {
        font-size: 0.8rem;
        color: #ffffff !important;
    }

    .gen1-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}







/* Our Service Logo */

/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ================= SECTION ================= */
.services-section{
  max-width:1200px;
  margin:0 auto;
  padding:40px 15px;
  font-family:Arial, sans-serif;
}

/* ================= HEADER ================= */
.section-header{
  text-align:center;
  margin-bottom:30px;
}
.section-header h2{
  font-size:1.8rem;
  color:#333;
  margin-bottom:20px;
}

/* ================= SEARCH ================= */
.search-box{
  max-width:500px;
  margin:0 auto 35px;
  position:relative;
}
.search-box input{
  width:100%;
  padding:14px 18px;
  font-size:1rem;
  border:2px solid #ddd;
  border-radius:8px;
  outline:none;
}
.search-box input:focus{
  border-color:#007bff;
}
.typing-placeholder{
  position:absolute;
  left:18px;
  top:14px;
  color:#999;
  font-size:1rem;
  pointer-events:none;
}
.typing-placeholder::after{
  content:'|';
  animation:blink 0.7s infinite;
}
@keyframes blink{
  0%,50%{opacity:1;}
  51%,100%{opacity:0;}
}

/* ================= GRID ================= */
/* Mobile – 3 cards */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

/* ================= CARD ================= */
.service-item{
  text-align:center;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:transform .2s ease;
}
.service-item:hover{
  transform:translateY(-4px);
}

/* ================= ICON ================= */
.service-icon{
  width:80px;
  height:80px;
  margin:0 auto 8px;
}
.service-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* ================= NAME ================= */
.service-name{
  font-size:.9rem;
  font-weight:500;
  color:#333;
  line-height:1.2;
}

/* ================= DESKTOP ================= */
@media (min-width:768px){
  .services-grid{
    grid-template-columns:repeat(5,1fr);
    gap:40px;
  }
  .service-icon{
    width:140px;
    height:140px;
  }
  .service-name{
    font-size:1rem;
  }
  .section-header h2{
    font-size:2rem;
  }
}









/* ===== SLIDER ONLY SCOPE (NAVBAR SAFE) ===== */
.gen1-slider *{
    box-sizing:border-box;
}

.gen1-slider{
    position:relative;
    padding:20px 20px 40px;
    background:#f5f5f566;
}

/* ===== CONTAINER ===== */
.gen1-slider .slider-container{
    max-width:1400px;
    margin:auto;
    position:relative;
    overflow:hidden;
    border-radius:15px;
}

/* ===== WRAPPER ===== */
.gen1-slider .slider-wrapper{
    display:flex;
    gap:20px;
    transition:transform 0.5s ease-in-out;
    will-change:transform;
}

/* ===== CARD ===== */
.gen1-slider .slide-card{
    min-width:calc(33.333% - 14px);
    aspect-ratio:2/1;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    transition:0.3s;
}

.gen1-slider .slide-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.gen1-slider .slide-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ===== ARROWS ===== */
.gen1-slider .nav-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:45px;
    height:45px;
    border-radius:50%;
    background:#ffffffd9;
    border:none;
    cursor:pointer;
    z-index:10;
    font-size:18px;
    box-shadow:0 3px 10px rgba(0,0,0,0.2);
}

.gen1-slider .prev{ left:15px; }
.gen1-slider .next{ right:15px; }

/* ===== DOTS ===== */
.gen1-slider .dots-container{
    display:flex;
    justify-content:center;
    gap:8px;
    margin-top:22px;
}

.gen1-slider .dot{
    width:10px;
    height:10px;
    background:#ccc;
    border-radius:50%;
    cursor:pointer;
    transition:0.3s;
}

.gen1-slider .dot.active{
    width:26px;
    border-radius:6px;
    background:#333;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
    .gen1-slider .slide-card{
        min-width:calc(50% - 10px);
    }
}

@media(max-width:768px){
    .gen1-slider .slide-card{
        min-width:100%;
    }
    .gen1-slider .slider-wrapper{
        gap:15px;
    }
}
















/* Citer Slider */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    background: #fff;
}

.cities-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(22px, 3vw, 34px);
}

.location-icon {
    width: 1.4em;
    height: 1.4em;
    fill: #e63946;
}

/* ===== Carousel ===== */

.cities-carousel {
    overflow: hidden;
    padding: 20px 0;
    cursor: grab;
}

.cities-carousel:active {
    cursor: grabbing;
}

.cities-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* ===== Card ===== */

.city-card {
    flex: 0 0 calc((100% - 60px) / 3);
    text-align: center;
    text-decoration: none;
    color: inherit;
}

/* ===== Icon (YELLOW FIXED) ===== */

.city-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    padding: 15px;
    border-radius: 55px;
    position: relative;
    background: #fff;      /* 🔥 fix */
    overflow: hidden;      /* 🔥 fix */
}

.city-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 55px;
    padding: 3px;

    /* ❌ pure yellow removed */
    background: linear-gradient(
        135deg,
        #d7d1d1,
        #ffffffa5,
        #ff0a0a,
        #00ff2a
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    to { transform: rotate(360deg); }
}

.city-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.city-name {
    font-size: 0.75rem;
    color: #333;
    font-weight: 500;
}

/* ===== Responsive ===== */

/* Laptop */
@media (min-width: 1024px) {
    .city-card {
        flex: 0 0 calc((100% - 270px) / 10);
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .city-card {
        flex: 0 0 calc((100% - 150px) / 6);
    }
}

/* Mobile – 4 cards */
@media (max-width: 480px) {
    .city-card {
        flex: 0 0 calc((100% - 90px) / 4);
    }
}













/* ===== GEN1 ABOUT SECTION START ===== */
.gen1-about{
    padding:14px 0 22px;
    font-family:Segoe UI, sans-serif;
    background:#fff;
}
.gen1-about *{box-sizing:border-box}

.gen1-wrap{
    max-width:1200px;
    margin:auto;
    padding:0 18px;
}
.gen1-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
    align-items:center;
}

/* LEFT */
.gen1-left-title{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
    color:#222;
}
.gen1-box{
    background:#f7f8fa;
    border-radius:8px;
    padding:12px;
    margin-bottom:10px;
}

/* LINE CHART */
.gen1-line{
    stroke:#00c864;
    stroke-width:2.8;
    fill:none;
    stroke-dasharray:260;
    stroke-dashoffset:260;
    animation:gen1LineDraw 2s ease forwards;
}
@keyframes gen1LineDraw{
    to{stroke-dashoffset:0}
}

/* METRICS */
.gen1-metrics{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-top:6px;
}
.gen1-metric{
    background:#fff;
    border-radius:8px;
    padding:10px 6px;
    text-align:center;
}
.gen1-metric h4{
    font-size:13px;
    color:#555;
}
.gen1-counter{
    font-size:18px;
    font-weight:700;
    color:#0066cc;
}

/* WEEKLY */
.gen1-weekly{
    display:flex;
    gap:6px;
    align-items:flex-end;
}
.gen1-day{
    flex:1;
    text-align:center;
    font-size:11px;
    color:#666;
}
.gen1-day-bar{
    display:flex;
    flex-direction:column;
    margin-bottom:4px;
    transform:scaleY(0);
    transform-origin:bottom;
    animation:gen1BarUp 1.3s ease forwards;
}
@keyframes gen1BarUp{
    to{transform:scaleY(1)}
}
.gen1-s1{background:#0066cc;flex:4}
.gen1-s2{background:#00ccff;flex:3}
.gen1-s3{background:#ffcc00;flex:3}

/* RIGHT */
.gen1-title{
    font-size:32px;
    line-height:1.2;
    color:#222;
}
.gen1-title span{color:#0066cc}

.gen1-text{
    font-size:14.5px;
    color:#666;
    margin:10px 0;
    line-height:1.6;
}
.gen1-points li{
    list-style:none;
    font-size:14px;
    color:#555;
    margin-bottom:6px;
    padding-left:18px;
    position:relative;
}
.gen1-points li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#0066cc;
    font-weight:700;
}
.gen1-btn{
    display:inline-block;
    margin-top:10px;
    padding:9px 26px;
    background:linear-gradient(135deg,#0066cc,#0088dd);
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
.gen1-grid{grid-template-columns:1fr}
.gen1-title{font-size:26px}
.gen1-metrics{grid-template-columns:repeat(2,1fr)}
}
