/*
Theme Name: Dhilaalo Pro
Author: Dhilaalo
Version: 3.2
Description: Premium Personal Finance WordPress Theme (Upgraded UI)
*/

/* ================= ROOT ================= */

:root{
  --primary:#2563eb;
  --primary-dark:#1e40af;
  --accent:#ff7a18;
  --dark:#0f172a;
  --gray:#64748b;
  --light:#f8fafc;
  --white:#ffffff;
  --radius:18px;
  --radius-sm:12px;
  --shadow-soft:0 10px 30px rgba(0,0,0,0.06);
  --shadow-strong:0 20px 60px rgba(0,0,0,0.12);
  --transition:0.35s cubic-bezier(.4,0,.2,1);
}

/* ================= RESET ================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--light);
  color:var(--dark);
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
  transition:var(--transition);
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

section{
  padding:100px 0;
}

/* ================= SECTION TITLE ================= */

.section-title{
  text-align:center;
  font-size:38px;
  font-weight:700;
  margin-bottom:70px;
}

.section-title::after{
  content:"";
  width:60px;
  height:4px;
  background:var(--primary);
  display:block;
  margin:15px auto 0;
  border-radius:4px;
}

/* ================= HEADER ================= */

.site-header{
  position:sticky;
  top:0;
  background:#fff;
  padding:18px 0;
  z-index:999;
  box-shadow:0 4px 25px rgba(0,0,0,0.04);
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.site-branding img{
  max-height:50px;
  width:auto;
}

.nav-menu{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-menu li a{
  font-weight:500;
  color:var(--dark);
  position:relative;
}

.nav-menu li a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:0.3s;
}

.nav-menu li a:hover::after,
.nav-menu .current-menu-item > a::after{
  width:100%;
}

/* ================= HEADER BASE ================= */

.dh-header{
  width:100%;
  background:#0f172a;
  position:relative;
  z-index:1000;
}

.nav-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
}

.nav-menu{
  display:flex;
  gap:30px;
  list-style:none;
  margin:0;
  padding:0;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:500;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

/* ================= MOBILE ================= */

.menu-toggle{
  display:none;
}

@media (max-width: 992px){

  .nav-menu{
    flex-direction:column;
    gap:15px;
  }

  .main-nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#0f172a;
    padding:25px;
    transform:translateY(-20px);
    opacity:0;
    pointer-events:none;
    transition:0.3s ease;
  }

  .main-nav.active{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-actions a{
    display:none;
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
  }

  .menu-toggle span{
    width:25px;
    height:3px;
    background:#fff;
    transition:0.3s;
  }

  /* Animated X */
  .menu-toggle.open span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
  }

  .menu-toggle.open span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.open span:nth-child(3){
    transform:rotate(-45deg) translate(6px,-6px);
  }

}

/* ================= HERO ================= */

.hero-slider{
  position:relative;
  height:85vh;
  overflow:hidden;
}

.hero-slider .slide{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease;
}

.hero-slider .slide.active{
  opacity:1;
  visibility:visible;
}

.hero-slider .overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  color:#fff;
  max-width:650px;
  z-index:2;
}

.hero-content h1{
  font-size:44px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:18px;
  margin-bottom:30px;
}

.btn-primary,
.btn-secondary{
  display:inline-block;
  padding:14px 28px;
  border-radius:30px;
  font-weight:600;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-secondary{
  background:#fff;
  color:#000;
}

/* ================= SERVICES ================= */

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

.service-card{
  background:#fff;
  padding:45px;
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  text-align:center;
  transition:var(--transition);
}

.service-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-strong);
}

/* ================= POSTS GRID (FIXED) ================= */

.posts-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Tablet */
@media(max-width:1024px){
  .posts-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Mobile */
@media(max-width:768px){
  .posts-grid{
    grid-template-columns:1fr;
  }
}

/* CARD */

.post-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  height:360px; /* 🔥 isku height */
}

.post-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-strong);
}

/* IMAGE FIX */

.post-card img{
  width:100%;
  height:170px;      /* 🔥 isku sawir height */
  object-fit:cover;  /* 🔥 kala dheeraansho ma jiro */
}

/* CONTENT */

.post-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* TITLE (2 lines max) */

.post-content h3{
  font-size:17px;
  line-height:1.4;
  margin-bottom:10px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* EXCERPT (3 lines max) */

.post-content p{
  font-size:14px;
  color:var(--gray);
  line-height:1.6;
  margin-bottom:12px;

  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* READ MORE */

.read-more{
  margin-top:auto;
  font-weight:600;
  font-size:14px;
  color:var(--primary);
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
  padding: 80px 0;
  background: #f8fafc;
}

.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-header p {
  color: #64748b;
}

/* SLIDER WRAPPER */
.testimonial-slider {
  position: relative;
  overflow: hidden; /* muhiim */
}

/* TRACK */
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

/* CARD */
.testimonial-card {
  min-width: 100%; /* muhiim */
  flex-shrink: 0;
  padding: 30px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
}

/* USER */
.testimonial-card .user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* ARROWS */
.testimonial-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.testimonial-slider .prev {
  left: 10px;
}

.testimonial-slider .next {
  right: 10px;
}

.testimonial-slider button:hover {
  background: #1e40af;
}



/* ================= FOOTER ================= */

.site-footer{
  background:var(--dark);
  color:#cbd5e1;
  padding:80px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:50px;
}

.footer-bottom{
  text-align:center;
  margin-top:50px;
  font-size:14px;
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:25px;
}

/* ================= MOBILE ================= */

@media(max-width:600px){

  section{
    padding:70px 0;
  }

  .hero-content h1{
    font-size:26px;
  }

  .subscribe-form input,
  .subscribe-form button{
    width:100%;
    margin:10px 0;
  }
}

/* ================= NEWS STYLE ================= */

.news-section{
  background:#f2f2f2;
  padding:60px 0;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

/* Mobile */
@media(max-width:768px){
  .news-grid{
    grid-template-columns:1fr;
  }
}

.news-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s ease;
}

.news-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* Image */

.news-image img{
  width:100%;
  height:300px;
  object-fit:cover;
  display:block;
}

/* Content */

.news-content{
  padding:20px;
}

.news-title{
  font-size:22px;
  font-weight:700;
  line-height:1.4;
  margin-bottom:10px;
}

.news-title a{
  color:#111;
}

.news-title a:hover{
  color:var(--primary);
}

.news-meta{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

/* Read More */

.news-read{
  font-weight:600;
  font-size:14px;
  color:var(--primary);
  text-decoration:none;
}

.news-read:hover{
  text-decoration:underline;
}

/* ===================================================
   🔥 VISUAL UPGRADE LAYER (ADD THIS BELOW YOUR CSS)
=================================================== */

/* ===== Enhanced Gradient Background System ===== */

body{
  background:linear-gradient(180deg,#f8fafc 0%, #eef2ff 100%);
}

/* Soft section glow */
section{
  position:relative;
  z-index:1;
}

section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  top:-150px;
  right:-150px;
  z-index:-1;
}

/* ===== Premium Buttons ===== */

.btn-primary{
  background:linear-gradient(135deg,#ff7a18,#ffb347);
  box-shadow:0 10px 30px rgba(255,122,24,.35);
  transition:all .35s ease;
}

.btn-primary:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 15px 45px rgba(255,122,24,.45);
}

.btn-secondary{
  background:linear-gradient(135deg,#ffffff,#f1f5f9);
  border:1px solid #e2e8f0;
}

.btn-secondary:hover{
  transform:translateY(-3px);
}

/* ===== Header Glass Effect ===== */

.site-header{
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.04);
}

/* ===== Hero Enhancement ===== */

.hero-slider .overlay{
  background:linear-gradient(120deg,rgba(15,23,42,.85),rgba(37,99,235,.55));
}

.hero-content h1{
  background:linear-gradient(90deg,#ffffff,#e0e7ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* Floating animation */
@keyframes floaty{
  0%{ transform:translateY(0px);}
  50%{ transform:translateY(-8px);}
  100%{ transform:translateY(0px);}
}

.hero-content{
  animation:floaty 6s ease-in-out infinite;
}

/* ===== Cards Glow Upgrade ===== */

.service-card,
.post-card,
.news-card,
.testimonial-card{
  transition:all .4s cubic-bezier(.4,0,.2,1);
}

.service-card:hover,
.post-card:hover,
.news-card:hover,
.testimonial-card:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(37,99,235,.15),
    0 10px 30px rgba(0,0,0,.08);
}

/* ===== Posts Image Zoom Effect ===== */

.post-card img,
.news-card img{
  transition:transform .5s ease;
}

.post-card:hover img,
.news-card:hover img{
  transform:scale(1.08);
}

/* ===== Section Titles Upgrade ===== */

.section-title{
  font-size:42px;
  background:linear-gradient(90deg,#2563eb,#9333ea);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.section-title::after{
  background:linear-gradient(90deg,#ff7a18,#2563eb);
  height:5px;
  width:80px;
}

/* ===== Subscribe Premium Glow ===== */

.subscribe-section{
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  box-shadow:0 25px 80px rgba(124,58,237,.35);
  border-radius:30px;
  margin:80px 40px;
}

.subscribe-form input{
  box-shadow:0 8px 25px rgba(0,0,0,.1);
}

.subscribe-form button{
  background:linear-gradient(135deg,#ff7a18,#ffb347);
  box-shadow:0 10px 30px rgba(255,122,24,.35);
  transition:all .35s ease;
}

.subscribe-form button:hover{
  transform:scale(1.05);
}

/* ===== Testimonials Soft Glass ===== */

.testimonial-card{
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.3);
}

/* ===== Footer Upgrade ===== */

.site-footer{
  background:linear-gradient(135deg,#0f172a,#1e293b);
}

.footer-bottom{
  color:#94a3b8;
}

/* ===== Smooth Fade Animation On Scroll Ready ===== */

.fade-in{
  opacity:0;
  transform:translateY(20px);
  transition:all .6s ease;
}

.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}

.hero-slider{
position:relative;
height:85vh;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1s ease-in-out;
display:flex;
align-items:center;
}

.slide.active{
opacity:1;
z-index:2;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right,rgba(0,0,0,0.65),rgba(0,0,0,0.3));
}

.hero-content{
position:relative;
color:#fff;
max-width:650px;
z-index:3;
}

.hero-content h1{
font-size:42px;
font-weight:700;
margin-bottom:15px;
line-height:1.2;
}

.hero-content p{
font-size:17px;
opacity:.9;
margin-bottom:25px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

@media(max-width:768px){
.hero-slider{
height:70vh;
}
.hero-content h1{
font-size:28px;
}
}


/* =====================
   MINIMAL HEADER
===================== */

.dh-header{
    position:sticky;
    top:0;
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #f1f5f9;
    z-index:999;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
}

/* LOGO */
.site-title{
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    color:#0f172a;
}

/* NAV MENU */
.nav-menu{
    display:flex;
    gap:32px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li a{
    text-decoration:none;
    font-size:15px;
    color:#334155;
    font-weight:500;
    transition:0.2s;
}

.nav-menu li a:hover{
    color:#2563eb;
}

/* RIGHT ACTIONS */
.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

/* BUTTONS */
.btn-text{
    text-decoration:none;
    font-size:14px;
    color:#334155;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
    font-size:14px;
    text-decoration:none;
    transition:0.2s;
}

.btn-primary:hover{
    background:#1e40af;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#0f172a;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:991px){

    .main-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:#ffffff;
        padding:80px 30px;
        transition:0.3s ease;
        box-shadow:-10px 0 30px rgba(0,0,0,0.08);
    }

    .main-nav.active{
        right:0;
    }

    .nav-menu{
        flex-direction:column;
        gap:20px;
    }

    .menu-toggle{
        display:flex;
    }

}

/* ===============================
   DHILAALO PREMIUM HEADER SYSTEM
   Minimal • Business • Responsive
================================= */

/* RESET SMALL THINGS */
.dh-header *{
    box-sizing:border-box;
}

/* ================= TOP BAR ================= */

.top-bar{
    background:#0f172a;
    color:#cbd5e1;
    font-size:13px;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    max-width:1240px;
    margin:auto;
}

.top-left span{
    margin-right:18px;
}

.top-right a{
    color:#cbd5e1;
    margin-left:12px;
    transition:.3s ease;
}

.top-right a:hover{
    color:#22d3ee;
}

/* ================= MAIN HEADER ================= */

.dh-header{
    position:sticky;
    top:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.85);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:all .3s ease;
}

/* Container */
.nav-container{
    max-width:1240px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================= LOGO ================= */

.site-branding img{
    max-height:40px;
}

.site-title{
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    color:#0f172a;
    letter-spacing:-0.5px;
}

/* ================= NAV MENU ================= */

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:35px;
    padding:0;
    margin:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#0f172a;
    font-weight:500;
    font-size:15px;
    transition:.3s ease;
    padding:4px 0;
}

/* Hover underline */
.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#2563eb;
    transition:.3s ease;
}

.nav-menu li a:hover::after{
    width:100%;
}

/* Active menu */
.nav-menu .current-menu-item a{
    color:#2563eb;
    font-weight:600;
}

/* ================= RIGHT SIDE ================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/* ================= SEARCH ================= */

.search-wrapper{
    position:relative;
}

.search-toggle{
    background:none;
    border:none;
    font-size:16px;
    cursor:pointer;
    color:#0f172a;
}

.search-form{
    position:absolute;
    top:120%;
    right:0;
    background:#fff;
    padding:10px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:none;
}

.search-form.active{
    display:block;
}

.search-field{
    border:1px solid #e2e8f0;
    padding:8px 12px;
    border-radius:8px;
    outline:none;
    width:220px;
}

/* ================= BUTTONS ================= */

.btn-outline{
    padding:8px 18px;
    border-radius:8px;
    border:1px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    font-weight:500;
    transition:.25s ease;
}

.btn-outline:hover{
    background:#2563eb;
    color:#fff;
}

.btn-cta{
    background:#2563eb;
    color:#fff;
    padding:9px 20px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 4px 14px rgba(37,99,235,.25);
}

.btn-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,.35);
}

/* ================= MOBILE TOGGLE ================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:2px;
    background:#0f172a;
}

/* ================= SHRINK EFFECT ================= */

.dh-header.shrink{
    padding:5px 0;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        padding:20px 0;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
    }

    .main-nav.active{
        display:flex;
    }

    .nav-menu{
        flex-direction:column;
        gap:20px;
    }

    .menu-toggle{
        display:flex;
    }

    .btn-outline,
    .btn-cta{
        display:none;
    }

}

@media (max-width:600px){

    .top-bar{
        display:none;
    }

    .nav-container{
        padding:15px 20px;
    }

}

/* ================= TV / LARGE SCREEN OPTIMIZATION ================= */

@media (min-width:1600px){

    .nav-container{
        max-width:1500px;
    }

    .nav-menu{
        gap:45px;
    }

}

.main-nav{
transition: all .3s ease;
}

.search-form{
transition: all .3s ease;
}

.dh-header{
transition: all .3s ease;
}

/* ===== Desktop Default ===== */
.mobile-auth{
display:none;
}

.nav-actions .btn-text,
.nav-actions .btn-primary{
display:inline-flex;
}

/* ===== Mobile ===== */
@media (max-width: 992px){

.main-nav{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#fff;
flex-direction:column;
padding:80px 25px;
transition:0.4s ease;
box-shadow:-5px 0 30px rgba(0,0,0,0.08);
}

.main-nav.active{
right:0;
}

.nav-menu{
flex-direction:column;
gap:20px;
}

.mobile-auth{
display:flex;
flex-direction:column;
gap:12px;
margin-top:30px;
}

.mobile-auth .full{
width:100%;
text-align:center;
}

.nav-actions .btn-text,
.nav-actions .btn-primary{
display:none; /* Desktop buttons hidden */
}

}

.no-scroll{
overflow:hidden;
}

.btn-primary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:50px;
font-weight:600;
font-size:15px;
text-decoration:none;
background:linear-gradient(135deg,#2563eb,#3b82f6);
color:#fff;
transition:all .3s ease;
border:none;
}

.btn-primary:hover{
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(37,99,235,0.35);
}

.btn-secondary{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:50px;
font-weight:600;
font-size:15px;
text-decoration:none;
background:rgba(255,255,255,0.15);
color:#ffffff; /* muhiim */
border:1px solid rgba(255,255,255,0.4);
backdrop-filter:blur(6px);
transition:all .3s ease;
}

.btn-secondary:hover{
background:#ffffff;
color:#111827;
transform:translateY(-2px);
}


/* ===============================
   LATEST POSTS – PREMIUM STYLE
================================= */

.latest-modern{
padding:90px 0;
background:#0b1023;
}

.section-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:40px;
}

.section-header h2{
font-size:28px;
font-weight:700;
color:#ffffff;
margin:0;
}

.view-all{
color:#22d3ee;
text-decoration:none;
font-weight:500;
transition:.3s;
}

.view-all:hover{
color:#3b82f6;
}

/* GRID */
.latest-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
}

/* ================= FEATURED ================= */

.featured-post{
background:#111827;
border-radius:20px;
overflow:hidden;
transition:.35s ease;
display:flex;
flex-direction:column;
}

.featured-post:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.featured-image{
position:relative;
display:block;
overflow:hidden;
}

.featured-image img{
width:100%;
height:420px;
object-fit:cover;
display:block;
}

/* CATEGORY BADGE */
.post-category{
position:absolute;
bottom:20px;
left:20px;
background:rgba(0,0,0,0.6);
padding:6px 14px;
border-radius:30px;
font-size:12px;
color:#fff;
backdrop-filter:blur(6px);
}

.featured-content{
padding:30px;
}

.post-meta{
font-size:13px;
color:#94a3b8;
margin-bottom:15px;
display:flex;
gap:8px;
}

.featured-content h3{
font-size:22px;
margin:0 0 15px;
}

.featured-content h3 a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.featured-content h3 a:hover{
color:#22d3ee;
}

.featured-content p{
color:#cbd5e1;
font-size:15px;
line-height:1.6;
margin-bottom:20px;
}

.btn-read{
display:inline-block;
color:#22d3ee;
font-weight:600;
text-decoration:none;
transition:.3s;
}

.btn-read:hover{
color:#3b82f6;
}

/* ================= SMALL POSTS ================= */

.latest-grid > article:not(.featured-post){
display:flex;
gap:15px;
background:#111827;
padding:15px;
border-radius:16px;
transition:.3s ease;
}

.latest-grid > article:not(.featured-post):hover{
transform:translateY(-4px);
box-shadow:0 15px 30px rgba(0,0,0,.35);
}

.small-thumb img{
width:120px;
height:100px;
object-fit:cover;
border-radius:12px;
}

.small-content{
display:flex;
flex-direction:column;
justify-content:center;
}

.small-date{
font-size:12px;
color:#64748b;
margin-bottom:6px;
}

.small-content h4{
margin:0;
font-size:15px;
}

.small-content h4 a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.small-content h4 a:hover{
color:#22d3ee;
}

/* ================= LOAD MORE BUTTON ================= */

#load-more{
margin-top:50px;
display:block;
margin-left:auto;
margin-right:auto;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){
.latest-grid{
grid-template-columns:1fr;
}

.featured-image img{
height:320px;
}
}

@media(max-width:600px){

.section-header{
flex-direction:column;
gap:15px;
align-items:flex-start;
}

.small-thumb img{
width:100px;
height:90px;
}
}


/* ================= TESTIMONIAL SLIDER PRO ================= */

.testimonials-section{
  padding:100px 0;
  background:#f8fafc;
  text-align:center;
}

.testimonial-slider{
  position:relative;
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  transition:transform .6s ease-in-out;
}

/* CARD */

.testimonial-card{
  min-width:100%;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  transition:all .4s ease;
}

.testimonial-card:hover{
  transform:scale(1.05);
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}

.testimonial-card p{
  font-size:18px;
  margin-bottom:30px;
  color:#333;
}

.user{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.user img{
  width:65px;
  height:65px;
  border-radius:50%;
}

/* ARROWS */

.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:var(--primary);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  font-size:20px;
  z-index:10;
}

.prev{ left:15px; }
.next{ right:15px; }

.prev:hover,
.next:hover{
  background:var(--primary-dark);
}

/* ================= COMMUNITY SECTION ================= */

.community-section{
  padding:120px 0;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  position:relative;
}

.community-box{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(20px);
  padding:60px;
  border-radius:24px;
  text-align:center;
  color:#fff;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.community-text h2{
  font-size:38px;
  margin-bottom:15px;
  font-weight:700;
}

.community-text p{
  max-width:600px;
  margin:0 auto 35px;
  font-size:17px;
  opacity:.9;
}

/* FORM */

.community-form{
  display:flex;
  justify-content:center;
  gap:15px;
  margin-bottom:40px;
  flex-wrap:wrap;
}

.community-form input{
  padding:16px 22px;
  width:320px;
  border-radius:50px;
  border:none;
  outline:none;
  font-size:15px;
}

.community-form button{
  padding:16px 30px;
  border:none;
  border-radius:50px;
  background:#ff7a18;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 10px 25px rgba(255,122,24,.35);
}

.community-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(255,122,24,.45);
}

/* STATS */

.community-stats{
  display:flex;
  justify-content:center;
  gap:50px;
  flex-wrap:wrap;
}

.community-stats h4{
  font-size:28px;
  font-weight:700;
}

.community-stats span{
  font-size:14px;
  opacity:.8;
}

/* RESPONSIVE */

@media(max-width:768px){

  .community-box{
    padding:40px 25px;
  }

  .community-text h2{
    font-size:28px;
  }

  .community-form input{
    width:100%;
  }

}

/* ================= PRO CTA SECTION ================= */

.cta-pro{
  padding:120px 0;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  position:relative;
  overflow:hidden;
}

.cta-wrapper{
  text-align:center;
  color:#fff;
  max-width:900px;
  margin:auto;
}

.cta-content h2{
  font-size:42px;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.3;
}

.cta-content p{
  font-size:18px;
  opacity:.85;
  margin-bottom:40px;
}

/* BUTTONS */

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:35px;
}

.btn-cta-primary{
  padding:16px 32px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  border-radius:50px;
  font-weight:600;
  box-shadow:0 15px 40px rgba(37,99,235,.35);
  transition:.3s ease;
}

.btn-cta-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(37,99,235,.5);
}

.btn-cta-outline{
  padding:16px 32px;
  border:2px solid rgba(255,255,255,.3);
  color:#fff;
  border-radius:50px;
  font-weight:600;
  transition:.3s ease;
}

.btn-cta-outline:hover{
  background:#fff;
  color:#0f172a;
}

/* TRUST */

.cta-trust{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  font-size:14px;
  opacity:.8;
}

/* RESPONSIVE */

@media(max-width:768px){

  .cta-content h2{
    font-size:28px;
  }

  .cta-content p{
    font-size:16px;
  }

}

/* ================= TESTIMONIAL SLIDER PRO ================= */

.testimonials-section{
  padding:100px 0;
  background:#f8fafc;
  text-align:center;
}

.testimonial-slider{
  position:relative;
  max-width:900px;
  margin:0 auto;
  overflow:hidden;
}

.testimonial-track{
  display:flex;
  transition:transform .6s ease-in-out;
}

/* CARD */

.testimonial-card{
  min-width:100%;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 25px 60px rgba(0,0,0,.08);
  transition:all .4s ease;
}

.testimonial-card:hover{
  transform:scale(1.05);
  box-shadow:0 35px 80px rgba(0,0,0,.12);
}

.testimonial-card p{
  font-size:18px;
  margin-bottom:30px;
  color:#333;
}

.user{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
}

.user img{
  width:65px;
  height:65px;
  border-radius:50%;
}

/* ARROWS */

.prev,
.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:var(--primary);
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  font-size:20px;
  z-index:10;
}

.prev{ left:15px; }
.next{ right:15px; }

.prev:hover,
.next:hover{
  background:var(--primary-dark);
}

/* ===============================
   ENTERPRISE AUTH SYSTEM
=================================*/

.pro-auth{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 20% 20%, rgba(37,99,235,.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(124,58,237,.15), transparent 40%),
    linear-gradient(135deg,#0f172a,#1e293b);
  padding:60px 20px;
  position:relative;
  overflow:hidden;
}

/* WRAPPER */

.auth-wrapper{
  width:100%;
  max-width:1200px;
  min-height:650px;
  display:grid;
  grid-template-columns:1fr 1fr;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 40px 100px rgba(0,0,0,.35);
  backdrop-filter:blur(20px);
}

/* ================= LEFT SIDE ================= */

.auth-left{
  position:relative;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px;
  color:#fff;
}

.auth-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(15,23,42,.8),rgba(37,99,235,.6));
}

.auth-content{
  position:relative;
  z-index:2;
  max-width:400px;
}

.auth-content h1{
  font-size:42px;
  margin-bottom:20px;
  line-height:1.2;
  font-weight:700;
}

.auth-content p{
  font-size:16px;
  opacity:.9;
}

/* ================= RIGHT SIDE ================= */

.auth-right{
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px;
}

.auth-card{
  width:100%;
  max-width:420px;
}

.auth-card h2{
  font-size:28px;
  margin-bottom:30px;
  font-weight:700;
  color:#0f172a;
}

/* ================= FLOATING INPUT ================= */

.floating-group{
  position:relative;
  margin-bottom:22px;
}

.floating-group input{
  width:100%;
  padding:16px 14px;
  border:1px solid #e2e8f0;
  border-radius:12px;
  font-size:14px;
  outline:none;
  transition:.3s ease;
  background:#f8fafc;
}

.floating-group label{
  position:absolute;
  top:16px;
  left:14px;
  font-size:14px;
  color:#64748b;
  pointer-events:none;
  transition:.3s ease;
}

.floating-group input:focus{
  border-color:#2563eb;
  background:#fff;
  box-shadow:0 0 0 4px rgba(37,99,235,.1);
}

.floating-group input:focus + label,
.floating-group input:not(:placeholder-shown) + label{
  top:-9px;
  left:10px;
  font-size:12px;
  background:#fff;
  padding:0 6px;
  color:#2563eb;
}

/* ================= OPTIONS ================= */

.auth-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
  font-size:13px;
}

.auth-options a{
  color:#2563eb;
  font-weight:600;
}

.remember{
  display:flex;
  align-items:center;
  gap:6px;
  color:#64748b;
}

/* ================= BUTTON ================= */

.btn-auth{
  width:100%;
  padding:14px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 15px 40px rgba(37,99,235,.35);
}

.btn-auth:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(37,99,235,.45);
}

/* ================= ERROR ================= */

.auth-error{
  background:#fee2e2;
  color:#b91c1c;
  padding:12px;
  border-radius:10px;
  margin-bottom:20px;
  font-size:13px;
}

/* ================= SWITCH ================= */

.auth-switch{
  text-align:center;
  margin-top:25px;
  font-size:14px;
}

.auth-switch a{
  color:#2563eb;
  font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .auth-wrapper{
    grid-template-columns:1fr;
  }

  .auth-left{
    display:none;
  }

  .auth-right{
    padding:40px 30px;
  }

}

/* ===== Desktop Default ===== */
.mobile-auth{
display:none;
}

.nav-actions .btn-text,
.nav-actions .btn-primary{
display:inline-flex;
}

/* ===== Mobile ===== */
@media (max-width: 992px){

.main-nav{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100vh;
background:#fff;
flex-direction:column;
padding:80px 25px;
transition:0.4s ease;
box-shadow:-5px 0 30px rgba(0,0,0,0.08);
}

.main-nav.active{
right:0;
}

.nav-menu{
flex-direction:column;
gap:20px;
}

.mobile-auth{
display:flex;
flex-direction:column;
gap:12px;
margin-top:30px;
}

.mobile-auth .full{
width:100%;
text-align:center;
}

.nav-actions .btn-text,
.nav-actions .btn-primary{
display:none; /* Desktop buttons hidden */
}

}
.no-scroll{
overflow:hidden;
}

.auth-section{
  min-height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#eef2ff,#f8fafc);
}

.auth-box{
  background:#fff;
  padding:45px;
  border-radius:18px;
  width:100%;
  max-width:420px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  transition:.3s;
}

.auth-box:hover{
  transform:translateY(-5px);
}

.auth-box h2{
  text-align:center;
  margin-bottom:5px;
}

.auth-subtitle{
  text-align:center;
  font-size:14px;
  color:#64748b;
  margin-bottom:25px;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.auth-form input{
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  font-size:14px;
  transition:.3s;
}

.auth-form input:focus{
  border-color:var(--primary);
  outline:none;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.auth-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
}

.auth-error{
  background:#fee2e2;
  color:#b91c1c;
  padding:12px;
  border-radius:8px;
  margin-bottom:20px;
  text-align:center;
}

.full-width{
  width:100%;
}

.auth-switch{
  text-align:center;
  font-size:14px;
  margin-top:15px;
}

.auth-section{
  min-height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(135deg,#eef2ff,#f8fafc);
}

.auth-box{
  background:#fff;
  padding:45px;
  border-radius:18px;
  width:100%;
  max-width:420px;
  box-shadow:0 25px 70px rgba(0,0,0,0.08);
  transition:.3s;
}

.auth-box:hover{
  transform:translateY(-5px);
}

.auth-box h2{
  text-align:center;
  margin-bottom:5px;
}

.auth-subtitle{
  text-align:center;
  font-size:14px;
  color:#64748b;
  margin-bottom:25px;
}

.auth-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.auth-form input{
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:10px;
  font-size:14px;
  transition:.3s;
}

.auth-form input:focus{
  border-color:var(--primary);
  outline:none;
  box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.auth-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
}

.auth-error{
  background:#fee2e2;
  color:#b91c1c;
  padding:12px;
  border-radius:8px;
  margin-bottom:20px;
  text-align:center;
}

.full-width{
  width:100%;
}

.auth-switch{
  text-align:center;
  font-size:14px;
  margin-top:15px;
}

.auth-wrapper{
  display:flex;
  min-height:100vh;
  background:linear-gradient(135deg,#0f172a,#1e293b);
}

.auth-left{
  flex:1;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:60px;
}

.auth-left h2{
  font-size:36px;
  margin-bottom:20px;
}

.auth-right{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.auth-card{
  background:#fff;
  padding:40px;
  width:100%;
  max-width:420px;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2);
}

.input-group{
  position:relative;
  margin-bottom:20px;
}

.input-group span{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
}

.input-group input{
  width:100%;
  padding:12px 40px;
  border:1px solid #ddd;
  border-radius:8px;
}

.toggle-pass{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  background:none;
  border:none;
  cursor:pointer;
}

.auth-btn{
  width:100%;
  padding:12px;
  background:#2563eb;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.auth-btn:hover{
  background:#1e40af;
}

.auth-error{
  background:#fee2e2;
  color:#b91c1c;
  padding:10px;
  border-radius:8px;
  margin-bottom:15px;
}

.auth-switch{
  text-align:center;
  margin-top:15px;
}

/* =============================
   iOS AUTH STYLE
============================= */

.ios-auth{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#dfe9f3,#ffffff);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
}

.ios-card{
  width:100%;
  max-width:420px;
  padding:45px 35px;
  border-radius:28px;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(20px);
  box-shadow:0 25px 60px rgba(0,0,0,0.08);
  text-align:center;
  transition:.4s;
}

.ios-logo{
  font-size:28px;
  margin-bottom:10px;
  opacity:.7;
}

.ios-card h2{
  font-weight:600;
  margin-bottom:5px;
}

.ios-subtitle{
  font-size:14px;
  color:#666;
  margin-bottom:30px;
}

/* Floating Inputs */

.ios-input{
  position:relative;
  margin-bottom:22px;
}

.ios-input input{
  width:100%;
  padding:14px 10px;
  border:none;
  border-bottom:1px solid #ccc;
  background:transparent;
  font-size:15px;
  outline:none;
  transition:.3s;
}

.ios-input label{
  position:absolute;
  left:10px;
  top:14px;
  color:#999;
  font-size:14px;
  transition:.3s;
  pointer-events:none;
}

.ios-input input:focus{
  border-color:#007aff;
}

.ios-input input:focus + label,
.ios-input input:not(:placeholder-shown) + label{
  top:-8px;
  font-size:12px;
  color:#007aff;
}

/* iOS Switch */

.ios-switch{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  cursor:pointer;
}

.ios-switch input{
  display:none;
}

.ios-switch .slider{
  width:38px;
  height:20px;
  background:#ccc;
  border-radius:20px;
  position:relative;
  transition:.3s;
}

.ios-switch .slider::before{
  content:"";
  position:absolute;
  width:16px;
  height:16px;
  left:2px;
  top:2px;
  background:white;
  border-radius:50%;
  transition:.3s;
}

.ios-switch input:checked + .slider{
  background:#34c759;
}

.ios-switch input:checked + .slider::before{
  transform:translateX(18px);
}

/* Options row */

.ios-options{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
  font-size:14px;
}

/* Button */

.ios-btn{
  width:100%;
  padding:14px;
  border:none;
  border-radius:16px;
  background:#007aff;
  color:white;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.ios-btn:hover{
  background:#005ecb;
  transform:translateY(-2px);
}

/* Error */

.ios-error{
  background:#ffe5e5;
  color:#d00000;
  padding:10px;
  border-radius:12px;
  margin-bottom:15px;
  font-size:14px;
}

.ios-switch-text{
  margin-top:20px;
  font-size:14px;
}

/* ===============================
   DHILAALO PREMIUM HEADER SYSTEM
   Minimal • Business • Responsive
================================= */

/* RESET SMALL THINGS */
.dh-header *{
    box-sizing:border-box;
}

/* ================= TOP BAR ================= */

.top-bar{
    background:#0f172a;
    color:#cbd5e1;
    font-size:13px;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    max-width:1240px;
    margin:auto;
}

.top-left span{
    margin-right:18px;
}

.top-right a{
    color:#cbd5e1;
    margin-left:12px;
    transition:.3s ease;
}

.top-right a:hover{
    color:#22d3ee;
}

/* ================= MAIN HEADER ================= */

.dh-header{
    position:sticky;
    top:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.85);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:all .3s ease;
}

/* Container */
.nav-container{
    max-width:1240px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================= LOGO ================= */

.site-branding img{
    max-height:40px;
}

.site-title{
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    color:#0f172a;
    letter-spacing:-0.5px;
}

/* ================= NAV MENU ================= */

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:35px;
    padding:0;
    margin:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#0f172a;
    font-weight:500;
    font-size:15px;
    transition:.3s ease;
    padding:4px 0;
}

/* Hover underline */
.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#2563eb;
    transition:.3s ease;
}

.nav-menu li a:hover::after{
    width:100%;
}

/* Active menu */
.nav-menu .current-menu-item a{
    color:#2563eb;
    font-weight:600;
}

/* ================= RIGHT SIDE ================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/* ================= SEARCH ================= */

.search-wrapper{
    position:relative;
}

.search-toggle{
    background:none;
    border:none;
    font-size:16px;
    cursor:pointer;
    color:#0f172a;
}

.search-form{
    position:absolute;
    top:120%;
    right:0;
    background:#fff;
    padding:10px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:none;
}

.search-form.active{
    display:block;
}

.search-field{
    border:1px solid #e2e8f0;
    padding:8px 12px;
    border-radius:8px;
    outline:none;
    width:220px;
}

/* ================= BUTTONS ================= */

.btn-outline{
    padding:8px 18px;
    border-radius:8px;
    border:1px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    font-weight:500;
    transition:.25s ease;
}

.btn-outline:hover{
    background:#2563eb;
    color:#fff;
}

.btn-cta{
    background:#2563eb;
    color:#fff;
    padding:9px 20px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 4px 14px rgba(37,99,235,.25);
}

.btn-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,.35);
}

/* ================= MOBILE TOGGLE ================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:2px;
    background:#0f172a;
}

/* ================= SHRINK EFFECT ================= */

.dh-header.shrink{
    padding:5px 0;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        padding:20px 0;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
    }

    .main-nav.active{
        display:flex;
    }

    .nav-menu{
        flex-direction:column;
        gap:20px;
    }

    .menu-toggle{
        display:flex;
    }

    .btn-outline,
    .btn-cta{
        display:none;
    }

}

@media (max-width:600px){

    .top-bar{
        display:none;
    }

    .nav-container{
        padding:15px 20px;
    }

}

/* ================= TV / LARGE SCREEN OPTIMIZATION ================= */

@media (min-width:1600px){

    .nav-container{
        max-width:1500px;
    }

    .nav-menu{
        gap:45px;
    }

}
/* =====================
   MINIMAL HEADER
===================== */

.dh-header{
    position:sticky;
    top:0;
    width:100%;
    background:#ffffff;
    border-bottom:1px solid #f1f5f9;
    z-index:999;
}

.nav-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
}

/* LOGO */
.site-title{
    font-size:20px;
    font-weight:600;
    text-decoration:none;
    color:#0f172a;
}

/* NAV MENU */
.nav-menu{
    display:flex;
    gap:32px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-menu li a{
    text-decoration:none;
    font-size:15px;
    color:#334155;
    font-weight:500;
    transition:0.2s;
}

.nav-menu li a:hover{
    color:#2563eb;
}

/* RIGHT ACTIONS */
.nav-actions{
    display:flex;
    align-items:center;
    gap:14px;
}

/* BUTTONS */
.btn-text{
    text-decoration:none;
    font-size:14px;
    color:#334155;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
    padding:8px 18px;
    border-radius:6px;
    font-size:14px;
    text-decoration:none;
    transition:0.2s;
}

.btn-primary:hover{
    background:#1e40af;
}

/* MOBILE TOGGLE */
.menu-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.menu-toggle span{
    width:22px;
    height:2px;
    background:#0f172a;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:991px){

    .main-nav{
        position:fixed;
        top:0;
        right:-100%;
        width:260px;
        height:100vh;
        background:#ffffff;
        padding:80px 30px;
        transition:0.3s ease;
        box-shadow:-10px 0 30px rgba(0,0,0,0.08);
    }

    .main-nav.active{
        right:0;
    }

    .nav-menu{
        flex-direction:column;
        gap:20px;
    }

    .menu-toggle{
        display:flex;
    }

}
/* ===============================
   DHILAALO PREMIUM HEADER SYSTEM
   Minimal • Business • Responsive
================================= */

/* RESET SMALL THINGS */
.dh-header *{
    box-sizing:border-box;
}

/* ================= TOP BAR ================= */

.top-bar{
    background:#0f172a;
    color:#cbd5e1;
    font-size:13px;
}

.top-bar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 30px;
    max-width:1240px;
    margin:auto;
}

.top-left span{
    margin-right:18px;
}

.top-right a{
    color:#cbd5e1;
    margin-left:12px;
    transition:.3s ease;
}

.top-right a:hover{
    color:#22d3ee;
}

/* ================= MAIN HEADER ================= */

.dh-header{
    position:sticky;
    top:0;
    width:100%;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(255,255,255,0.85);
    border-bottom:1px solid rgba(0,0,0,0.05);
    transition:all .3s ease;
}

/* Container */
.nav-container{
    max-width:1240px;
    margin:auto;
    padding:18px 30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ================= LOGO ================= */

.site-branding img{
    max-height:40px;
}

.site-title{
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    color:#0f172a;
    letter-spacing:-0.5px;
}

/* ================= NAV MENU ================= */

.main-nav{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:35px;
    padding:0;
    margin:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    text-decoration:none;
    color:#0f172a;
    font-weight:500;
    font-size:15px;
    transition:.3s ease;
    padding:4px 0;
}

/* Hover underline */
.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#2563eb;
    transition:.3s ease;
}

.nav-menu li a:hover::after{
    width:100%;
}

/* Active menu */
.nav-menu .current-menu-item a{
    color:#2563eb;
    font-weight:600;
}

/* ================= RIGHT SIDE ================= */

.nav-right{
    display:flex;
    align-items:center;
    gap:18px;
}

/* ================= SEARCH ================= */

.search-wrapper{
    position:relative;
}

.search-toggle{
    background:none;
    border:none;
    font-size:16px;
    cursor:pointer;
    color:#0f172a;
}

.search-form{
    position:absolute;
    top:120%;
    right:0;
    background:#fff;
    padding:10px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:none;
}

.search-form.active{
    display:block;
}

.search-field{
    border:1px solid #e2e8f0;
    padding:8px 12px;
    border-radius:8px;
    outline:none;
    width:220px;
}

/* ================= BUTTONS ================= */

.btn-outline{
    padding:8px 18px;
    border-radius:8px;
    border:1px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    font-weight:500;
    transition:.25s ease;
}

.btn-outline:hover{
    background:#2563eb;
    color:#fff;
}

.btn-cta{
    background:#2563eb;
    color:#fff;
    padding:9px 20px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:.25s ease;
    box-shadow:0 4px 14px rgba(37,99,235,.25);
}

.btn-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(37,99,235,.35);
}

/* ================= MOBILE TOGGLE ================= */

.menu-toggle{
    display:none;
    flex-direction:column;
    gap:4px;
    cursor:pointer;
}

.menu-toggle span{
    width:25px;
    height:2px;
    background:#0f172a;
}

/* ================= SHRINK EFFECT ================= */

.dh-header.shrink{
    padding:5px 0;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width:992px){

    .main-nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        padding:20px 0;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,.05);
    }

    .main-nav.active{
        display:flex;
    }

    .nav-menu{
        flex-direction:column;
        gap:20px;
    }

    .menu-toggle{
        display:flex;
    }

    .btn-outline,
    .btn-cta{
        display:none;
    }

}

@media (max-width:600px){

    .top-bar{
        display:none;
    }

    .nav-container{
        padding:15px 20px;
    }

}

/* ================= TV / LARGE SCREEN OPTIMIZATION ================= */

@media (min-width:1600px){

    .nav-container{
        max-width:1500px;
    }

    .nav-menu{
        gap:45px;
    }

}

/* ===============================
   RESET + GLOBAL FIX
================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* muhiim: ka hortag horizontal scroll */
  font-family: system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
}

/* Sawirro iyo video ha ka bixin container */
img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Lists */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Buttons */
button {
  border: none;
  cursor: pointer;
  background: none;
}


/* ===============================
   CONTAINER SYSTEM
================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}


/* ===============================
   FLEX & GRID SAFE SYSTEM
================================= */

.flex {
  display: flex;
  flex-wrap: wrap; /* ka hortag in ay baxaan */
}

.grid {
  display: grid;
  gap: 20px;
}

/* Automatic responsive grid */
.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


/* ===============================
   HEADER SAFE FIX
================================= */

.dh-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.nav-menu li {
  white-space: nowrap;
}


/* ===============================
   MOBILE MENU FIX
================================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #111;
}

/* Mobile */
@media (max-width: 992px) {

  .main-nav {
    width: 100%;
    display: none;
    margin-top: 15px;
  }

  .main-nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .menu-toggle {
    display: flex;
  }

}


/* ===============================
   SECTION SAFE SPACING
================================= */

section {
  padding: 60px 0;
}

@media (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}


/* ===============================
   HERO FIX
================================= */

.hero-slider,
.slide {
  width: 100%;
  min-height: 90vh;
}

.slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ===============================
   TYPOGRAPHY RESPONSIVE
================================= */

h1 {
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(22px, 4vw, 36px);
}

p {
  font-size: clamp(14px, 2vw, 18px);
}


/* ===============================
   BUTTON SAFE STYLE
================================= */

.btn-primary {
  display: inline-block;
  padding: 12px 22px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-text {
  padding: 10px 16px;
}


/* ===============================
   FIX RANDOM OVERFLOW BUGS
================================= */

/* Ka hortag element kasta oo baxaya */
body * {
  max-width: 100%;
}

/* Long words ha jabaan */
p, h1, h2, h3, h4 {
  word-wrap: break-word;
}

.trust-section {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-text h3 {
  font-size: 22px;
  font-weight: 600;
}

.trust-text span {
  color: #2563eb;
  font-weight: 700;
  font-size: 26px;
}

.trust-avatars {
  display: flex;
}

.trust-avatars img {
  border-radius: 50%;
  margin-left: -10px;
  border: 3px solid #fff;
  transition: 0.3s ease;
}

.trust-avatars img:hover {
  transform: translateY(-4px);
}

/* ===============================
   CTA PRO SECTION
================================= */

.cta-pro{
    position:relative;
    padding:100px 20px;
    background:linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
    overflow:hidden;
}

.cta-pro::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle,rgba(59,130,246,.25),transparent 60%);
    top:-200px;
    right:-200px;
    pointer-events:none;
}

.container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    box-sizing:border-box;
}

.cta-wrapper{
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:24px;
    padding:70px 50px;
    text-align:center;
    transition:.4s ease;
}

.cta-wrapper:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 60px rgba(0,0,0,.4);
}

/* TEXT */

.cta-content h2{
    font-size:38px;
    font-weight:600;
    margin-bottom:20px;
    line-height:1.3;
}

.cta-content p{
    font-size:17px;
    opacity:.85;
    max-width:700px;
    margin:0 auto 40px auto;
    line-height:1.7;
}

/* BUTTONS */

.cta-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:35px;
}

.btn-cta-primary{
    background:#2563eb;
    color:#fff;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.btn-cta-primary:hover{
    background:#1e40af;
    transform:translateY(-3px);
}

.btn-cta-outline{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    padding:16px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.btn-cta-outline:hover{
    background:rgba(255,255,255,.1);
    transform:translateY(-3px);
}

/* TRUST BADGES */

.cta-trust{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:25px;
    font-size:14px;
    opacity:.85;
}

.cta-trust span{
    display:flex;
    align-items:center;
    gap:6px;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:768px){

    .cta-wrapper{
        padding:50px 25px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-cta-primary,
    .btn-cta-outline{
        width:100%;
        max-width:320px;
        text-align:center;
    }
}

/* ===============================
   FOOTER
================================= */

.site-footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:80px 0 0 0;
    overflow:hidden;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:50px;
    padding-bottom:60px;
}

.footer-col h4{
    color:#fff;
    font-size:18px;
    margin-bottom:20px;
    position:relative;
}

.footer-col h4::after{
    content:"";
    width:40px;
    height:3px;
    background:#2563eb;
    position:absolute;
    left:0;
    bottom:-8px;
    border-radius:5px;
}

.footer-col p{
    font-size:14px;
    line-height:1.8;
    opacity:.8;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#2563eb;
    padding-left:6px;
}

/* NEWSLETTER */

.footer-subscribe{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.footer-subscribe input{
    flex:1;
    min-width:160px;
    padding:12px 14px;
    border:none;
    border-radius:8px;
    outline:none;
}

.footer-subscribe button{
    padding:12px 18px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.footer-subscribe button:hover{
    background:#1e40af;
}

/* BOTTOM */

.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid rgba(255,255,255,.06);
    font-size:14px;
    opacity:.7;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:768px){

    .footer-grid{
        gap:35px;
    }

    .footer-subscribe{
        flex-direction:column;
    }

    .footer-subscribe button{
        width:100%;
    }
}

/* ===============================
   FOOTER SOCIAL
================================= */

.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    padding:30px 0 15px 0;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    color:#cbd5e1;
    font-size:16px;
    transition:all .3s ease;
}

.footer-social a:hover{
    background:#2563eb;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(37,99,235,.4);
}

/* Mobile */
@media(max-width:768px){
    .footer-social{
        padding-top:25px;
        gap:14px;
    }
}

/* =========================
   REGISTER PAGE ONLY
=========================*/

.register-page{
  padding:100px 20px;
  background:#f4f7fb;
  display:flex;
  justify-content:center;
}

.register-container{
  width:100%;
  max-width:1100px;
}

.register-box{
  max-width:420px;
  margin:0 auto;
  background:#ffffff;
  padding:45px 40px;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* HEADER */

.register-header{
  text-align:center;
  margin-bottom:30px;
}

.register-header h2{
  font-size:26px;
  font-weight:600;
  color:#0f172a;
  margin-bottom:8px;
}

.register-header p{
  font-size:14px;
  color:#64748b;
}

/* FORM */

.register-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.register-form input{
  padding:14px;
  border:1px solid #e2e8f0;
  border-radius:8px;
  font-size:14px;
  background:#f8fafc;
  transition:.3s;
}

.register-form input:focus{
  outline:none;
  border-color:#2563eb;
  background:#fff;
  box-shadow:0 0 0 3px rgba(37,99,235,.1);
}

/* BUTTON */

.register-btn{
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:8px;
  background:#2563eb;
  color:#fff;
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:.3s;
}

.register-btn:hover{
  background:#1e40af;
  transform:translateY(-2px);
}

/* FOOTER TEXT */

.register-footer{
  margin-top:25px;
  text-align:center;
  font-size:14px;
  color:#64748b;
}

.register-footer a{
  color:#2563eb;
  text-decoration:none;
  font-weight:500;
}

.register-footer a:hover{
  text-decoration:underline;
}

/* RESPONSIVE */

@media(max-width:480px){
  .register-box{
    padding:35px 25px;
  }
}

/* ===============================
   NEON SPLIT REGISTER PAGE
================================*/

.neon-register-page{
  min-height:100vh;
  display:flex;
  background:#0f172a;
  font-family:'Segoe UI',sans-serif;
}

.neon-register-container{
  display:flex;
  width:100%;
}

/* LEFT SIDE */

.register-left{
  flex:1;
  background:#0b1120;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 30px;
}

.register-box{
  width:100%;
  max-width:420px;
  color:#fff;
}

.register-box h2{
  font-size:28px;
  margin-bottom:10px;
}

.subtitle{
  color:#94a3b8;
  margin-bottom:25px;
}

/* SOCIAL BUTTONS */

.social-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}

.social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  background:rgba(255,255,255,.03);
}

.social-btn:hover{
  background:rgba(0,255,255,.15);
  border-color:#00f5ff;
  box-shadow:0 0 15px #00f5ff;
}

.divider{
  text-align:center;
  margin:20px 0;
  color:#64748b;
}

/* FORM */

.register-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.register-form input{
  padding:12px;
  border-radius:6px;
  border:1px solid #1e293b;
  background:#0f172a;
  color:#fff;
}

.register-form input:focus{
  border-color:#00f5ff;
  box-shadow:0 0 10px #00f5ff;
  outline:none;
}

.register-btn{
  padding:13px;
  background:#00f5ff;
  border:none;
  color:#000;
  font-weight:600;
  border-radius:6px;
  cursor:pointer;
  transition:.3s;
}

.register-btn:hover{
  box-shadow:0 0 25px #00f5ff;
  transform:translateY(-2px);
}

.login-link{
  margin-top:15px;
  font-size:14px;
}

.login-link a{
  color:#00f5ff;
  text-decoration:none;
}

/* RIGHT SIDE */

.register-right{
  flex:1;
  background:linear-gradient(135deg,#00f5ff,#3b82f6);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  color:#000;
}

.welcome-content{
  max-width:400px;
}

.welcome-content h1{
  font-size:38px;
  margin-bottom:20px;
}

.welcome-content p{
  margin-bottom:20px;
  line-height:1.6;
}

.welcome-content ul{
  list-style:none;
  padding:0;
}

.welcome-content li{
  margin-bottom:10px;
  font-weight:500;
}

/* ERROR */

.form-error{
  background:#7f1d1d;
  padding:12px;
  border-radius:6px;
  margin-bottom:15px;
}

/* RESPONSIVE */

@media(max-width:900px){

  .neon-register-container{
    flex-direction:column;
  }

  .register-right{
    display:none;
  }

  .register-left{
    width:100%;
  }

}

/* ===============================
   NEON REGISTER FIXED VERSION
================================*/

.neon-register-page{
  min-height:100vh;
  display:flex;
  background:#0b1220;
}

/* Container */
.neon-register-container{
  display:flex;
  width:100%;
  min-height:100vh;
}

/* LEFT SIDE (FORM) */
.register-left{
  flex:1;
  background:#0f172a; /* DARK instead of white */
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 40px;
}

/* FORM BOX */
.register-box{
  width:100%;
  max-width:420px;
  color:#fff;
  animation:fadeIn 0.6s ease;
}

.register-box h2{
  font-size:28px;
  margin-bottom:8px;
}

.subtitle{
  color:#94a3b8;
  margin-bottom:25px;
  font-size:14px;
}

/* SOCIAL BUTTONS */
.social-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}

.social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  border:1px solid rgba(255,255,255,0.08);
  background:#111827;
  color:#fff;
  transition:all .3s ease;
}

.social-btn i{
  font-size:16px;
}

.social-btn:hover{
  border-color:#00f5ff;
  box-shadow:0 0 18px rgba(0,245,255,0.6);
  transform:translateY(-2px);
}

/* DIVIDER */
.divider{
  text-align:center;
  margin:20px 0;
  color:#64748b;
  font-size:13px;
}

/* FORM */
.register-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.register-form input{
  padding:13px;
  border-radius:8px;
  border:1px solid #1e293b;
  background:#111827;
  color:#fff;
  font-size:14px;
  transition:all .3s ease;
}

.register-form input:focus{
  border-color:#00f5ff;
  box-shadow:0 0 10px rgba(0,245,255,0.6);
  outline:none;
}

/* BUTTON */
.register-btn{
  padding:14px;
  background:linear-gradient(135deg,#00f5ff,#3b82f6);
  border:none;
  color:#000;
  font-weight:600;
  border-radius:8px;
  cursor:pointer;
  transition:all .3s ease;
}

.register-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 0 25px rgba(0,245,255,0.8);
}

/* LOGIN LINK */
.login-link{
  margin-top:18px;
  font-size:14px;
  color:#94a3b8;
}

.login-link a{
  color:#00f5ff;
  text-decoration:none;
}

.login-link a:hover{
  text-decoration:underline;
}

/* RIGHT SIDE */
.register-right{
  flex:1;
  background:linear-gradient(135deg,#00f5ff,#2563eb);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  color:#000;
}

.welcome-content{
  max-width:420px;
}

.welcome-content h1{
  font-size:38px;
  margin-bottom:20px;
  font-weight:700;
}

.welcome-content p{
  margin-bottom:20px;
  line-height:1.6;
  font-size:16px;
}

.welcome-content ul{
  list-style:none;
  padding:0;
}

.welcome-content li{
  margin-bottom:12px;
  font-weight:500;
}

/* ERROR */
.form-error{
  background:#7f1d1d;
  padding:12px;
  border-radius:6px;
  margin-bottom:15px;
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .neon-register-container{
    flex-direction:column;
  }

  .register-right{
    display:none;
  }

  .register-left{
    width:100%;
  }
}

/* Animation */
@keyframes fadeIn{
  from{opacity:0; transform:translateY(15px);}
  to{opacity:1; transform:translateY(0);}
}

/* ===============================
   NEON SPLIT REGISTER PAGE (FIXED ORDER)
================================*/

.neon-register-page{
  min-height:100vh;
  display:flex;
  background:#0f172a;
  font-family:'Segoe UI',sans-serif;
}

.neon-register-container{
  display:flex;
  width:100%;
}

/* RIGHT SIDE NOW = FORM */

.register-left{
  flex:1;
  background:#0b1120;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 30px;
  order:2; /* muhiim */
}

/* LEFT SIDE NOW = TEXT */

.register-right{
  flex:1;
  background:linear-gradient(135deg,#00f5ff,#3b82f6);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  color:#000;
  order:1; /* muhiim */
}

.welcome-content{
  max-width:450px;
}

.welcome-content h1{
  font-size:40px;
  margin-bottom:20px;
}

.welcome-content p{
  margin-bottom:20px;
  line-height:1.6;
}

.welcome-content ul{
  list-style:none;
  padding:0;
}

.welcome-content li{
  margin-bottom:12px;
  font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

  .neon-register-container{
    flex-direction:column;
  }

  .register-right{
    order:1;
  }

  .register-left{
    order:2;
  }

}

/* ===============================
   SOFT GLASS REGISTER THEME
================================*/

.neon-register-page{
  min-height:100vh;
  display:flex;
  font-family:'Segoe UI',sans-serif;
  background:linear-gradient(135deg,#0f172a,#1e293b,#0f172a);
  overflow:hidden;
  position:relative;
}

/* Soft animated background glow */

.neon-register-page::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:radial-gradient(circle,#3b82f640,transparent 70%);
  top:-200px;
  left:-200px;
  animation:floatGlow 12s ease-in-out infinite;
}

.neon-register-page::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#06b6d440,transparent 70%);
  bottom:-200px;
  right:-200px;
  animation:floatGlow 14s ease-in-out infinite alternate;
}

@keyframes floatGlow{
  0%{ transform:translateY(0px);}
  50%{ transform:translateY(30px);}
  100%{ transform:translateY(0px);}
}

/* Layout */

.neon-register-container{
  display:flex;
  width:100%;
  position:relative;
  z-index:2;
}

/* LEFT SIDE TEXT */

.register-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  color:#e2e8f0;
}

.welcome-content{
  max-width:450px;
}

.welcome-content h1{
  font-size:42px;
  margin-bottom:20px;
  font-weight:600;
  color:#f1f5f9;
}

.welcome-content p{
  color:#cbd5e1;
  margin-bottom:25px;
  line-height:1.7;
}

.welcome-content li{
  margin-bottom:12px;
  color:#94a3b8;
}

/* RIGHT SIDE FORM */

.register-left{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px 30px;
}

/* GLASS CARD */

.register-box{
  width:100%;
  max-width:420px;
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 20px 40px rgba(0,0,0,0.4);
  color:#fff;
}

.register-box h2{
  margin-bottom:10px;
  font-size:26px;
  color:#f8fafc;
}

.subtitle{
  color:#94a3b8;
  margin-bottom:25px;
}

/* SOCIAL BUTTONS */

.social-buttons{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:20px;
}

.social-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px;
  border-radius:10px;
  text-decoration:none;
  font-weight:500;
  color:#e2e8f0;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  transition:0.3s ease;
}

.social-btn:hover{
  background:rgba(255,255,255,0.1);
  transform:translateY(-2px);
}

/* Divider */

.divider{
  text-align:center;
  margin:20px 0;
  color:#64748b;
}

/* FORM */

.register-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.register-form input{
  padding:13px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  color:#f1f5f9;
  transition:0.3s;
}

.register-form input:focus{
  border-color:#3b82f6;
  outline:none;
  background:rgba(255,255,255,0.07);
}

/* BUTTON */

.register-btn{
  padding:14px;
  border-radius:10px;
  border:none;
  font-weight:600;
  cursor:pointer;
  background:linear-gradient(135deg,#3b82f6,#06b6d4);
  color:white;
  transition:0.3s;
}

.register-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(59,130,246,0.4);
}

/* ERROR */

.form-error{
  background:rgba(220,38,38,0.15);
  border:1px solid rgba(220,38,38,0.3);
  padding:12px;
  border-radius:10px;
  margin-bottom:15px;
  color:#fca5a5;
}

/* RESPONSIVE */

@media(max-width:900px){

  .neon-register-container{
    flex-direction:column;
  }

  .register-right{
    padding:40px 20px;
  }

  .register-left{
    padding:40px 20px;
  }

}

/* RIGHT SIDE UPGRADE */

.register-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  background:linear-gradient(135deg,#1e293b,#0f172a);
  color:#e2e8f0;
}

.welcome-content{
  max-width:520px;
}

.welcome-content h1{
  font-size:40px;
  margin-bottom:15px;
  color:#f1f5f9;
}

.welcome-sub{
  margin-bottom:35px;
  color:#94a3b8;
  line-height:1.6;
}

/* CARDS GRID */

.benefit-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

/* CARD STYLE */

.benefit-card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.08);
  padding:20px;
  border-radius:18px;
  transition:0.4s ease;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.benefit-card:hover{
  transform:translateY(-6px) scale(1.05);
  box-shadow:0 15px 35px rgba(0,0,0,0.4);
  border-color:#3b82f6;
}

/* ICON STYLE */

.benefit-card .icon{
  font-size:26px;
  margin-bottom:12px;
  color:#3b82f6;
  transition:0.4s;
}

.benefit-card:hover .icon{
  transform:scale(1.2);
  color:#06b6d4;
}

/* TEXT */

.benefit-card h3{
  font-size:16px;
  margin-bottom:8px;
  color:#f8fafc;
}

.benefit-card p{
  font-size:14px;
  color:#94a3b8;
  line-height:1.5;
}

/* RESPONSIVE */

@media(max-width:900px){

  .benefit-cards{
    grid-template-columns:1fr;
  }

  .register-right{
    padding:40px 20px;
  }

}

/* ===============================
   NEON LOGIN PAGE
================================*/

.neon-login-page{
  min-height:100vh;
  display:flex;
  background:linear-gradient(135deg,#0f172a,#111827);
  font-family:'Segoe UI',sans-serif;
}

.neon-login-container{
  display:flex;
  width:100%;
}

/* LEFT SIDE */

.login-left{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:60px;
  background:linear-gradient(135deg,#00f5ff22,#3b82f622);
}

.welcome-box{
  max-width:420px;
  color:#fff;
}

.welcome-box h1{
  font-size:36px;
  margin-bottom:20px;
}

.welcome-box p{
  opacity:.8;
  margin-bottom:30px;
}

.feature-cards{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.card{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:12px;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  transition:.3s;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:0 0 25px #00f5ff55;
}

/* RIGHT SIDE */

.login-right{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.login-box{
  width:100%;
  max-width:420px;
  padding:40px;
  border-radius:20px;
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}

.login-box h2{
  margin-bottom:20px;
}

/* FORM */

.login-form input{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.1);
  background:#0f172a;
  color:#fff;
}

.login-form input:focus{
  border-color:#00f5ff;
  box-shadow:0 0 10px #00f5ff;
  outline:none;
}

.login-btn{
  width:100%;
  padding:13px;
  background:#00f5ff;
  border:none;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.login-btn:hover{
  box-shadow:0 0 20px #00f5ff;
}

/* SOCIAL */

.social-buttons{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:20px;
}

.social-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:8px;
  background:#0f172a;
  color:#fff;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.1);
  transition:.3s;
}

.social-btn:hover{
  background:#00f5ff22;
  box-shadow:0 0 15px #00f5ff;
}

.divider{
  text-align:center;
  margin:20px 0;
  opacity:.6;
}

.form-error{
  background:#7f1d1d;
  padding:12px;
  border-radius:8px;
  margin-bottom:15px;
}

.login-footer{
  margin-top:20px;
  text-align:center;
  font-size:14px;
}

.login-footer a{
  color:#00f5ff;
  text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:900px){
  .neon-login-container{
    flex-direction:column;
  }

  .login-left{
    display:none;
  }
}

/* ===============================
   NEWS BLOG PAGE
================================*/

.news-page{
  padding:60px 20px;
  background:#0f172a;
}

.news-container{
  max-width:1200px;
  margin:auto;
}

/* FEATURED */

.featured-post{
  position:relative;
  margin-bottom:50px;
  border-radius:16px;
  overflow:hidden;
}

.featured-post img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition:.4s;
}

.featured-post:hover img{
  transform:scale(1.05);
}

.featured-content{
  position:absolute;
  bottom:0;
  padding:40px;
  background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
  color:#fff;
  width:100%;
}

.featured-content h2{
  font-size:32px;
  margin:10px 0;
}

/* GRID */

.news-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.news-card{
  background:#111827;
  border-radius:14px;
  overflow:hidden;
  transition:.3s;
}

.news-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,.4);
}

.news-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.news-content{
  padding:20px;
  color:#fff;
}

.news-content h3{
  font-size:18px;
  margin:10px 0;
}

.news-category{
  font-size:12px;
  color:#00f5ff;
  text-transform:uppercase;
}

.news-date{
  font-size:12px;
  opacity:.6;
}

/* PAGINATION */

.news-pagination{
  margin-top:40px;
  text-align:center;
}

.news-pagination a{
  margin:0 6px;
  padding:8px 14px;
  background:#1f2937;
  color:#fff;
  border-radius:6px;
  text-decoration:none;
}

.news-pagination .current{
  background:#00f5ff;
  color:#000;
}

/* RESPONSIVE */

@media(max-width:768px){
  .featured-post img{
    height:250px;
  }

  .featured-content h2{
    font-size:22px;
  }
}

/* ================= CNN NEWS PAGE ================= */

.cnn-news-page{
padding:40px 20px;
background:#f5f5f5;
font-family: 'Segoe UI', sans-serif;
}

.cnn-container{
max-width:1200px;
margin:auto;
}

/* Breaking */
.breaking-bar{
background:#cc0000;
color:#fff;
padding:10px 20px;
font-weight:700;
margin-bottom:20px;
}

/* Featured */
.featured-post{
position:relative;
margin-bottom:40px;
overflow:hidden;
}

.featured-post img{
width:100%;
height:500px;
object-fit:cover;
}

.featured-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:40px;
background:linear-gradient(to top, rgba(0,0,0,.85), transparent);
color:#fff;
}

.featured-overlay h1{
font-size:36px;
font-weight:800;
margin-bottom:10px;
}

.category{
background:#cc0000;
padding:4px 10px;
font-size:12px;
font-weight:700;
text-transform:uppercase;
}

/* Layout */
.cnn-main-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* Cards */
.news-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.news-card{
background:#fff;
border-radius:6px;
overflow:hidden;
transition:.3s;
}

.news-card img{
width:100%;
height:200px;
object-fit:cover;
transition:.4s;
}

.news-card:hover img{
transform:scale(1.08);
}

.news-card:hover{
box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.news-content{
padding:15px;
}

.news-category{
font-size:12px;
font-weight:700;
color:#cc0000;
}

.news-content h3{
font-size:18px;
margin:10px 0;
font-weight:700;
}

.news-date{
font-size:12px;
color:#666;
}

/* Sidebar */
.news-sidebar{
position:sticky;
top:100px;
}

.sidebar-box{
background:#fff;
padding:20px;
margin-bottom:20px;
border-radius:6px;
}

.sidebar-box h3{
margin-bottom:15px;
font-weight:800;
}

.sidebar-box ul{
list-style:none;
padding:0;
margin:0;
}

.sidebar-box li{
margin-bottom:10px;
}

.sidebar-box a{
text-decoration:none;
color:#111;
font-weight:500;
}

.sidebar-box a:hover{
color:#cc0000;
}

/* Pagination */
.news-pagination{
margin-top:30px;
}

.news-pagination a{
margin-right:10px;
padding:6px 12px;
background:#fff;
border:1px solid #ddd;
text-decoration:none;
}

.news-pagination .current{
background:#cc0000;
color:#fff;
}

/* Responsive */
@media(max-width:900px){

.cnn-main-grid{
grid-template-columns:1fr;
}

.news-grid{
grid-template-columns:1fr;
}

.featured-post img{
height:300px;
}

}

/* ===============================
   DHILAALO FINANCE BLOG
================================*/

.finance-news{
padding:60px 20px;
background:#f4f7fb;
font-family:'Segoe UI',sans-serif;
}

.finance-container{
max-width:1200px;
margin:auto;
}

/* Top Header */
.finance-top{
text-align:center;
margin-bottom:50px;
}

.finance-top h1{
font-size:42px;
color:#1e293b;
font-weight:700;
}

.finance-top p{
color:#64748b;
margin-top:10px;
}

/* Featured */
.finance-featured{
margin-bottom:50px;
position:relative;
overflow:hidden;
border-radius:10px;
}

.finance-featured img{
width:100%;
height:450px;
object-fit:cover;
}

.finance-featured-content{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:40px;
background:linear-gradient(to top,rgba(0,0,0,.8),transparent);
color:#fff;
}

.finance-featured h2{
font-size:34px;
margin-bottom:10px;
}

.finance-tag{
background:#d4af37;
color:#000;
padding:5px 12px;
font-size:12px;
font-weight:700;
margin-bottom:10px;
display:inline-block;
}

/* Layout */
.finance-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

/* Cards */
.finance-posts{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.finance-card{
background:#fff;
border-radius:10px;
overflow:hidden;
transition:.3s;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.finance-card:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.finance-card img{
width:100%;
height:200px;
object-fit:cover;
}

.finance-card-content{
padding:18px;
}

.finance-card-content h3{
font-size:18px;
margin-bottom:8px;
color:#1e293b;
}

.finance-date{
font-size:12px;
color:#94a3b8;
}

/* Sidebar */
.finance-sidebar{
position:sticky;
top:100px;
}

.sidebar-box{
background:#fff;
padding:20px;
border-radius:10px;
margin-bottom:25px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.sidebar-box h3{
margin-bottom:15px;
color:#1e293b;
}

.sidebar-box ul{
list-style:none;
padding:0;
}

.sidebar-box li{
margin-bottom:10px;
}

.sidebar-box a{
text-decoration:none;
color:#334155;
}

.sidebar-box a:hover{
color:#2563eb;
}

/* Pagination */
.finance-pagination{
margin-top:30px;
}

.finance-pagination a{
margin-right:10px;
padding:8px 14px;
background:#fff;
border:1px solid #ddd;
text-decoration:none;
border-radius:6px;
}

.finance-pagination .current{
background:#2563eb;
color:#fff;
}

/* Responsive */
@media(max-width:900px){

.finance-layout{
grid-template-columns:1fr;
}

.finance-posts{
grid-template-columns:1fr;
}

.finance-featured img{
height:280px;
}

}

/* =====================
   DHILAALO BLOG
=====================*/

.dh-blog{
padding:60px 20px;
background:#f4f7fb;
}

.dh-container{
max-width:1200px;
margin:auto;
}

.blog-header{
text-align:center;
margin-bottom:50px;
}

.blog-header h1{
font-size:40px;
color:#1e293b;
}

.blog-header p{
color:#64748b;
margin-top:10px;
}

.blog-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
}

.blog-posts{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.blog-card{
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.05);
transition:.3s;
}

.blog-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.blog-card img{
width:100%;
height:200px;
object-fit:cover;
}

.blog-content{
padding:20px;
}

.blog-category{
font-size:12px;
color:#2563eb;
font-weight:600;
}

.blog-content h2{
font-size:18px;
margin:8px 0;
color:#1e293b;
}

.blog-meta{
font-size:12px;
color:#94a3b8;
margin-top:10px;
}

/* Sidebar */

.blog-sidebar{
position:sticky;
top:100px;
}

.sidebar-box{
background:#fff;
padding:20px;
border-radius:12px;
margin-bottom:25px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.sidebar-box h3{
margin-bottom:15px;
}

.sidebar-box ul{
list-style:none;
padding:0;
}

.sidebar-box li{
margin-bottom:10px;
}

.sidebar-box a{
text-decoration:none;
color:#334155;
}

.sidebar-box a:hover{
color:#2563eb;
}

/* Responsive */

@media(max-width:900px){

.blog-layout{
grid-template-columns:1fr;
}

.blog-posts{
grid-template-columns:1fr;
}

}

/* ================= HEADER ================= */

.dh-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  z-index: 999;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1200px;
  margin: auto;
}

.site-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.main-nav {
  display: flex;
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #334155;
  font-weight: 500;
  transition: .3s;
}

.nav-menu li a:hover {
  color: #2563eb;
}

/* BUTTONS */

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-primary:hover {
  background: #1e40af;
}

.btn-text {
  margin-right: 10px;
  color: #334155;
  text-decoration: none;
}

/* NAV ACTIONS */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* MOBILE TOGGLE */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  transition: .3s;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    display: none;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }

  .main-nav.active {
    display: flex;
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .nav-actions a {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.testimonial-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
}

.testimonial-header p {
  color: #64748b;
  margin-top: 10px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
}

.testimonial-card p {
  font-size: 18px;
  color: #334155;
  margin-bottom: 25px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.user h4 {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.user span {
  font-size: 14px;
  color: #64748b;
}

/* ARROWS */

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2563eb;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.prev:hover,
.next:hover {
  background: #1e40af;
}

.prev { left: -20px; }
.next { right: -20px; }

/* RESPONSIVE */

@media (max-width: 768px) {
  .testimonial-card {
    padding: 25px;
  }

  .prev,
  .next {
    display: none;
  }
}
