 *{
      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;
    }

    /* 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:25px;
      flex-wrap:wrap;
    }

    .btn-gold{
     background: #d6ab57;
    color: #000;
    padding: 16px 27px;
    font-size: 16px;
    font-weight: 500;
    height: 52px;
    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: 16px 27px;
	  height: 52px;
      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-image{
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-image img{
    max-width: 100%;
    height: auto;
}