   *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body{
    background: #eaeaea;
    overflow: hidden;
} */
 body{
    background: #eaeaea;
    overflow-x: hidden;   /* only hide horizontal scroll */
}
.html{
  overflow-x: hidden;
}
.main-container{
    position: relative;
    height: 100vh;
    /* margin: auto; */
    /* background-color: black; */
    background-color: #0B1337;
}

.container{
    position: relative;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 600px;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
}

.container .slide .item{
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}


.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: system-ui;
    display: none;
}


.slide .item:nth-child(2) .content{
    display: block;
}


.content .name{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}



.button{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
}

.button button{
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
}

.button button:hover{
    background: #ababab;
    color: #fff;
}
.content button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    margin-right: 10px;
}

/* Primary button */
.primary-btn{
  
    color: #fff;
}

/* Secondary button */
.secondary-btn{
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}


.secondary-btn:hover{
    background: #fff;
    color: #000;
}
/* =====================================
   LARGE TABLET (1024px)
===================================== */
/* =====================================
   TABLET VIEW WITH GAP
===================================== */
@media (max-width:1024px){

.container{
    width: 95%;
    height: 520px;
}

/* keep item size slightly smaller */
.container .slide .item{
    width: 180px;
    height: 260px;
}

/* main active slides */
.slide .item:nth-child(1),
.slide .item:nth-child(2){
    width:100%;
    height:100%;
}

/* 👇 spacing between preview cards */
.slide .item:nth-child(3){
    left: 58%;
}

.slide .item:nth-child(4){
    left: calc(58% + 220px); /* 220px = width + gap */
}

.slide .item:nth-child(5){
    left: calc(58% + 440px);
}

/* hide extra */
.slide .item:nth-child(n + 6){
    left: calc(58% + 660px);
    opacity:0;
}

.item .content{
    left:40px;
    width:280px;
}

.content .name{
    font-size:26px;
}
}



/* =====================================
   TABLET (768px)
===================================== */
@media (max-width:768px){

body{
    overflow:auto;
}

.container{
    position: relative;
    transform:none;
    top:auto;
    left:auto;
    width:100%;
    height:500px;
}

.slide .item{
    width: 100%;
    height: 100%;
    left:0 !important;
    border-radius:0;
}

/* hide extra cards */
.slide .item:nth-child(3),
.slide .item:nth-child(4),
.slide .item:nth-child(5){
    display:none;
}

.item .content{
    left: 20px;
    bottom: 60px;
    top:auto;
    transform:none;
    width: 85%;
}

.content .name{
    font-size: 24px;
}

.content .des{
    font-size: 14px;
}

.content button{
    padding:8px 16px;
    font-size:14px;
}

.button{
    bottom:15px;
}

}


/* =====================================
   MOBILE (480px)
===================================== */
@media (max-width:480px){

.container{
    height:420px;
}

.item .content{
    left:15px;
    bottom:70px;
    width:90%;
}

.content .name{
    font-size:20px;
}

.content .des{
    font-size:13px;
    margin-bottom:15px;
}

.content button{
    font-size:13px;
    padding:7px 12px;
    margin-bottom:5px;
}

.button{
    bottom:10px;
}

.button button{
    width:32px;
    height:30px;
}

}
/*  */
/* ==============================
   EMI SECTION FIX
============================== */
/* ===================== */
/* MAIN SECTION */
/* ===================== */
.careers-hero {
  /* background: 
  linear-gradient(rgba(11,19,55,0.85), rgba(11,19,55,0.85)),
  url("../images/environment-education-day-concept\ \(1\).jpg") center/cover no-repeat; */
background-color: #111a45 ;
  color: #fff;
  padding: 160px 8% 100px;
  text-align: center;
  /* position: relative; */
  overflow: hidden;
  top: 135px;
}

/* GOLD GLOW EFFECT */

.careers-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  /* background: radial-gradient(circle, rgba(207,165,47,0.12) 0%, rgba(11,19,55,0.95) 60%); */
  z-index: 1;
  pointer-events: none;
}

.careers-hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.careers-hero h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 24px;
  line-height: 1.1;
}
.careers-hero span { color: #cfa52f; }
.careers-hero p {
  font-size: 32px;
  color: #cfa52f;
  line-height: 1.6;
}
/* RESPONSIVE */
@media(max-width: 992px){
  .careers-hero h1 { font-size: 48px; }

}

@media(max-width: 768px){
  .careers-hero h1 { font-size: 36px; }
  .careers-hero { padding: 120px 6% 80px; }

}
/* SECTION */

/* SECTION */

.writing-section{
font-family:'Inter',sans-serif;
background:#ffffff;
padding-bottom:90px;
}


/* HERO SECTION */

.writing-hero{
background:
linear-gradient(90deg,
rgba(17,26,69,0.95) 0%,
rgba(17,26,69,0.85) 35%,
rgba(17,26,69,0.5) 60%,
rgba(17,26,69,0) 100%
),
url("../images/environment-education-day-concept (1).jpg") center/cover no-repeat;

height:700px;
display:flex;
align-items:center;
padding:0 8%;
position:relative;
color:#ffffff;
}


/* CONTENT */

.writing-content{
max-width:620px;
position:relative;
z-index:2;
}

/* GOLD BAR */

.left-bar{
position:absolute;
left:-35px;
top:10px;
width:8px;
height:120px;
background:#cfa52f;
}

/* HEADING */

.writing-content h1{
font-size:46px;
line-height:1.3;
font-weight:600;
margin-bottom:20px;
letter-spacing:0.5px;
}

/* SUBTEXT */

.discount{
font-size:18px;
color:#cfa52f;
margin-bottom:25px;
font-weight:500;
}

/* BUTTON */

.view-btn{
display:inline-block;
background:#cfa52f;
color:#111a45;
padding:14px 28px;
text-decoration:none;
font-size:14px;
font-weight:600;
border-radius:4px;
transition:0.3s;
margin-bottom:15px;
}

.view-btn:hover{
background:#ffffff;
color:#111a45;
}

/* CREDIT */

.credit{
font-size:12px;
color:#d8d8d8;
}


/* FEATURES SECTION */

.writing-features{
max-width:1100px;
margin:80px auto 0;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
padding:0 20px;
}


/* FEATURE CARD */

.feature{
display:flex;
gap:20px;
align-items:flex-start;
background:#f8f9fc;
padding:25px;
border-radius:8px;
transition:0.3s;
}

/* HOVER */

.feature:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}


/* ICON */

.icon{
width:55px;
height:55px;
background:#111a45;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
color:#cfa52f;
flex-shrink:0;
}


/* TITLE */

.feature h4{
font-size:18px;
margin-bottom:8px;
color:#111a45;
font-weight:600;
}


/* TEXT */

.feature p{
font-size:14px;
color:#666;
line-height:1.6;
}


/* RESPONSIVE */

@media(max-width:1000px){

.writing-content h1{
font-size:38px;
}

.writing-hero{
height:600px;
}

}

@media(max-width:900px){

.writing-hero{
background-position:center;
height:auto;
padding:120px 20px;
}

.writing-content{
text-align:center;
margin:auto;
}

.left-bar{
display:none;
}

.writing-features{
grid-template-columns:1fr;
}

}

@media(max-width:500px){

.writing-content h1{
font-size:30px;
}

.discount{
font-size:16px;
}

.view-btn{
padding:12px 22px;
}

}
/*  */
/* EMI STRIP DESIGN */
/* .emi-new{
  background:linear-gradient(180deg,#0c0c0c,#121212);
  padding:140px 8%;
  color:#fff;
  font-family: "Poppins", sans-serif;
} */
.emi-new{
  position:relative;
  padding:140px 8%;
  color:#fff;
  font-family:"Poppins", sans-serif;
  overflow:hidden;
}

/* background image */

.emi-new::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("../images/abstract-smooth-orange-waves-black-background-dark-vector-design-124908345.webp") center/cover no-repeat;
  z-index:0;
}

/* dark overlay for readability */

.emi-new::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:1;
}

/* keep content above image */

.emi-new > *{
  position:relative;
  z-index:2;
}
/* TOP */

.emi-top{
  text-align:center;
  margin-bottom:80px;
}

.emi-top h2{
  font-size:50px;
  margin-bottom:12px;
}

.emi-top p{
  color:#aaa;
  font-size:18px;
}

/* CARDS */

.emi-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-bottom:90px;
}

.emi-card{
  background:#111;
  border:1px solid #1c1c1c;
  padding:45px 30px;
  text-align:center;
  position:relative;
  transition:0.35s;
}

.emi-card:hover{
  transform:translateY(-12px);
  border-color:#cfa52f;
  box-shadow:0 15px 40px rgba(0,0,0,0.4);
}

/* FEATURED */

.emi-card.featured{
  border:2px solid #cfa52f;
  background:linear-gradient(180deg,#151515,#0f0f0f);
}

.tag{
  position:absolute;
  top:-14px;
  left:50%;
  transform:translateX(-50%);
  background:#cfa52f;
  color:#000;
  padding:6px 18px;
  font-size:12px;
  font-weight:600;
}

/* PRICE */

.emi-price{
  font-size:40px;
  font-weight:700;
  margin-bottom:5px;
}

.emi-month{
  font-size:14px;
  color:#888;
}

.emi-duration{
  margin:18px 0 22px;
  font-size:15px;
  color:#cfa52f;
}

/* LIST */

.emi-card ul{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.emi-card ul li{
  margin:10px 0;
  font-size:14px;
  color:#bbb;
}

/* BUTTON */

.emi-card a{
  display:inline-block;
  padding:13px 26px;
  background:#cfa52f;
  color:#000;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.emi-card a:hover{
  background:#fff;
}

/* BENEFITS */

.emi-bottom{
  display:flex;
  justify-content:center;
  gap:60px;
  margin-bottom:70px;
  flex-wrap:wrap;
}

.benefit{
  text-align:center;
}

.benefit h4{
  font-size:32px;
  color:#cfa52f;
}

.benefit p{
  font-size:13px;
  color:#aaa;
}

/* CTA */

.emi-cta{
  text-align:center;
}

.emi-cta h3{
  font-size:22px;
  margin-bottom:20px;
}

.emi-cta a{
  display:inline-block;
  padding:15px 32px;
  background:#cfa52f;
  color:#000;
  text-decoration:none;
  letter-spacing:1px;
  font-size:14px;
  transition:0.3s;
}

.emi-cta a:hover{
  background:#fff;
}

/* RESPONSIVE */

@media(max-width:1100px){
  .emi-cards{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .emi-cards{
    grid-template-columns:1fr;
  }
  .emi-top h2{
    font-size: 24px;
  }
}
/* emi strip animation */
/* INITIAL HIDDEN STATE */

.emi-new{
  opacity:0;
  transform:translateY(80px);
  transition:all 1s ease;
}

/* ACTIVE WHEN SCROLLED */

.emi-new.show{
  opacity:1;
  transform:translateY(0);
}

/* CARD ANIMATION */

.emi-card{
  opacity:0;
  transform:translateY(60px);
  transition:0.7s ease;
}

.emi-card.show{
  opacity:1;
  transform:translateY(0);
}

/* BENEFITS */

.emi-bottom{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.emi-bottom.show{
  opacity:1;
  transform:translateY(0);
}

/* CTA */

.emi-cta{
  opacity:0;
  transform:translateY(40px);
  transition:0.8s ease;
}

.emi-cta.show{
  opacity:1;
  transform:translateY(0);
}
/*  */
.insurance-premium{
  /* background:linear-gradient(180deg,#0b0b0b,#101010); */
  background-color: #0B1337;
  padding:140px 8%;
  color:#fff;
  font-family:"Poppins",sans-serif;
}

/* WRAPPER */

.insurance-container{
  display:grid;
  grid-template-columns:32% 68%;
  gap:90px;
  align-items:center;
}

/* LEFT FEATURE STACK */

.insurance-features{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.feature-box{
  background:linear-gradient(145deg,#151515,#0f0f0f);
  border:1px solid #1c1c1c;
  padding:18px 22px;
  border-radius:14px;
  font-size:14px;
  letter-spacing:.4px;
  transition:0.35s;
}

.feature-box:hover{
  border-color:#cfa52f;
  background:rgba(207,165,47,0.08);
  transform:translateX(10px);
}

/* RIGHT CONTENT */

.insurance-tag{
  display:inline-block;
  background:rgba(207,165,47,0.15);
  color:#cfa52f;
  padding:6px 14px;
  font-size:12px;
  letter-spacing:1px;
  margin-bottom:16px;
}

.insurance-content h2{
  font-size:48px;
  line-height:1.2;
  margin-bottom:14px;
}

.insurance-content h2 span{
  color:#cfa52f;
  display:block;
}

.insurance-highlight{
  font-size:20px;
  color:#cfa52f;
  margin-bottom:20px;
}

.insurance-desc{
  color:#bbb;
  line-height:1.9;
  margin-bottom:40px;
}

/* GRID BENEFITS */

.insurance-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.grid-box{
  background:#111;
  padding:22px;
  border:1px solid #1b1b1b;
  border-radius:12px;
  transition:.3s;
}

.grid-box:hover{
  border-color:#cfa52f;
  transform:translateY(-6px);
}

.grid-box h4{
  margin-bottom:6px;
  font-size:16px;
}

.grid-box p{
  color:#aaa;
  font-size:13px;
}

/* CTA */

.insurance-cta{
  margin-top:40px;
}

.insurance-cta a{
  display:inline-block;
  padding:16px 34px;
  background:#cfa52f;
  color:#000;
  text-decoration:none;
  font-size:14px;
  letter-spacing:1px;
  transition:.3s;
}

.insurance-cta a:hover{
  background:#fff;
}
/* DEFAULT STATE */

.feature-box{
  background:linear-gradient(145deg,#151515,#0f0f0f);
  border:1px solid #1c1c1c;
  padding:18px 22px;
  border-radius:14px;
  font-size:14px;
  letter-spacing:.4px;
  transition:0.4s ease;
  opacity:0.6;
}

/* ACTIVE STATE */

.feature-box.active{
  border-color:#cfa52f;
  background:rgba(207,165,47,0.12);
  transform:translateX(12px);
  opacity:1;
  box-shadow:0 0 20px rgba(207,165,47,0.2);
}
.feature-box{
  display:flex;
  align-items:center;
  gap:14px;
  background:linear-gradient(145deg,#151515,#0f0f0f);
  border:1px solid #1c1c1c;
  padding:18px 22px;
  border-radius:14px;
  font-size:14px;
  letter-spacing:.4px;
  transition:0.4s ease;
  opacity:0.7;
}

/* ICON STYLE */

.feature-box i{
  color:#cfa52f;
  font-size:18px;
  min-width:24px;
  transition:0.3s;
}

/* TEXT */

.feature-box span{
  flex:1;
}

/* ACTIVE STATE (for auto animation) */

.feature-box.active{
  border-color:#cfa52f;
  background:rgba(207,165,47,0.12);
  transform:translateX(12px);
  opacity:1;
  box-shadow:0 0 20px rgba(207,165,47,0.2);
}

.feature-box.active i{
  transform:scale(1.2);
}
/* RESPONSIVE */

@media(max-width:992px){

  .insurance-container{
    grid-template-columns:1fr;
    gap:60px;
  }

  .insurance-content h2{
    font-size:34px;
  }

  .insurance-grid{
    grid-template-columns:1fr;
  }

}
/* SECTION INITIAL STATE */

.insurance-premium{
  opacity:0;
  transform:translateY(80px);
  transition:all 0.9s ease;
}

.insurance-premium.show{
  opacity:1;
  transform:translateY(0);
}

/* LEFT SIDE */

.insurance-features{
  opacity:0;
  transform:translateX(-60px);
  transition:0.8s ease;
}

.insurance-features.show{
  opacity:1;
  transform:translateX(0);
}

/* RIGHT SIDE */

.insurance-content{
  opacity:0;
  transform:translateX(60px);
  transition:0.8s ease;
}

.insurance-content.show{
  opacity:1;
  transform:translateX(0);
}

/* GRID BOX ANIMATION */

.grid-box{
  opacity:0;
  transform:translateY(40px);
  transition:0.6s ease;
}

.grid-box.show{
  opacity:1;
  transform:translateY(0);
}

/* CTA */

.insurance-cta{
  opacity:0;
  transform:translateY(30px);
  transition:0.6s ease;
}

.insurance-cta.show{
  opacity:1;
  transform:translateY(0);
}
/*  */
.insurance-alert-new{
  background:#0a0a0a;
  border-top:2px solid #cfa52f;
  border-bottom:2px solid #cfa52f;
  padding:14px 0;
  overflow:hidden;
  font-family:"Poppins",sans-serif;
}

/* LAYOUT */

.alert-wrap{
  display:flex;
  align-items:center;
  gap:30px;
}


.alert-badge.investor{
  display:flex;
  align-items:center;
  gap:12px;
  background:#0f0f0f;
  border:1px solid #cfa52f;
  color:#fff;
  font-weight:700;
  padding:10px 20px;
  font-size:12px;
  letter-spacing:1px;
}

.alert-badge.investor span{
  background:#cfa52f;
  color:#000;
  padding:4px 10px;
  font-size:10px;
  font-weight:900;
}
/* ALERT ICON BOX */

.alert-icon{
  width:80px;
  height:55px;
  background:#cfa52f;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  position:relative;
}

/* ICON STYLE */

.alert-icon i{
  font-size:35px;
  animation:bellShake 1.5s infinite;
}

/* SHAKE ANIMATION */

@keyframes bellShake{

  0%{ transform:rotate(0); }
  10%{ transform:rotate(15deg); }
  20%{ transform:rotate(-15deg); }
  30%{ transform:rotate(12deg); }
  40%{ transform:rotate(-12deg); }
  50%{ transform:rotate(8deg); }
  60%{ transform:rotate(-8deg); }
  70%{ transform:rotate(0); }
  100%{ transform:rotate(0); }

}

/* PULSE RING EFFECT */

.alert-icon::after{
  content:"";
  position:absolute;
  inset:-4px;
  border:2px solid rgba(207,165,47,0.5);
  border-radius:8px;
  animation:pulseRing 2s infinite;
}

@keyframes pulseRing{
  0%{ opacity:0.8; transform:scale(1); }
  100%{ opacity:0; transform:scale(1.4); }
}
/* SCROLL AREA */

.alert-scroll{
  overflow:hidden;
  flex:1;
}

/* LOOP TEXT */

.alert-text{
  display:inline-flex;
  gap:80px;
  white-space:nowrap;
  animation:alertLoop 18s linear infinite;
  font-size:20px;
  font-weight:700;
  color:#fff;
}

/* ₹25 LAKHS HIGHLIGHT */

.alert-text b{
  color:#cfa52f;
  font-weight:900;
  text-shadow:0 0 12px rgba(207,165,47,0.3);
}

/* LOOP ANIMATION */

@keyframes alertLoop{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-50%); }
}

/* RESPONSIVE */

@media(max-width:768px){

  .alert-text{
    font-size:15px;
    gap:50px;
  }

  .alert-badge{
    font-size:11px;
    padding:10px 16px;
  }

}
.alert-smile{
  width:26px;
  height:26px;
  margin-left:14px;
  vertical-align:middle;
  animation:smileBounce 1.2s ease-in-out infinite;
}

/* subtle bounce animation */

@keyframes smileBounce{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-4px); }
  100%{ transform:translateY(0); }
}
/* SCROLL ENTRY ANIMATION INITIAL STATE */

.insurance-alert-new{
  opacity:0;
  transform:translateY(80px);
  transition:all 0.9s ease;
}

/* WHEN VISIBLE */

.insurance-alert-new.show{
  opacity:1;
  transform:translateY(0);
}

/* BADGE ENTRY */

.alert-badge{
  opacity:0;
  transform:translateX(-60px);
  transition:0.7s ease;
}

.alert-badge.show{
  opacity:1;
  transform:translateX(0);
}

/* SCROLL TEXT ENTRY */

.alert-scroll{
  opacity:0;
  transform:translateX(60px);
  transition:0.9s ease;
}

.alert-scroll.show{
  opacity:1;
  transform:translateX(0);
}
/*  */
/* .emi-journey-section{
  padding:130px 20px;
  background:black;
  color:#fff;
} */
.emi-journey-section{
  padding:130px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
    url("../images/payemi1.jpg") center/cover no-repeat;
  color:#fff;
  font-family:'Poppins',sans-serif;
}

.emi-journey-wrapper{
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.emi-journey-header{
  text-align:center;
  margin-bottom:80px;
}

.emi-journey-header span{
  background:#cfa52f;
  color:#063430;
  padding:6px 18px;
  border-radius:40px;
  font-size:13px;
  font-weight:600;
}

.emi-journey-header h2{
  font-size:58px;
  margin:20px 0 10px;
  font-weight:800;
}

.emi-journey-header p{
  font-size:20px;
  opacity:.9;
}

/* TIMELINE */

.emi-journey-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  position:relative;
  gap:40px;
}

/* timeline line */

.emi-journey-steps:before{
  content:"";
  position:absolute;
  top:26px;
  left:0;
  right:0;
  height:3px;
  background:#cfa52f;
  opacity:.4;
}

/* STEP */

.emi-step{
  text-align:center;
  position:relative;
  transition:.3s;
}

.emi-step:hover{
  transform:translateY(-6px);
}

/* DOT WITH ICON */

.emi-dot{
  width:60px;
  height:60px;
  background:#cfa52f;
  border-radius:50%;
  margin:auto auto 18px;
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 20px rgba(207,165,47,0.4);
  transition:.3s;
}

.emi-dot i{
  color:#063430;
  font-size:22px;
}

.emi-step:hover .emi-dot{
  transform:scale(1.1);
  box-shadow:0 0 30px rgba(207,165,47,0.7);
}

.emi-step h3{
  margin-bottom:10px;
  font-size:22px;
}

.emi-step p{
  font-size:15px;
  opacity:.85;
}

/* HIGHLIGHTS */

.emi-journey-highlights{
  margin-top:70px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.highlight{
  background:rgba(255,255,255,0.08);
  padding:14px 22px;
  border-radius:40px;
  font-weight:600;
  transition:.3s;
}

.highlight:hover{
  background:#cfa52f;
  color:#063430;
}

/* CTA */

.emi-journey-cta{
  text-align:center;
  margin-top:60px;
}

.emi-journey-cta a{
  background:#cfa52f;
  color:#063430;
  padding:16px 40px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  transition:.3s;
  display:inline-block;
}

.emi-journey-cta a:hover{
  transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:900px){

  .emi-journey-steps{
    grid-template-columns:1fr;
    gap:50px;
  }

  .emi-journey-steps:before{
    display:none;
  }

  .emi-journey-header h2{
    font-size:36px;
  }
}

/*  */

/* SECTION */

.about-section{
  padding:120px 0;
  background:#f3f3f3;
  font-family:'Poppins',sans-serif;
}

.about-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns: 38% 24% 38%;
  align-items:center;
  position:relative;
  gap:40px;
}

/* LEFT DARK PANEL */

.about-left{
  background:#0B1337;
  padding:100px 60px;
  color:#fff;
}

.about-left h2{
  font-size:52px;
  color:#cfa52f;
  margin-bottom:10px;
  font-weight:800;
}

.about-left p{
  font-size:18px;
  color:#ddd;
}

/* IMAGE CENTER */

.about-image{
  background:#cfa52f;
  padding:40px;
  margin-left:-60px;
  margin-right:-60px;
}

.about-image img{
  width:100%;
  height:470px;
  object-fit:cover;
  transition:opacity 0.6s ease;
}

/* RIGHT CONTENT */

.about-right{
  padding:40px;
}

.about-right h3{
  font-size:28px;
  margin-bottom:12px;
  color:#1f2430;
  transition:all 0.6s ease;
}

.about-right p{
  color:#666;
  font-size:16px;
  line-height:1.8;
  margin-bottom:25px;
  transition:all 0.6s ease;
}

/* FADE ANIMATION */

.fade{
  opacity:0;
  transform:translateY(15px);
}

.show{
  opacity:1;
  transform:translateY(0);
  transition:all 0.8s ease;
}
/* animation */
/* ===================================
   SCROLL REVEAL ANIMATION – ABOUT
=================================== */

/* ============================= */
/* ======== TABLET VIEW ======== */
/* ============================= */

@media (max-width: 1024px){
.about-left h2{
  font-size: 30px;
}
/* .about-right p{
  padding: 40px;
} */

}
/* ============================= */
/* TABLET VIEW */
/* ============================= */

@media (max-width: 1024px){

  .about-wrapper{
    grid-template-columns: 1fr 1fr;
    gap:30px;
  }

  .about-image{
    margin:0;
    padding:25px;
    grid-column: span 2;
  }

  .about-image img{
    height:360px;
  }

  .about-left{
    padding:70px 40px;
  }

  .about-left h2{
    font-size:36px;
  }

  .about-right{
    padding:30px;
  }

}


/* ============================= */
/* MOBILE VIEW */
/* ============================= */
/* ============================= */
/* MOBILE VIEW - FINAL FIX */
/* ============================= */

@media (max-width: 768px){

  .about-section{
    padding:70px 15px;
  }

  .about-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
  }

  /* LEFT PANEL */
  .about-left{
    width:100%;
    padding:45px 20px;
    text-align:center;
  }

  .about-left h2{
    font-size:28px;
    line-height:1.2;
  }

  .about-left p{
    font-size:15px;
  }

  /* IMAGE */
  .about-image{
    width:100%;
    margin:0;
    padding:15px;
  }

  .about-image img{
    width:100%;
    height:auto;
    max-height:260px;
    object-fit:cover;
  }

  /* RIGHT CONTENT */
  .about-right{
    width:100%;
    padding:20px 15px;
    text-align:center;
  }

  .about-right h3{
    font-size:22px;
    margin-bottom:10px;
  }

  .about-right p{
    font-size:14px;
    line-height:1.7;
  }

}


/* ============================= */
/* SMALL MOBILE */
/* ============================= */

@media (max-width: 480px){

  .about-section{
    padding:60px 12px;
  }

  .about-left{
    padding:35px 15px;
  }

  .about-left h2{
    font-size:24px;
  }

  .about-image{
    padding:10px;
  }

  .about-image img{
    max-height:220px;
  }

  .about-right{
    padding:15px 10px;
  }

}
/* ============================= */
/* RESPONSIVE DESIGN */
/* ============================= */

/* Large Tablets */
@media (max-width: 1200px) {

  .creative-container{
    width:95%;
  }

  .creative-box{
    left:200px;
    width:55%;
  }

  .left-img{
    left:60px;
  }

  .bottom-left-text{
    right:40px;
  }

}


/* Tablets */
@media (max-width: 992px) {

  .creative-container{
    min-height:auto;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .gold-circle,
  .gold-rectangle{
    display:none;
  }

  .creative-box{
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    padding:40px 30px;
    margin-bottom:40px;
  }

  .creative-box h2{
    font-size:32px;
  }

  .left-img{
    position:relative;
    bottom:auto;
    left:auto;
    width:100%;
    max-width:420px;
    margin-bottom:40px;
  }

  .bottom-left-text{
    position:relative;
    bottom:auto;
    right:auto;
    width:100%;
    max-width:500px;
    text-align:left;
  }

}



/*  */
.creative-section{
  background:#efefef;
  padding:140px 0 200px;
  font-family:'Poppins',sans-serif;
  overflow:hidden;
}

.creative-container{
  width:1180px;
  margin:auto;
  position:relative;
  min-height:780px;
}

/* GOLD CIRCLE */

.gold-circle{
  position:absolute;
  width:260px;
  height:260px;
  border:55px solid #f2a900;
  border-radius:50%;
  top:-30px;
  left:30px;
  z-index:0;
}

/* GOLD RECTANGLE */

.gold-rectangle{
  position:absolute;
  width:420px;
  height:260px;
  background:#f2a900;
  top:260px;
  right:60px;
  z-index:0;
}

/* TOP WHITE BOX */

.creative-box{
  position:absolute;
  top:60px;
  left:260px;
  width:640px;
  background:#fff;
  border:4px solid #f2a900;
  padding:60px;
  text-align:center;
  z-index:2;
}

.top-small{
  letter-spacing:4px;
  font-size:12px;
  color:#333;
}

.creative-box h2{
  font-size:42px;
  margin:15px 0;
  color:#1f2430;
}

.main-desc{
  color:#666;
  line-height:1.7;
  margin-bottom:25px;
}

.btn-black{
  background:#000;
  color:#fff;
  padding:14px 32px;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  display:inline-block;
}

/* LEFT IMAGE */

.left-img{
  position:absolute;
  bottom:110px;
  left:120px;
  width:380px;
  border:6px solid #f2a900;
  z-index:2;
}

.left-img img{
  width:100%;
  display:block;
}

/* WHY KOTHAKOTA TEXT */
.bottom-left-text{
  position:absolute;
  bottom:40px;
  right:120px;
  width:420px;
  text-align:left;
  color:#555;
  line-height:1.8;
  font-size:15px;
}

/* Heading */
.bottom-left-text h3{
  font-size:26px;
  margin-bottom:15px;
  color:#1f2430;
}

/* List */
.bottom-left-text ul{
  list-style:none;
  padding:0;
  margin:0;
}

.bottom-left-text li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}

/* Icons */
.bottom-left-text i{
  color:#f2a900;
  font-size:16px;
  margin-top:4px;
}
/* animation */

/* ============================= */
/* MOBILE FIX ONLY */
/* ============================= */

@media (max-width:768px){

  .creative-container{
    width:100%;
    min-height:auto;
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:30px;
  }

  /* REMOVE ABSOLUTE LAYOUT */
  .creative-box,
  .left-img,
  .bottom-left-text{
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
  }

  /* HIDE DECORATIVE SHAPES */
  .gold-circle,
  .gold-rectangle{
    display:none;
  }

  /* TOP WHITE BOX */
  .creative-box{
    width:100%;
    padding:30px 20px;
    margin-top:20px;
  }

  .creative-box h2{
    font-size:26px;
  }

  /* IMAGE */
  .left-img{
    width:100%;
    max-width:420px;
    border-width:4px;
  }

  .left-img img{
    width:100%;
    height:auto;
  }

  /* TEXT BLOCK */
  .bottom-left-text{
    width:100%;
    padding:0 10px;
    text-align:left;
  }

  .bottom-left-text h3{
    font-size:20px;
  }

  .bottom-left-text p,
  .bottom-left-text li{
    font-size:14px;
  }

  /* BUTTON */
  .btn-black{
    width:100%;
    text-align:center;
  }

}
/*  */
.project-combined-section{
  padding:140px 0;
  background:#0B1337;
  font-family:'Poppins',sans-serif;
}

.combined-wrapper{
  width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:140px;
}

/* ROW */

.row{
  display:grid;
  grid-template-columns:50% 50%;
  align-items:center;
  gap:80px;
}

.reverse{
  direction:rtl;
}

.reverse .content-box{
  direction:ltr;
}

/* IMAGE BOX */

.image-box{
  position:relative;
  height:600px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 40px 90px rgba(0,0,0,0.45);
}

/* GOLDEN BACKGROUND SHAPE */

.image-bg-shape{
  position:absolute;
  width:120%;
  height:120%;
  background:radial-gradient(circle at center, rgba(207,165,47,0.35), transparent 60%);
  top:-10%;
  left:-10%;
  filter:blur(40px);
  z-index:0;
  animation:moveGlow 8s infinite ease-in-out;
}

/* IMAGE */

.image-box img{
  position:relative;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:1;
  transform:scale(1.05);
}

/* PREMIUM FRAME */

.image-frame{
  position:absolute;
  inset:14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.2);
  z-index:2;
}

/* OVERLAY */

.image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.6));
  z-index:3;
}

/* CONTENT */

.content-box h2{
  font-size:40px;
  margin-bottom:30px;
  color:#ffffff;
}

.content-box h2::after{
  content:'';
  width:70px;
  height:4px;
  background:#cfa52f;
  display:block;
  margin-top:12px;
}

.content-box ul{
  list-style:none;
  padding:0;
}

.content-box li{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
  font-size:16px;
  color:#d6d6d6;
  line-height:1.6;
}

.content-box li i{
  color:#cfa52f;
  font-size:17px;
  width:22px;
}

/* CTA */

.center-cta{
  text-align:center;
}

.cta-btn{
  display:inline-block;
  background:linear-gradient(135deg,#cfa52f,#f5d27a);
  color:#000;
  padding:20px 60px;
  font-weight:700;
  letter-spacing:1px;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 10px 40px rgba(207,165,47,0.4);
}

/* ANIMATION */

.animate-left{
  opacity:0;
  transform:translateX(-80px);
  animation:slideLeft 1.2s ease forwards;
}

.animate-right{
  opacity:0;
  transform:translateX(80px);
  animation:slideRight 1.2s ease forwards;
}

@keyframes slideLeft{
  to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
  to{opacity:1; transform:translateX(0);}
}

@keyframes moveGlow{
  0%{transform:translateY(0);}
  50%{transform:translateY(-20px);}
  100%{transform:translateY(0);}
}

/* RESPONSIVE */

@media(max-width:1024px){

  .combined-wrapper{ width:92%; }

  .row{ grid-template-columns:1fr; }

  .reverse{ direction:ltr; }

  .image-box{ height:420px; }

}
/* animation */

/*  */
.growth-section{
  background:#0f1115;
  padding:120px 0;
  font-family:'Poppins',sans-serif;
  color:#fff;
}

.growth-container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */

.growth-header{
  text-align:center;
  margin-bottom:70px;
}

.growth-header h2{
  font-size:44px;
  color:#cfa52f;
  margin-bottom:10px;
}

.growth-header p{
  color:#aaa;
  font-size:16px;
}

/* GRID */

.growth-grid{
  display:grid;
  grid-template-columns:55% 45%;
  gap:60px;
  align-items:center;
}

/* GRAPH SIDE */

.growth-graph{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.projection-card{
  background:#181b22;
  padding:40px;
  border-left:5px solid #cfa52f;
}

.projection-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.projection-card .small{
  color:#aaa;
  font-size:14px;
  margin-bottom:20px;
}

.value-line{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:22px;
  font-weight:600;
}

.value-line .start{
  color:#bbb;
}

.value-line .end{
  color:#cfa52f;
  font-size:26px;
}

.value-line .arrow{
  font-size:26px;
  color:#fff;
}

.highlight{
  background:#1d2027;
  transform:scale(1.03);
  border-left:5px solid #fff;
}

/* RIGHT SIDE */

.growth-reasons h3{
  font-size:28px;
  margin-bottom:20px;
  color:#cfa52f;
}

.growth-reasons ul{
  list-style:none;
  padding:0;
  margin:0 0 30px;
}

.growth-reasons li{
  margin-bottom:14px;
  font-size:16px;
  color:#ddd;
  position:relative;
  padding-left:24px;
}

.growth-reasons li:before{
  content:"•";
  color:#cfa52f;
  position:absolute;
  left:0;
  font-size:20px;
}

/* TAGLINE */

.growth-tagline{
  background:#cfa52f;
  padding:25px;
  color:#000;
  font-size:20px;
  line-height:1.6;
}

.growth-tagline span{
  display:block;
  font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

  .growth-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .growth-header h2{
    font-size:30px;
  }

  .value-line{
    flex-direction:column;
    align-items:flex-start;
    gap:5px;
  }

  .growth-tagline{
    font-size:18px;
  }

}
/*  */
.life-land-section{
  position:relative;
  /* padding:220px 0; */
  padding: 0 0;
  background:url('your-background-image.jpg') center/cover no-repeat;
  font-family:'Poppins',sans-serif;
  color:#fff;
  overflow:hidden;
}

/* cinematic overlay */

.life-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 15% 25%, rgba(207,165,47,0.15), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(207,165,47,0.12), transparent 40%),
    linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.95));
}

/* subtle moving light */

.life-land-section::after{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(207,165,47,0.08), transparent 60%);
  animation:lightMove 12s infinite linear;
}

@keyframes lightMove{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

.life-content{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

/* TITLE */

.life-title{
  font-size:80px;
  font-weight:900;
  line-height:1.1;
  margin-bottom:20px;
}

.life-title span{
  display:block;
  color:#cfa52f;
  text-shadow:0 0 25px rgba(207,165,47,0.6);
  animation:glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse{
  0%{text-shadow:0 0 10px rgba(207,165,47,0.3);}
  50%{text-shadow:0 0 35px rgba(207,165,47,0.8);}
  100%{text-shadow:0 0 10px rgba(207,165,47,0.3);}
}

/* subtitle */

.life-sub{
  max-width:700px;
  margin:0 auto 100px;
  font-size:18px;
  color:#d7d7d7;
}

/* GRID */

.life-grid{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:35px;
  margin-bottom:120px;
}

/* FLOATING GLASS BLOCKS */

.life-block{
  width:240px;
  padding:40px 30px;
  border-radius:20px;
  backdrop-filter:blur(12px);
  background:linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:0 10px 40px rgba(0,0,0,0.4);
  animation:floatCard 6s infinite ease-in-out;
}

/* different float timing */

.life-block:nth-child(2){ animation-delay:1s;}
.life-block:nth-child(3){ animation-delay:2s;}
.life-block:nth-child(4){ animation-delay:3s;}
.life-block:nth-child(5){ animation-delay:4s;}

@keyframes floatCard{
  0%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
  100%{transform:translateY(0);}
}

.life-block h3{
  color:#cfa52f;
  margin-bottom:10px;
  font-size:21px;
}

.life-block p{
  font-size:14px;
  color:#ddd;
  line-height:1.6;
}

/* GROWTH BADGE */

.life-growth{
  display:inline-block;
  padding:35px 70px;
  border-radius:120px;
  background:linear-gradient(135deg,#cfa52f,#f5d27a);
  color:#000;
  font-size:36px;
  font-weight:900;
  margin-bottom:70px;
  box-shadow:0 0 60px rgba(207,165,47,0.5);
  animation:pulse 3s infinite ease-in-out;
}

.life-growth span{
  display:block;
  font-size:13px;
  letter-spacing:2px;
  margin-bottom:5px;
}

@keyframes pulse{
  0%{box-shadow:0 0 30px rgba(207,165,47,0.3);}
  50%{box-shadow:0 0 80px rgba(207,165,47,0.9);}
  100%{box-shadow:0 0 30px rgba(207,165,47,0.3);}
}

/* emotion line */

.life-emotion{
  font-size:28px;
  letter-spacing:4px;
  font-weight:700;
  opacity:0.95;
}

/* MOBILE */

@media(max-width:768px){

  .life-title{ font-size:40px; }

  .life-sub{ font-size:16px; margin-bottom:60px; }

  .life-block{ width:100%; }

  .life-growth{
    font-size:22px;
    padding:20px 40px;
  }

  .life-emotion{
    font-size:16px;
    letter-spacing:2px;
  }
}
/*  */
.testimonial-section{
  background:linear-gradient(180deg,#f8f8f8,#ffffff);
  padding:140px 0;
  font-family:'Poppins',sans-serif;
}

.testimonial-container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
  text-align:center;
}

.testimonial-title{
  font-size:42px;
  font-weight:700;
  margin-bottom:80px;
  color:#1f2430;
  position:relative;
}

.testimonial-title:after{
  content:"";
  width:70px;
  height:3px;
  background:#cfa52f;
  display:block;
  margin:18px auto 0;
}

/* SLIDER */

.testimonial-slider{
  position:relative;
  overflow:hidden;
}

.testimonial-slide{
  display:none;
  animation:fadeSlide 0.6s ease;
}

.testimonial-slide.active{
  display:block;
}

@keyframes fadeSlide{
  from{opacity:0; transform:translateY(40px);}
  to{opacity:1; transform:translateY(0);}
}

/* CONTENT CARD */

.testimonial-content{
  background:#fff;
  padding:60px 40px;
  border-radius:18px;
  /* box-shadow:0 30px 60px rgba(0,0,0,0.08); */
  max-width:650px;
  margin:auto;
  position:relative;
}

/* IMAGE */

.client-img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:20px;
  border:4px solid #cfa52f;
}

/* TEXT */

.testimonial-text{
  font-size:20px;
  line-height:1.8;
  color:#444;
  margin-bottom:25px;
}

/* NAME */

.client-name{
  font-size:18px;
  font-weight:600;
  color:#111;
}

.client-location{
  font-size:14px;
  color:#888;
}

/* BUTTONS */

.prev-btn,
.next-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#cfa52f;
  color:#fff;
  border:none;
  width:45px;
  height:45px;
  border-radius:50%;
  cursor:pointer;
  font-size:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.prev-btn{ left:10px; }
.next-btn{ right:10px; }

.prev-btn:hover,
.next-btn:hover{
  background:#b8931f;
}

/* MOBILE */

@media(max-width:768px){

  .testimonial-content{
    padding:40px 25px;
  }

  .testimonial-text{
    font-size:17px;
  }

  .testimonial-title{
    font-size:30px;
  }
}
/*  */
.faq-section{
  background:#0f0f0f;
  padding:120px 8%;
  font-family:"Poppins",sans-serif;
  color:#fff;
}

.faq-container{
  max-width:1100px;
  margin:auto;
}

.faq-heading{
  text-align:center;
  margin-bottom:60px;
}

.faq-heading h2{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.faq-heading p{
  color:#bdbdbd;
  font-size:16px;
}

.faq-wrapper{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  background:#161616;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.05);
  transition:0.3s;
}

.faq-item:hover{
  border-color:#cfa52f;
}

.faq-question{
  width:100%;
  padding:22px 25px;
  font-size:17px;
  font-weight:600;
  background:none;
  border:none;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question span{
  font-size:22px;
  color:#cfa52f;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  background:#111;
}

.faq-answer p{
  padding:0 25px 22px;
  color:#cfcfcf;
  line-height:1.6;
}
/* animtions */
