﻿body{
  margin:0;
  font-family: Vazirmatn, sans-serif;
  direction: rtl;
  background:#0b1220;
}

/* ================= HEADER ================= */
.header{
  width:95%;
  margin:18px auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 25px;

  background:#ffffff;
  border-radius:16px;

  box-shadow:0 12px 35px rgba(0,0,0,0.15);

  border:1px solid #eee;
}

/* ================= LOGO ================= */
.logo{
  font-size:22px;
  font-weight:900;
  color:#111;
}

.logo span{
  color:#2d6cff;
}

/* ================= MENU (BIG CLEAN BUTTONS) ================= */
.menu{
  display:flex;
  gap:18px;
}

.menu a{
  text-decoration:none;

  color:#111;
  font-size:16px;
  font-weight:700;

  padding:12px 20px;
  border-radius:999px;

  transition:0.25s ease;

  position:relative;
}

/* hover */
.menu a:hover{
  background:#111;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* active */
.menu a.active{
  background:#111;
  color:#fff;
}

/* ================= LEFT SIDE ================= */
.left{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-size:13px;
  color:#333;
  gap:6px;
}

/* SOCIAL */
.social{
  display:flex;
  gap:10px;
}

.social a{
  width:36px;
  height:36px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:#f5f5f5;

  transition:0.25s;
}

/* hover social */
.social a:hover{
  background:#111;
  color:#fff;
  transform:scale(1.1);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .header{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

  .left{
    align-items:center;
  }

  .menu{
    flex-wrap:wrap;
    justify-content:center;
  }

  .contact,
.phone{
  direction: rtl;
  unicode-bidi: plaintext;
}
}


body{
  margin:0;
  font-family: Vazirmatn, sans-serif;
  direction: rtl;
  background:#0b1220;
}

/* ================= HEADER ================= */
.header{
  width:95%;
  margin:18px auto;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 25px;

  background:#ffffff;
  border-radius:16px;

  box-shadow:0 12px 35px rgba(0,0,0,0.15);
}

/* ================= LOGO ================= */
.logo{
  font-size:22px;
  font-weight:900;
  color:#111;
}

.logo span{
  color:#2d6cff;
}

/* ================= MENU ================= */
.menu{
  display:flex;
  gap:18px;
}

.menu a{
  text-decoration:none;

  color:#111;
  font-size:16px;
  font-weight:700;

  padding:12px 20px;
  border-radius:999px;

  transition:0.25s ease;

  position:relative;
}

/* hover */
.menu a:hover{
  background:#111;
  color:#fff;
  transform:translateY(-3px);
}

/* active */
.menu a.active{
  background:#111;
  color:#fff;
}

/* ================= LEFT SIDE ================= */
.left{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  font-size:13px;
  color:#333;
  gap:6px;
}

/* SOCIAL */
.social{
  display:flex;
  gap:10px;
}

.social a{
  width:36px;
  height:36px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:10px;

  background:#f5f5f5;

  transition:0.25s;
}

/* hover */
.social a:hover{
  background:#111;
  color:#fff;
  transform:scale(1.1);
}

/* ================= TOGGLE (MOBILE) ================= */
.toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){

  .header{
    flex-direction:column;
    align-items:center;
    gap:12px;
    position:relative;
  }

  .toggle{
    display:block;
    position:absolute;
    top:15px;
    left:15px;
  }

  .menu{
    display:none;
    flex-direction:column;
    width:100%;
    text-align:center;
    gap:10px;
  }

  .menu.active{
    display:flex;
  }

  .menu a{
    width:100%;
  }

  .left{
    align-items:center;
  }
}










/* ===== HERO ===== */
.podcast-hero{
  text-align:center;
  padding:60px 20px;
  color:#fff;
}

.podcast-hero h1{
  font-size:32px;
  margin-bottom:10px;
}

/* ===== CONTAINER ===== */
.podcast-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:20px;
  padding:30px;
}

/* ===== CARD ===== */
.podcast-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:0.3s;
}

.podcast-card:hover{
  transform:translateY(-6px);
}

/* THUMB */
.thumb{
  height:160px;
  background:linear-gradient(135deg,#2d6cff,#7aa8ff);
}

/* CONTENT */
.content{
  padding:15px;
}

.content h3{
  margin:0;
  font-size:18px;
}

.content p{
  font-size:13px;
  color:#555;
  margin:8px 0;
}

/* BUTTON */
.content button{
  background:#111;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.content button:hover{
  background:#2d6cff;
}







.podcast-container{
  display:flex;
  gap:20px;
  justify-content:center;
  padding:30px;
  flex-wrap:wrap;
}

.podcast-card{
  width:300px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  transition:0.3s;
}

.podcast-card:hover{
  transform:translateY(-6px);
}

.podcast-card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.content{
  padding:15px;
}

.content h3{
  margin:0;
}

.content p{
  font-size:13px;
  color:#666;
}

button{
  margin-top:10px;
  width:100%;
  padding:10px;
  border:none;
  border-radius:10px;
  background:#111;
  color:#fff;
  cursor:pointer;
  transition:0.3s;
}

button:hover{
  background:#2d6cff;
}




/* ================= HERO ================= */

.hero-header{

    position:relative;

    min-height:700px;

    padding-top:120px;

}

.hero-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    z-index:1;
}

.hero-header::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.15);
    z-index:2;
}

.hero-content{
    position:absolute;
    top:50%;
    right:7%;
    transform:translateY(-50%);
    z-index:5;
}

.hero-glass{
    width:600px;
    padding:60px;
    border-radius:35px;

    background:rgba(255,255,255,.2);
    backdrop-filter:blur(1px);
    -webkit-backdrop-filter:blur(22px);

    border:1px solid rgba(255,255,255,.01);
    box-shadow:0 25px 80px rgba(0,0,0,.25);

    text-align:right;
    direction:rtl;
}

.hero-subtitle{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
    font-weight:500;
}

.hero-title{
    color:#fff;
    font-size:72px;
    font-weight:800;
    margin-bottom:25px;
}

.hero-text{
    color:#fff;
    font-size:22px;
    line-height:2;
    margin-bottom:35px;
}

.hero-glass .btn{
    font-size:18px;
    font-weight:700;
    color:#0d6efd;
}

@media(max-width:991px){

    .hero-header{
        min-height:650px;
    }

    .hero-content{
        right:50%;
        transform:translate(50%, -50%);
        width:90%;
    }

    .hero-glass{
        width:100%;
        padding:35px;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .hero-text{
        font-size:18px;
    }
}



/* ================= PODCAST PAGE ================= */

.podcast-page{
    background:#f5f8fc;
    padding:80px 8%;
}

.podcast-item{
    max-width:1200px;
    margin:0 auto 35px;
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    display:grid;
    grid-template-columns:45% 55%;
    box-shadow:0 20px 55px rgba(0,0,0,.08);
}

.podcast-img img{
    width:100%;
    height:100%;
    min-height:360px;
    object-fit:cover;
    display:block;
}

.podcast-info{
    padding:45px;
    text-align:right;
}

.episode{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.podcast-info h2{
    font-size:42px;
    font-weight:900;
    color:#102033;
    margin-bottom:15px;
}

.podcast-info h4{
    font-size:22px;
    color:#0d6efd;
    margin-bottom:20px;
}

.podcast-info p{
    font-size:17px;
    line-height:2.1;
    color:#555;
    margin-bottom:28px;
}

.podcast-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.btn-main,
.btn-outline{
    border-radius:30px;
    padding:12px 28px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    text-decoration:none;
}

.btn-main{
    background:#0d6efd;
    color:#fff;
    border:none;
    cursor:pointer;
}

.btn-main:hover{
    background:#084db8;
    color:#fff;
}

.btn-outline{
    border:1px solid #d5dce8;
    color:#102033;
    background:#fff;
}

.btn-outline:hover{
    border-color:#0d6efd;
    color:#0d6efd;
}

.podcast-info audio{
    width:100%;
    height:45px;
}

/* ================= MOBILE ================= */

@media(max-width:991px){

    .podcast-page{
        padding:35px 15px;
    }

    .podcast-item{
        grid-template-columns:1fr;
        border-radius:22px;
        margin-bottom:28px;
    }

    .podcast-img img{
        height:230px;
        min-height:auto;
    }

    .podcast-info{
        padding:25px 20px;
    }

    .podcast-info h2{
        font-size:30px;
    }

    .podcast-info h4{
        font-size:18px;
        line-height:1.8;
    }

    .podcast-info p{
        font-size:15px;
        line-height:2;
    }

    .podcast-buttons{
        flex-direction:column;
        gap:12px;
    }

    .btn-main,
    .btn-outline{
        width:100%;
        display:block;
        text-align:center;
    }

    .podcast-info audio{
        margin-top:8px;
    }
}