 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      background:#000;
      font-family:'Poppins', sans-serif;
    }

    .hero-section{
      min-height:100vh;
      background:
      linear-gradient(to right, rgba(0,0,0,0.95) 25%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.6) 100%),
      url('../image/banner-background.png') center center/cover no-repeat;
      position:relative;
      overflow:hidden;
    }

    /* Navbar */
    .custom-navbar{
      padding:25px 0;
      position:relative;
      z-index:10;
    }

    .navbar-brand img{
      width:150px;
    }

    .navbar-nav .nav-link{
      color:#fff;
      margin:0 18px;
      font-size:17px;
      font-weight:400;
      transition:0.3s;
    }

    .navbar-nav .nav-link:hover{
      color:#d6ab57;
    }
	
	
	/* Dropdown */
.custom-navbar .dropdown-menu{
    background:#000;
    border:none;
    border-radius:8px;
    min-width:220px;
    padding:10px 0;
    margin-top:15px;
}

.custom-navbar .dropdown-item{
    color:#fff;
    font-size:16px;
    padding:10px 20px;
    transition:0.3s;
}

.custom-navbar .dropdown-item:hover{
    background:#d6ab57;
    color:#000;
}

.custom-navbar .dropdown-toggle::after{
    margin-left:8px;
    vertical-align:middle;
}

/* Show on hover (Desktop) */
@media (min-width:992px){

    .navbar .dropdown:hover>.dropdown-menu{
        display:block;
        margin-top:0;
    }

    .navbar .dropdown-menu{
        display:none;
    }

}

    /* Hero Content */
    .hero-content{
      min-height:calc(100vh - 100px);
      display:flex;
      align-items:center;
      position:relative;
      z-index:2;
    }

   


    .hero-text h1 span{
      color:#d6ab57;
      display:block;
    }

    .hero-text p{
      color:#d7d7d7;
      font-size:14px;
      line-height:1.4;
      max-width:850px;
      margin-bottom:40px;
    }

    .hero-btns{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }

    .btn-gold{
     background: #d6ab57;
    color: #000;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 500;
    height: 42px;
    border: none;
    transition: 0.4s;
    }
    
    /* Mobile */
@media (max-width: 767px){
    .btn-gold{
        height: 62px;
    }
}

    .btn-gold:hover{
      background:#fff;
      color:#000;
    }

    .btn-outline-custom{
      border:1px solid rgba(255,255,255,0.5);
      color:#fff;
       padding: 10px 12px;
	  height: 42px;
      font-size:16px;
      transition:0.4s;
    }

    .btn-outline-custom:hover{
      background:#fff;
      color:#000;
    }

    /* Book Image */
    .book-image{
      text-align:center;
      position:relative;
    }

    .book-image img{
      width:100%;
      max-width:320px;
      filter:drop-shadow(0 20px 35px rgba(0,0,0,0.8));
      animation:floatBook 4s ease-in-out infinite;
    }

    @keyframes floatBook{
      0%{
        transform:translateY(0px);
      }
      50%{
        transform:translateY(-15px);
      }
      100%{
        transform:translateY(0px);
      }
    }

    /* Responsive */
    @media(max-width:992px){

      .hero-section{
        padding-bottom:60px;
      }

      .hero-content{
        text-align:center;
        padding-top:50px;
      }

      .hero-text h1{
        font-size:55px;
      }

      .hero-text p{
        font-size:18px;
        margin:auto auto 35px;
      }

      .hero-btns{
        justify-content:center;
      }

      .book-image{
        margin-top:60px;
      }

      .navbar-nav{
        background:#000;
        padding:20px;
        margin-top:15px;
      }
    }

    @media(max-width:576px){

      .hero-text h1{
        font-size:42px;
      }

      .hero-text p{
        font-size:16px;
      }

      .btn-gold,
      .btn-outline-custom{
        width:100%;
      }
    }
	
	
	
	
	 /* ===============================
       SECRET SECTION
    ================================== */

    .secreat-section{
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:40px 15px;
      background:#000;
    }

    .secreat-box{
      width:100%;
      max-width:1300px;
      border:3px solid #d4a84f;
      border-radius:40px;
      padding:60px;
      background:#000;
      position:relative;
      overflow:hidden;
    }

    .secreat-image img{
      width:100%;
      border-radius:8px;
      object-fit:cover;
    }

    .secreat-content{
      color:#fff;
      text-align:center;
      padding-left:30px;
    }

    .secreat-title{
      font-family: 'Cinzel', serif;
      font-size:48px;
      line-height:1.1;
      font-weight:600;
      margin-bottom:25px;
      letter-spacing:1px;
    }

    .secreat-subtitle{
      color:#d4a84f;
      font-size:20px;
      margin-bottom:30px;
      font-weight:400;
    }

    .secreat-desc{
      font-size:15px;
      line-height:1.4;
      color:#f2f2f2;
      margin-bottom:35px;
    }

    .secreat-input-box{
      position:relative;
      margin-bottom:35px;
    }

    .secreat-input-box input{
      width:100%;
      height:56px;
      background:#050505;
      border:2px solid #d4a84f;
      border-radius:60px;
      padding-left:80px;
      padding-right:20px;
      color:#fff;
      font-size:18px;
      outline:none;
    }

    .secreat-input-box input::placeholder{
      color:#777;
    }

    .secreat-mail-icon{
      position:absolute;
      left:30px;
      top:50%;
      transform:translateY(-50%);
      color:#d4a84f;
      font-size:34px;
    }

    .secreat-btn{
    width: 100%;
    height: 55px;
    border: none;
    border-radius: 60px;
    background: #ddb866;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    transition: 0.3s;
    }

    .secreat-btn:hover{
      background:#cda34c;
    }

    .secreat-bottom-text{
      color:#d4a84f;
      font-size:20px;
      margin-top:28px;
    }

    /* ===============================
       RESPONSIVE
    ================================== */

    @media(max-width:991px){

      .secreat-box{
        padding:35px 25px;
      }

      .secreat-content{
        padding-left:0;
        margin-top:40px;
      }

      .secreat-title{
        font-size:42px;
      }

      .secreat-desc{
        font-size:18px;
      }

      .secreat-input-box input{
        height:65px;
        font-size:18px;
      }

      .secreat-btn{
        height:65px;
        font-size:22px;
      }
    }

    @media(max-width:576px){

      .secreat-box{
        border-radius:25px;
        padding:25px 18px;
      }

      .secreat-title{
        font-size:32px;
      }

      .secreat-subtitle{
        font-size:16px;
      }

      .secreat-desc{
        font-size:16px;
        line-height:1.6;
      }

      .secreat-input-box input{
        padding-left:60px;
      }

      .secreat-mail-icon{
        left:22px;
        font-size:24px;
      }

      .secreat-bottom-text{
        font-size:16px;
      }
    }
	
	
	
	
	/* ===================================
       FEATURED SECTION
    ====================================== */

    .feature-section{
      padding:100px 0;
      background:
      linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.92)),
      url('feature-title.png');
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      position:relative;
      overflow:hidden;
    }

    .feature-heading{
      text-align:center;
      margin-bottom:60px;
    }

    .feature-heading h2{
      font-family:'Cinzel', serif;
      font-size:38px;
      color:#fff;
      margin-bottom:1px;
      font-weight:600;
      letter-spacing:2px;
    }

    .feature-heading p{
      color:#d6a84d;
      font-size:17px;
      margin:0;
      font-weight:400;
    }

    /* ===================================
       CARD
    ====================================== */

    .feature-card{
      background:#050505;
      border-radius:10px;
      overflow:hidden;
      padding:18px 18px 30px;
      height:100%;
      transition:0.4s ease;
      border:1px solid rgba(255,255,255,0.03);
    }

    .feature-card:hover{
      transform:translateY(-10px);
      box-shadow:0 10px 40px rgba(214,168,77,0.15);
    }

    .feature-book-img{
      overflow:hidden;
      border-radius:4px;
      margin-bottom:28px;
    }

    .feature-book-img img{
      width:100%;
      height:560px;
      object-fit:cover;
      transition:0.4s;
    }

    .feature-card:hover .feature-book-img img{
      transform:scale(1.05);
    }

    .feature-book-title{
      font-family:'Cinzel', serif;
      color:#d6a84d;
      font-size:34px;
      line-height:1.2;
      text-align:center;
      margin-bottom:12px;
      font-weight:500;
    }

    .feature-book-desc{
      color:#d6d6d6;
      text-align:center;
      font-size:22px;
      line-height:1.6;
      margin-bottom:13px;
      min-height:70px;
    }

    .feature-btn{
      text-align:center;
    }

    .feature-btn a{
      color:#d6a84d;
      text-decoration:none;
      font-size:22px;
      font-weight:500;
      letter-spacing:1px;
      transition:0.3s;
    }

    .feature-btn a:hover{
      color:#fff;
    }

    /* ===================================
       RESPONSIVE
    ====================================== */

    @media(max-width:1399px){

      .feature-heading h2{
        font-size:38px;
      }

      .feature-book-title{
        font-size:20px;
      }

      .feature-book-desc{
        font-size:12px;
      }

      .feature-btn a{
        font-size:13px;
      }

      .feature-book-img img{
        height:330px;
      }
    }

    @media(max-width:991px){

      .feature-section{
        padding:70px 0;
      }

      .feature-heading h2{
        font-size:46px;
      }

      .feature-heading p{
        font-size:20px;
      }

      .feature-card{
        margin-bottom:30px;
      }

      .feature-book-img img{
        height:420px;
      }

      .feature-book-title{
        min-height:auto;
      }

      .feature-book-desc{
        min-height:auto;
      }
    }

    @media(max-width:576px){

      .feature-heading h2{
        font-size:34px;
      }

      .feature-heading p{
        font-size:16px;
      }

      .feature-book-title{
        font-size:24px;
      }

      .feature-book-desc{
        font-size:16px;
      }

      .feature-btn a{
        font-size:16px;
      }

      .feature-book-img img{
        height:auto;
      }
    }




.secret-book-slider{
      padding:90px 0;
      min-height:100vh;
      display:flex;
      align-items:center;
      background:#000;
    }

    .swiper{
      width:100%;
      padding-bottom:70px;
    }

    .book-slide{
      background:#000;
    }

    .secret-subtitle{
      color:#d4a84f;
      font-size:18px;
      margin-bottom:20px;
      letter-spacing:1px;
    }

    .secret-title{
      font-family:'Cormorant Garamond', serif;
      color:#fff;
      font-size:45px;
      line-height:0.95;
      margin-bottom:35px;
      font-weight:500;
    }

    .secret-desc{
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.4;
    max-width: 650px;
    margin-bottom: 25px;
    }

    .secret-btns{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .secret-btn{
    padding: 9px 31px;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #d4a84f;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500
    }

    .secret-btn-primary{
      background:#d4a84f;
      color:#000;
    }

    .secret-btn-primary:hover{
      background:#fff;
      color:#000;
    }

    .secret-btn-outline{
      color:#fff;
      background:transparent;
    }

    .secret-btn-outline:hover{
      background:#d4a84f;
      color:#000;
    }

    /* Right side */

    .secret-book-wrapper{
      position:relative;
      text-align:center;
    }

    .secret-book-img{
      width:100%;
      max-width:380px;
      filter:drop-shadow(0 15px 35px rgba(0,0,0,0.8));
    }

    /* Review Card */

    .secret-review-card{
    position: absolute;
    right: 16px;
    bottom: -52px;
    width: 284px;
    background: #050505;
    border: 1px solid #c89b44;
    border-radius: 14px;
    padding: 2px;
    color: #d8d8d8;
    }

    .secret-quote{
      font-size:70px;
      color:#d4a84f;
      line-height:1;
      font-family:'Cormorant Garamond', serif;
      margin-bottom:10px;
    }

    .secret-review-text{
      font-size:16px;
      line-height:1.9;
      margin-bottom:25px;
    }

    .secret-review-name{
      color:#d4a84f;
      font-size:22px;
      font-family:'Cormorant Garamond', serif;
    }

    .secret-stars{
      color:#d4a84f;
      letter-spacing:3px;
      font-size:13px;
    }

    /* Swiper Navigation */

    .swiper-button-next,
    .swiper-button-prev{
      color:#d4a84f;
    }

    .swiper-pagination-bullet{
      background:#fff;
      opacity:0.5;
    }

    .swiper-pagination-bullet-active{
      background:#d4a84f;
      opacity:1;
    }

    /* Responsive */

    @media(max-width:991px){

      .book-slide{
        text-align:center;
      }

      .secret-title{
        font-size:60px;
      }

      .secret-desc{
        margin:auto;
      }

      .secret-btns{
        justify-content:center;
      }

      .secret-book-wrapper{
        margin-top:70px;
      }

      .secret-review-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin:30px auto 0;
      }

    }

    @media(max-width:576px){

      .secret-title{
        font-size:42px;
      }

      .secret-btn{
        width:100%;
      }

      .secret-review-card{
        width:100%;
      }

    }
	
	
	
	
	
	
	 .secret-archive-section{
      position:relative;
      padding:40px 0;
      background: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 0%)), url(../image/unlock-what.png);
      background-size:cover;
      background-position:center;
      overflow:hidden;
    }

    /* Side shadow figures */
    .secret-archive-section::before,
    .secret-archive-section::after{
      content:"";
      position:absolute;
      top:0;
      width:260px;
      height:100%;
      background:linear-gradient(to right, rgba(0,0,0,0.95), transparent);
      z-index:1;
    }

    .secret-archive-section::after{
      right:0;
      transform:rotate(180deg);
    }

    .secret-archive-section::before{
      left:0;
    }

    .secret-container{
      position:relative;
      z-index:2;
    }

    /* Heading */

    .secret-top-title{
      color:#d2a54d;
      text-align:center;
      font-size:24px;
      letter-spacing:1px;
      margin-bottom:10px;
      font-family:'Cormorant Garamond', serif;
      text-transform:uppercase;
    }

    .secret-main-title{
      color:#fff;
      text-align:center;
      font-size:43px;
      line-height:1;
      margin-bottom:70px;
      font-family:'Cormorant Garamond', serif;
      font-weight:500;
      text-transform:uppercase;
    }

    /* Card */

    .secret-card{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      background:#111;
      transition:0.4s;
      height:100%;
    }

    .secret-card:hover{
      transform:translateY(-10px);
    }

    .secret-card-img{
      position:relative;
      overflow:hidden;
      border-radius:26px;
    }

    .secret-card-img img{
      width:100%;
      height:420px;
      object-fit:cover;
      transition:0.5s;
      filter:brightness(0.72);
    }

    .secret-card:hover .secret-card-img img{
      transform:scale(1.08);
    }

    .secret-card-overlay{
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgb(0 0 0 / 0%) 10%, rgba(0, 0, 0, 0.1) 70%);      
    }

    /* Icon Circle */

    .secret-icon{
      width:90px;
      height:90px;
      border-radius:50%;
      border:2px solid #c7973d;
      background:#070707;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#d2a54d;
      font-size:38px;
      margin:-45px auto 25px;
      position:relative;
      z-index:5;
      box-shadow:0 0 20px rgba(210,165,77,0.25);
    }

    /* Content */

    .secret-content{
      text-align:center;
      padding:0 20px 30px;
    }

    .secret-card-title{
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    padding-top: 50px;
    }

    .secret-card-text{
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.2;
    max-width: 240px;
    margin: auto;
    }

    /* Responsive */

    @media(max-width:1200px){

      .secret-main-title{
        font-size:65px;
      }

    }

    @media(max-width:991px){

      .secret-main-title{
        font-size:52px;
        margin-bottom:50px;
      }

      .secret-card{
        margin-bottom:35px;
      }

    }

    @media(max-width:576px){

      .secret-archive-section{
        padding:70px 0;
      }

      .secret-top-title{
        font-size:22px;
      }

      .secret-main-title{
        font-size:38px;
      }

      .secret-card-img img{
        height:340px;
      }

      .secret-card-title{
        font-size:24px;
      }

      .secret-card-text{
        font-size:16px;
      }

    }
	
	
	
	
	
	 .vadhan-about{
      position:relative;
      padding:100px 0;
      background-color:#000;
      background-size:cover;
      background-position:center;
      overflow:hidden;
    }

    /* Decorative background text effect */
    .vadhan-about::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
    }

    .vadhan-container{
      position:relative;
      z-index:2;
    }

    /* LEFT IMAGE CARD */

    .vadhan-image-box{
      position:relative;
      border:2px solid rgba(195,139,51,0.75);
      border-radius:40px;
      overflow:hidden;
      padding:18px;
      background:rgba(15,15,15,0.85);
      box-shadow:0 0 60px rgba(195,139,51,0.15);
    }

    .vadhan-image-box::before,
    .vadhan-image-box::after{
      content:"✧";
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      color:#c38b33;
      font-size:34px;
      z-index:5;
    }

    .vadhan-image-box::before{
      top:-20px;
    }

    .vadhan-image-box::after{
      bottom:-20px;
    }

    .vadhan-image{
      position:relative;
      border-radius:28px;
      overflow:hidden;
    }

    .vadhan-image img{
      width:100%;
      height:760px;
      object-fit:cover;
      filter:brightness(0.92);
    }

    .vadhan-image::after{
      content:"";
      position:absolute;
      inset:0;
      background:
      linear-gradient(to top,
      rgba(0,0,0,0.8),
      rgba(0,0,0,0.05));
    }

    /* RIGHT CONTENT */

    .vadhan-content{
      padding-left:60px;
      color:#fff;
    }

    .vadhan-title{
      font-family:'Cormorant Garamond', serif;
      font-size:67px;
      line-height:1;
      margin-bottom:10px;
      font-weight:600;
      letter-spacing:2px;
    }

    .vadhan-divider{
      width:160px;
      height:2px;
      background:#b8832f;
      margin:18px auto 20px;
      position:relative;
    }

    .vadhan-divider::before{
      content:"✦";
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      background:#050505;
      padding:0 10px;
      color:#c89b44;
      font-size:18px;
    }

    .vadhan-subtitle{
      text-align:center;
      color:#ececec;
      font-style:italic;
      margin-bottom:30px;
      font-size:15px;
      font-weight:300;
    }

    .vadhan-small-divider{
      width:240px;
      height:1px;
      background:rgba(200,155,68,0.4);
      margin:0 auto 35px;
      position:relative;
    }

    .vadhan-small-divider::before{
      content:"✦";
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      color:#c89b44;
      background:#050505;
      padding:0 10px;
      font-size:14px;
    }

    .vadhan-content p{
    font-size: 14px;
    line-height: 1.4;
    color: #ececec;
    margin-bottom: 32px;
    text-align: center;
    }

    /* Social Icons */

    .vadhan-social{
      display:flex;
      justify-content:center;
      gap:20px;
      margin:35px 0 45px;
    }

    .vadhan-social a{
      width:62px;
      height:62px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
      color:#d2a54d;
      font-size:26px;
      text-decoration:none;
      transition:0.3s;
      background:rgba(15,15,15,0.85);
    }

    .vadhan-social a:hover{
      background:#c38b33;
      color:#000;
      transform:translateY(-5px);
    }

    /* Buttons */

    .vadhan-btns{
      display:flex;
      justify-content:center;
      gap:20px;
      flex-wrap:wrap;
    }

    .vadhan-btn{
    min-width: 183px;
    padding: 10px 32px;
    border-radius: 18px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    border: 1px solid #c89b44;
    }

    .vadhan-btn-primary{
      background:#c38b33;
      color:#fff;
    }

    .vadhan-btn-primary:hover{
      background:#fff;
      color:#000;
    }

    .vadhan-btn-outline{
      background:transparent;
      color:#fff;
    }

    .vadhan-btn-outline:hover{
      background:#c38b33;
      color:#000;
    }

    .vadhan-btn i{
      margin-left:10px;
    }

    /* Feather Decoration */

    .vadhan-feather{
      position:absolute;
      right:40px;
      bottom:100px;
      opacity:0.18;
      font-size:180px;
      color:#c89b44;
      transform:rotate(-8deg);
    }

    /* Responsive */

    @media(max-width:1200px){

      .vadhan-title{
        font-size:85px;
      }

      .vadhan-content{
        padding-left:30px;
      }

    }

    @media(max-width:991px){

      .vadhan-about{
        padding:70px 0;
      }

      .vadhan-content{
        padding-left:0;
        margin-top:60px;
      }

      .vadhan-title{
        text-align:center;
        font-size:70px;
      }

      .vadhan-image img{
        height:600px;
      }

    }

    @media(max-width:576px){

      .vadhan-title{
        font-size:48px;
      }

      .vadhan-subtitle{
        font-size:18px;
      }

      .vadhan-content p{
        font-size:16px;
      }

      .vadhan-btn{
        min-width:100%;
      }

      .vadhan-image img{
        height:450px;
      }

      .vadhan-social a{
        width:55px;
        height:55px;
        font-size:22px;
      }

    }




.vadhan-footer{
      position:relative;
      background:#000;
      padding:90px 0 70px;
      overflow:hidden;
    }

    .vadhan-footer::before{
      content:"";
      position:absolute;
      inset:0;
      background:
      radial-gradient(circle at center,
      rgba(197,145,56,0.08),
      transparent 60%);
      pointer-events:none;
    }

    .vadhan-footer .container{
      position:relative;
      z-index:2;
    }

    /* Column Divider */

    .footer-divider{
      position:relative;
      height:100%;
      padding:0 60px;
    }

    .footer-divider::after{
      content:"";
      position:absolute;
      right:0;
      top:0;
      width:1px;
      height:100%;
      background:rgba(201,155,68,0.25);
    }

    .footer-divider::before{
      content:"✦";
      position:absolute;
      right:-10px;
      top:50%;
      transform:translateY(-50%);
      color:#d2a54d;
      font-size:20px;
      background:#000;
      padding:8px 0;
      z-index:5;
    }

    /* Logo */

    .footer-logo{
      font-family:'Cormorant Garamond', serif;
      font-size:88px;
      color:#fff;
      text-align:center;
      margin-bottom:20px;
      font-weight:600;
      letter-spacing:2px;
    }

    .footer-tagline{
    color: #d6a84d;
    font-size: 19px;
    line-height: 1.3;
    text-align: center;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 35px;
    }

    .footer-gold-divider{
      width:220px;
      height:1px;
      background:rgba(210,165,77,0.35);
      margin:0 auto;
      position:relative;
    }

    .footer-gold-divider::before{
      content:"✦";
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      color:#d2a54d;
      background:#000;
      padding:0 10px;
      font-size:16px;
    }

    /* Quick Links */

    .footer-title{
      color:#d2a54d;
      font-size:22px;
      font-family:'Cormorant Garamond', serif;
      margin-bottom:22px;
      text-transform:uppercase;
    }

    .footer-links-divider{
      width:180px;
      height:1px;
      background:rgba(210,165,77,0.35);
      margin-bottom:40px;
      position:relative;
    }

    .footer-links-divider::before{
      content:"✦";
      position:absolute;
      left:50%;
      top:50%;
      transform:translate(-50%,-50%);
      color:#d2a54d;
      background:#000;
      padding:0 10px;
      font-size:15px;
    }

    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
    }

    .footer-links li{
      margin-bottom:10px;
    }

    .footer-links a{
      color:#f2f2f2;
      text-decoration:none;
      font-size:16px;
      transition:0.3s;
      font-weight:300;
    }

    .footer-links a:hover{
      color:#d2a54d;
      padding-left:8px;
    }

    /* Right Content */

    .footer-right-title{
      font-family:'Cormorant Garamond', serif;
      color:#fff;
      font-size:60px;
      line-height:1.1;
      margin-bottom:25px;
      text-transform:uppercase;
    }

    .footer-right-text{
      color:#f1f1f1;
     font-size: 14px;
    line-height: 1.4;
      max-width:620px;
      margin-bottom:40px;
    }

    /* Email Box */

    .footer-input-box{
      position:relative;
      margin-bottom:30px;
    }

    .footer-input-box i{
      position:absolute;
      left:40px;
      top:50%;
      transform:translateY(-50%);
      color:#d2a54d;
      font-size:34px;
    }

    .footer-input{
      width:100%;
      height:95px;
      border-radius:60px;
      border:2px solid #d2a54d;
      background:transparent;
      padding:0 35px 0 110px;
      color:#fff;
      font-size:34px;
      outline:none;
    }

    .footer-input::placeholder{
      color:#767676;
    }

    /* Button */

    .footer-btn{
      width:100%;
      height:95px;
      border:none;
      border-radius:60px;
      background:#ddb864;
      color:#000;
      font-size:34px;
      font-weight:500;
      transition:0.3s;
    }

    .footer-btn:hover{
      background:#fff;
    }

    /* Responsive */

    @media(max-width:1400px){

      .footer-logo{
        font-size: 60px;
        font-weight: 500;
      }

      .footer-right-title{
        font-size:26px;
		text-align:center;
      }

      .footer-input,
      .footer-btn{
        height: 54px;
        font-size: 19px;
      }

    }

    @media(max-width:991px){

      .footer-divider{
        padding:0;
        margin-bottom:60px;
      }

      .footer-divider::after,
      .footer-divider::before{
        display:none;
      }

      .footer-right-title{
        font-size:42px;
      }

      .footer-links a{
        font-size:24px;
      }

    }

    @media(max-width:576px){

      .vadhan-footer{
        padding:70px 0;
      }

      .footer-logo{
        font-size:52px;
      }

      .footer-tagline{
        font-size:22px;
      }

      .footer-title{
        font-size:34px;
      }

      .footer-right-title{
        font-size:34px;
      }

      .footer-right-text{
        font-size:18px;
		text-align:center;
      }

      .footer-input{
        height:70px;
        font-size:18px;
        padding-left:75px;
      }

      .footer-input-box i{
        left:28px;
        font-size:24px;
      }

      .footer-btn{
        height:70px;
        font-size:22px;
      }

      .footer-links a{
        font-size:22px;
      }

    }


/* MOBILE */
@media(max-width:576px){

  /* Quick Links Title Center */
  .footer-title{
    text-align:center;
  }

  .footer-links-divider{
    margin:0 auto 35px;
  }

  /* Two Column Links */
  .footer-links{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px 10px;
    text-align:center;
  }

  .footer-links li{
    margin-bottom:0;
  }

  .footer-links a{
    font-size:20px;
  }

}

.book-title {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 45px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .book-title {
         font-size: 30px;
    }
}

.book-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-image img{
    max-width: 100%;
    height: auto;
}



/* =========== BUTTONS =========== */
.book-btns {
    display: flex;
    gap: 18px;
    margin-top: 35px;
}

.btn-buy {
    display: inline-block;
    background: #D4A44B;
    color: #000;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

@media (max-width: 767px) {
    .btn-buy {
        padding: 16px 20px;
    }
}

.btn-buy:hover {
    background: #fff;
    color: #000;
}

.btn-trailer {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 38px;
    text-decoration: none;
    transition: .3s;
}

.btn-trailer:hover {
    background: #fff;
    color: #000;
}




/* =========== BOOK INFO =========== */
.book-info {
    max-width: 455px;
    padding: 9px;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    background: #111;
    border-radius: 6px;
    overflow: hidden;
}

.info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    padding: 15px 25px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.info-box:last-child {
    border-right: none;
}

.info-box img {
    width: 25px;
}



.bookshow{
	padding-top:50px; 
	padding-bottom:50px;
}



/*====================================
            BLOG BANNER
====================================*/

.blog-banner {

    padding: 60px 0;

    background: url("https://www.authorvadhan.com/wp-content/uploads/2026/07/blog-banner.png") center center/cover no-repeat;

    position: relative;

}

.blog-banner::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .25);

}

.blog-banner .container {

    position: relative;

    z-index: 2;

}

.blog-banner-title {

    color: #D6A64B;

    font-size: 55px;

    font-family: Georgia, serif;

    margin-bottom: 25px;

    letter-spacing: 2px;

}

.blog-divider {

    width: 120px;
    height: 3px;
    background: #D6A64B;
    margin: 0 auto 35px;
    border-radius: 2px;

}

.blog-banner-text {

    color: #fff;
    font-size: 21px;
    line-height: 1.4;
    max-width: 850px;
    font-weight: 400;
    margin: auto;

}

/*================ Responsive ================*/
@media(max-width:991px) {

    .blog-banner {

        padding: 100px 0;

    }

    .blog-banner-title {

        font-size: 46px;

    }

    .blog-banner-text {

        font-size: 22px;

    }

}

@media(max-width:576px) {

    .blog-banner {

        padding: 80px 0;

    }

    .blog-banner-title {

        font-size: 34px;

    }

    .blog-divider {

        width: 90px;

    }

    .blog-banner-text {

        font-size: 17px;

        line-height: 1.7;

    }

}

/*====================================
            BLOG SECTION
====================================*/

.blogs {

    padding: 100px 0;

    background: #1A1A1A;
    

}

.blog-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
    border: 1px solid #d6a64b;
    height: 100%;

}

.blog-card:hover {

    transform: translateY(-8px);

}

.blog-img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    display: block;

}

.blog-content {

    padding: 25px;

}

.blog-author {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 20px;

}

.blog-author img {

    width: 45px;

    height: 45px;

    border-radius: 50%;

}

.blog-author h6 {

    color: #fff;

    margin: 0;

    font-size: 16px;

}

.blog-author span {

    color: #999;

    font-size: 13px;

}

.blog-content h3 {

    color: #fff;

    font-size: 24px;

    font-family: Georgia, serif;

    margin-bottom: 15px;

    line-height: 1.4;

}

.blog-content p {

    color: #cfcfcf;

    line-height: 1.4;

    margin-bottom: 20px;
		font-size: 15px;

}

.blog-content a {

    color: #fff;

    text-decoration: none;

    font-weight: 600;


}

.blog-content a:hover {

    color: #fff;

}



.load-more-btn {
    border: none;
    border-radius: 60px;
    background: #ddb864;
    color: #000;
    font-size: 19px;
    font-weight: 500;
    padding: 14px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.load-more-btn:hover {
    background: #000;
    color: #ddb864;
    transform: translateY(-2px);
}

.load-more-btn:focus {
    outline: none;
    box-shadow: none;
}

.load-more-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.8;
}










/*============ REVIEW PAGE ============*/

/* READER REVIEW */
.reader-review {

    background: url("https://www.authorvadhan.com/wp-content/uploads/2026/07/blog-banner.png") center/cover no-repeat;

    padding: 80px 0 100px;

}

.section-heading {

    text-align: center;

    margin-bottom: 60px;

}

.section-heading h2 {

    color: #D6A64B;

    font-family: Georgia, serif;

    font-size: 58px;

    line-height: 1.1;

    margin-bottom: 25px;

}

.heading-line {

    width: 90px;

    height: 3px;

    background: #D6A64B;

    margin: auto;

}

.review-box {

    overflow: hidden;

}

.review-box img {

    width: 100%;

    display: block;

    transition: .35s;

}

.review-box:hover img {

    transform: scale(1.03);

}

/* Responsive */

@media(max-width:991px) {

    .reader-review {

        padding: 70px 0;

    }

    .section-heading h2 {

        font-size: 42px;

    }

}

@media(max-width:576px) {

    .section-heading h2 {

        font-size: 30px;

    }

}

/* BOOKNERDS EDITORIAL */
.editorial {

    background: #242424;

    padding: 90px 0;

}

.editorial-heading {

    text-align: center;

    margin-bottom: 60px;

}

.editorial-heading h2 {

    color: #fff;

    font-size: 58px;

    font-family: Georgia, serif;

    line-height: 1.15;

    margin-bottom: 25px;

}


.editorial-heading123{

  color: #fff;
    font-family: Georgia, serif;
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 25px;
	text-transform: uppercase;

}

.editorial-line {

    width: 90px;

    height: 3px;

    background: #fff;

    margin: auto;

}

.editorial-video {

    overflow: hidden;

}

.editorial-video img {

    width: 100%;

    display: block;
    height: 400px;

    transition: .35s;

}

.editorial-video:hover img {

    transform: scale(1.03);

}

/*================ Responsive ================*/
@media(max-width:991px) {

    .editorial {

        padding: 70px 0;

    }

    .editorial-heading h2 {

        font-size: 42px;

    }

}

@media(max-width:576px) {

    .editorial-heading h2 {

        font-size: 30px;

    }

}

/* READER FEEDBACK */
.reader-feedback {

    background: #242424;

    padding: 80px 0 100px;

}

.feedback-card {

    background: #2b2b2b;

    border: 1px solid #8d6a28;

    border-radius: 6px;

    padding: 28px;

    height: 100%;

    transition: .35s;

}

.feedback-card:hover {

    transform: translateY(-8px);

    border-color: #D6A64B;

}

.feedback-user {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

}

.feedback-user img {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    object-fit: cover;

}

.feedback-user h5 {

    color: #fff;

    margin: 0;

    font-size: 24px;

    font-weight: 400;

}

.feedback-user span {

    color: #9b9b9b;

    font-size: 14px;

}

.feedback-card p {

    color: #d2d2d2;

    line-height: 1.8;

    font-size: 15px;

    margin-bottom: 18px;

}

.feedback-card a {

    color: #fff;

    text-decoration: none;

    font-style: italic;

    font-weight: 600;

}

.feedback-card a:hover {

    color: #D6A64B;

}

@media(max-width:991px) {

    .reader-feedback {

        padding: 60px 0;

    }

}







/* ================ MEDIA ================ */
/* MEDIA HERO  */
.media-hero {
    background: #000;
    padding: 45px 0;
}

.media-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.media-left {
    flex: 0 0 42%;
}

.media-right {
    flex: 0 0 58%;
}

.media-left h1 {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 600;
    line-height: 1.18;
    margin: 0;
}

.media-right img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/*========== Responsive ==========*/
@media(max-width:991px) {

    .media-wrapper {
        flex-direction: column;
    }

    .media-left,
    .media-right {
        flex: 100%;
        width: 100%;
    }

    .media-left {
        text-align: center;
        margin-bottom: 35px;
    }

    .media-left h1 {
        font-size: 42px;
    }

    .media-right img {
        height: auto;
    }

}

@media(max-width:576px) {

    .media-left h1 {
        font-size: 32px;
    }

}

/* MEDIA NEWS */
.media-news {

    background: #000;

    padding: 70px 0 100px;

}

.media-card {

    background: #2b2b2b;

    border: 1px solid #9b7b34;

    border-radius: 12px;

    overflow: hidden;

    height: 100%;

    transition: .35s;

}

.media-card:hover {

    transform: translateY(-8px);

    border-color: #D6A64B;

}

.media-card-img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;

}

.media-card-body {

    padding: 25px;

}

.media-card-body h4 {

    color: #fff;
    font-size: 20px;
    line-height: 26px;
    font-family: Georgia, serif;
    margin-bottom: 10px;

}

.media-card-body span {

    color: #9a9a9a;

    font-size: 13px;

    display: block;

    margin-bottom: 18px;

}

.media-card-body p {

color: #d2d2d2;
    line-height: 1.4;
    font-size: 15px;
    margin-bottom: 30px;

}

.media-btn {

    display: inline-block;

    padding: 10px 28px;

    background: #D6A64B;

    color: #000;

    border-radius: 30px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

.media-btn:hover {

    background: #fff;

    color: #000;

}



/*==========================
  MEDIA BANNER
==========================*/

.mediaban-section{
    background: #000 url('https://www.authorvadhan.com/wp-content/uploads/2026/07/media-banner-design-scaled.jpg') no-repeat center center;
    background-size: cover;
    min-height: 350px;
    position: relative;
    overflow: hidden;
}

.mediaban-content{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100%;
    min-height:350px;
    padding:60px;
}

.mediaban-title{
    color:#fff;
    font-family:Georgia, serif;
    font-size:58px;
    font-weight:700;
    line-height:1.12;
    letter-spacing:1px;
    text-transform:uppercase;
    margin:0;
}

.mediaban-image{
    height:500px;
}

.mediaban-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Large Screen */
@media (max-width:1400px){

    .mediaban-title{
        font-size:35px;
    }

}

/* Laptop */
@media (max-width:1200px){

    .mediaban-title{
        font-size:44px;
    }

}

/* Tablet */
@media (max-width:991px){

    .mediaban-content{
        min-height:auto;
        padding:60px 30px;
        justify-content:center;
        text-align:center;
    }

    .mediaban-title{
        font-size:38px;
    }

    .mediaban-image{
        height:420px;
    }

}

/* Mobile */
@media (max-width:576px){

    .mediaban-content{
        padding:40px 20px;
    }

    .mediaban-title{
        font-size:28px;
        line-height:1.3;
    }

    .mediaban-image{
        height:280px;
    }

}








/*====================================
        INTERVIEW HERO
====================================*/

.interview-hero {
	min-height: 350px;
    position: relative;
    background: url(https://www.authorvadhan.com/wp-content/uploads/2026/07/media-banner-design-scaled.jpg) center center / cover no-repeat rgb(0, 0, 0);
    overflow: hidden;
}

}

/* Golden Glow */

.interview-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 350px;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(164, 120, 25, .25) 0%,
            rgba(110, 70, 15, .12) 45%,
            transparent 75%);

    filter: blur(12px);
}

/* Layout */

.interview-grid {

    display: grid;
    grid-template-columns: 42% 58%;
    align-items: start;
    position: relative;
    z-index: 2;

}

.interview-content {

    padding-top: 40px;
    padding-left: 55px;
    padding-right: 40px;

}

.interview-content h1 {

    color: #fff;
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 1.05;
    margin-bottom: 22px;

}

.gold-line {

    width: 185px;
    height: 4px;

    background: #D6A64B;

    margin-bottom: 38px;

}

.interview-content p {
color: #fff;
    font-size: 15px;
    line-height: 1.3;
    max-width: 350px;

}

.interview-image {

    display: flex;

    justify-content: flex-end;

}

.interview-image img {

    width: 100%;

    max-width: 760px;

    height: 350px;

    object-fit: cover;

    object-position: center;

    display: block;

}

@media(max-width:991px) {

    .interview-grid {

        grid-template-columns: 1fr;

    }

    .interview-content {

        padding: 50px 20px;

        text-align: center;

    }

    .gold-line {

        margin: 25px auto;

    }

    .interview-content p {

        max-width: 100%;

    }

    .interview-image img {

        height: auto;

    }

}

/*=====================================
        INTERVIEW CARDS
=====================================*/

.interview-cards {

    position: relative;

    background: #000;

    padding: 70px 0 90px;

    overflow: hidden;

}

/* Golden Glow */

.interview-cards::before {

    content: "";

    position: absolute;

    width: 900px;

    height: 900px;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(circle,
            rgba(164, 120, 25, .30) 0%,
            rgba(100, 70, 15, .15) 45%,
            transparent 75%);

    filter: blur(12px);

}

.interview-cards .container {

    position: relative;

    z-index: 2;

}

.interview-card {

    background: #2d2d2d;

    border: 1px solid #c89b37;

    border-radius: 18px;

    overflow: hidden;

    height: 100%;

    transition: .3s;

}

.interview-card:hover {

    transform: translateY(-8px);

}

.interview-card img {

    width: 100%;

    height: 300px;

    object-fit: cover;

    display: block;

}

.card-content {

    padding: 28px;

}

.card-content h3 {

    color: #fff;

    font-size: 21px;

    line-height: 1.4;

    font-family: Georgia, serif;

    margin-bottom: 18px;

}

.card-content p {

color: #d8d8d8;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 28px;

}

.read-btn {

    display: inline-block;

    padding: 11px 32px;

    background: #D6A64B;

    color: #000;

    border-radius: 40px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

}

.read-btn:hover {

    background: #fff;

    color: #000;

}

@media(max-width:991px) {

    .interview-card img {

        height: 260px;

    }

}

@media(max-width:576px) {

    .interview-cards {

        padding: 50px 0;

    }

    .card-content {

        padding: 20px;

    }

    .card-content h3 {

        font-size: 24px;

    }

}









/*================ ABOUT AUTHOR ================*/
.about-author {

    background: #010000;
    padding: 50px 0;

}

.author-img {

    border: 2px solid #d9ab47;
    border-radius: 18px;
    overflow: hidden;

}

.author-img img {

    width: 100%;
    display: block;
    border-radius: 16px;

}

.author-content {

    padding-left: 40px;

}

.author-content h1 {

    font-family: "Cormorant Garamond", serif;
    font-size: 59px;
    color: #d9ab47;
    font-weight: 700;
    margin-bottom: 10px;

}

.title-line {

    display: block;
    width: 110px;
    height: 4px;
    background: #d9ab47;
    margin-bottom: 35px;

}

.author-content p {

    color: #ddd;
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 18px;
    font-family: 'Open Sans', sans-serif;

}

@media(max-width:991px) {

    .about-author {

        padding: 80px 0;

    }

    .author-content {

        padding-left: 0;
        margin-top: 45px;

    }

    .author-content h1 {

        font-size: 65px;

    }

    .author-content p {

        font-size: 18px;
        line-height: 1.9;

    }

}

@media(max-width:767px) {

    .about-author {

        padding: 60px 0;

    }

    .author-content {

        text-align: center;

    }

    .title-line {

        margin: 0 auto 30px;

    }

    .author-content h1 {

        font-size: 48px;

    }

    .author-content p {

        font-size: 16px;
        line-height: 1.4;

    }

}



/*========== Hero Section ==========*/
.world-banner {

    background: #000;
    padding: 60px 0 70px;
}

.banner-content h1 {

    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    font-weight: 500;
	line-height:55px;
}

.title-border {

    width: 120px;
    height: 4px;
    background: #d6aa43;
    margin: 28px auto;
}

.banner-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    max-width: 820px;
    margin: auto;
}



/*========= Story Section =========*/
.story-section {

    background: url("https://www.authorvadhan.com/wp-content/uploads/2026/07/blog-banner.png") center center/cover no-repeat;
    padding: 90px 0;
}

.story-item {

    margin-bottom: 100px;
}

.story-item:last-child {

    margin-bottom: 0;
}

.story-image img {

    width: 100%;
    border: 2px solid #d6aa43;
    border-radius: 10px;
}

.story-text {

    padding-left: 45px;
}

.right-text {

    padding-left: 0;
    padding-right: 45px;
}

.story-text h2 {

    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    margin-bottom: 20px;
}

.story-text p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
}

@media(max-width:991px) {

    .story-text,
    .right-text {

        padding: 0;
        text-align: center;
    }

    .story-text h2 {

        font-size: 48px;
    }

    .story-text p {

        font-size: 18px;
    }

    .story-item {

        margin-bottom: 70px;
    }

    .banner-content h1 {

        font-size: 42px;
    }

    .banner-content p {

        font-size: 18px;
    }

}

@media(max-width:576px) {

    .world-banner {

        padding: 80px 0 50px;
    }

    .banner-content h1 {

        font-size: 30px;
    }

    .banner-content p {

        font-size: 16px;
    }

    .story-section {

        padding: 60px 0;
    }

    .story-text h2 {

        font-size: 36px;
    }

    .story-text p {

        font-size: 16px;
    }

}







/*=========== CONTACT SECTION ============*/
.contact-section {

    background: #242424;

    padding: 90px 0;

}

.contact-content h2 {

    color: #d9ab50;

    font-size: 42px;

    font-family: "Cormorant Garamond", serif;

    margin-bottom: 18px;

}

.contact-line {

    display: block;

    width: 70px;

    height: 4px;

    background: #d9ab50;

    margin-bottom: 35px;

}

.contact-content p {
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    max-width: 470px;
    margin-bottom: 70px;

}

.contact-content h3 {

    color: #d9ab50;

    font-size: 35px;

    font-family: "Cormorant Garamond", serif;

    margin-bottom: 35px;

}

.social-links {

    display: flex;

    gap: 18px;

}

.social-links a {

    width: 62px;

    height: 62px;

    border: 2px solid #6f5930;

    border-radius: 50%;

    color: #bdbdbd;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 24px;

    transition: .3s;

}

.social-links a:hover {

    background: #d9ab50;

    color: #000;

}

/* Form */

.contact-form label {

    color: #fff;

    display: block;

    margin-bottom: 10px;

    font-size: 15px;

}

.contact-form input,
.contact-form textarea {

    width: 100%;

    background: #2f2f2f;

    border: 1px solid #6f5930;

    color: #fff;

    padding: 16px 18px;

    margin-bottom: 11px;

    outline: none;

}

.contact-form input {

    height: 48px;

}

.contact-form textarea {

    height: 170px;

    resize: none;

}

.contact-form input::placeholder,
.contact-form textarea::placeholder {

    color: #8c8c8c;

}

.contact-form button {

    width: 100%;
    height: 52px;
    background: #efc76b;
    border: none;
    font-size: 22px;
    color: #000;
    font-weight: 600;
    border-radius: 4px;

}

.contact-form button:hover {

    background: #d9ab50;

}

@media (max-width: 991px) {

    .contact-section {
        padding: 70px 0;
    }

    .contact-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .contact-content h2 {
        font-size: 46px;
    }

    .contact-content h3 {
        font-size: 38px;
        margin-top: 40px;
    }

    .contact-line {
        margin: 0 auto 30px;
    }

    .contact-content p {
        max-width: 100%;
        font-size: 20px;
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form {
        margin-top: 10px;
    }

}

@media (max-width:767px) {

    .contact-section {
        padding: 55px 0;
    }

    .contact-content h2 {
        font-size: 36px;
    }

    .contact-content h3 {
        font-size: 32px;
    }

    .contact-content p {
        font-size: 18px;
        line-height: 1.8;
    }

    .social-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .social-links a {

        width: 52px;
        height: 52px;
        font-size: 20px;

    }

    .contact-form label {

        font-size: 18px;

    }

    .contact-form input {

        height: 50px;
        font-size: 16px;

    }

    .contact-form textarea {

        height: 140px;
        font-size: 16px;

    }

    .contact-form button {

        height: 52px;
        font-size: 18px;

    }

}

@media (max-width:480px) {

    .contact-section {
        padding: 45px 0;
    }

    .contact-content h2 {
        font-size: 30px;
    }

    .contact-content h3 {
        font-size: 28px;
    }

    .contact-content p {
        font-size: 16px;
    }

    .contact-line {
        width: 60px;
    }

    .social-links {
        justify-content: center;
        gap: 10px;
    }

    .social-links a {

        width: 46px;
        height: 46px;
        font-size: 18px;

    }

    .contact-form input,
    .contact-form textarea {

        padding: 12px 14px;

    }

    .contact-form button {

        font-size: 17px;

    }

}


.book-section{
    padding:80px 0;
}

.book-content{

    position:sticky;
    top:80px;

    padding-right:40px;
}

.book-content h2{
    font-size:42px;
    margin-bottom:30px;
}

.book-content p{
    line-height:1.9;
    color:#ddd;
    margin-bottom:20px;
}

/* Right Scroll */

.book-scroll{

    height:90vh;

    overflow-y:auto;

    padding-right:15px;
}

/* Scrollbar */

.book-scroll::-webkit-scrollbar{
    width:6px;
}

.book-scroll::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:20px;
}

.book-card{

    background:#08141d;

    border:1px solid rgba(255,255,255,.12);

    border-radius:12px;

    overflow:hidden;

    margin-bottom:30px;

    transition:.4s;
}

.book-card:hover{

    transform:translateY(-8px);

    border-color:#d2b26a;
}

.book-card img{

    width:100%;
    height:260px;

    object-fit:cover;
}

.book-info{

    padding:2px;
    text-align:center;
}

.book-info h4{

    font-size:22px;
    color:#fff;
    margin-bottom:10px;
}

.book-info a{

    color:#fff;
    text-decoration:none;
    font-style:italic;
}

.book-info a:hover{

    color:#d2b26a;
}








.gudban-mobile{
display:none;
}

@media(max-width:767px){

.desktop-hero{
display:none;
}

.gudban-mobile{
display:block;
background:#000;
padding:90px 22px 50px;
text-align:center;
}

.gudban-container{
max-width:390px;
margin:auto;
}

.gudban-badge{
display:inline-block;
padding:10px 35px;
border:1px solid #cda349;
border-radius:40px;
color:#cda349;
font-size:13px;
letter-spacing:3px;
font-weight:600;
margin-bottom:25px;
}

.gudban-content h1{
font-size:44px;
line-height:1.05;
margin-bottom:25px;
color:#fff;
}

.gudban-content p{
font-size:18px;
line-height:1.8;
color:#fff;
margin-bottom:30px;
}

.gudban-rating{
font-size:28px;
color:#cda349;
letter-spacing:3px;
margin-bottom:10px;
}

.gudban-genre{
font-size:13px;
color:#cda349;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:35px;
}

.gudban-book img{
width:82%;
max-width:270px;
filter:drop-shadow(0 20px 45px rgba(0,0,0,.6));
margin:auto;
display:block;
}

.gudban-buttons{
margin-top:35px;
}

.gudban-btn{
display:flex;
align-items:center;
justify-content:center;
width:100%;
height:58px;
margin-bottom:16px;
border-radius:14px;
text-decoration:none;
font-size:18px;
font-weight:600;
transition:.3s;
}

.gudban-gold{
background:#d2a63d;
color:#000;
}

.gudban-outline{
border:1px solid #cda349;
background:transparent;
color:#fff;
}

.gudban-trailer{
border:2px solid #cda349;
background:transparent;
color:#cda349;
border-radius:50px;
margin-top:10px;
}

}