.vm-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.vm-title {
  text-align: center;
  font-size: 28px;
  color: #2f3191;
  margin-bottom: 30px;
  position: relative;
}

.vm-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #00d4ff;
  display: block;
  margin: 10px auto;
}

.vm-card {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #1b263b;
  transition: 0.3s;
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.vm-card h3 {
  color: #c2251f !important;
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 1px;
}

.vm-card p {
  color: #444;
  line-height: 1.8;
  font-size: 16px;
}


/*********policy ****************/

.policy-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.policy-title {
  text-align: center;
  font-size: 28px;
  color: #2f3191;
  margin-bottom: 25px;
  position: relative;
}

.policy-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #00d4ff;
  display: block;
  margin: 10px auto;
}

.policy-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #1b263b;
  transition: 0.3s;
}

.policy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.policy-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}
/********************* End**********************/


body{
    margin:0;
    font-family: 'Poppins', sans-serif;
    background: #f4f6fb;
}

/* PAGE */
.doc-section{
    padding: 90px 15px;
}

/* TITLE */
.doc-title{
    text-align:center;
    margin-bottom: 50px;
}

.doc-title h2{
    font-size: 34px;
    font-weight: 700;
    color:#0f172a;
}

/* CARD WRAPPER */
.doc-container{
    display:flex;
    justify-content:center;
}

/* COMMON CARD (MOA + IDP SAME) */
.doc-card{
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    text-align: center;
    width: 100%;
    max-width: 500px;

    animation: fadeCard 0.8s ease;
    transition: 0.4s ease;
}

/* hover */
.doc-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* ICON */
.doc-icon{
    font-size: 55px;
    margin-bottom: 15px;
    animation: floatIcon 3s ease-in-out infinite;
}

/* TITLE INSIDE CARD */
.doc-card h3{
    font-size: 24px;
    margin-bottom: 10px;
    color:#1e293b;
}

/* TEXT */
.doc-card p{
    color:#64748b;
    font-size: 15px;
    margin-bottom: 25px;
}

/* BUTTON */
.doc-btn{
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg,#1b263b,#2f3191);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    font-weight: 500;
}

.doc-btn:hover{
    transform: scale(1.08);
    background: linear-gradient(135deg,#00d4ff,#1b263b);
}

/* ANIMATION */
@keyframes fadeCard{
    from{opacity:0; transform:scale(0.95);}
    to{opacity:1; transform:scale(1);}
}

@keyframes floatIcon{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-6px);}
}

/* MOBILE */
@media(max-width:768px){
    .doc-card{
        padding: 25px;
    }

    .doc-title h2{
        font-size: 26px;
    }
}

.audit-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.audit-title {
  font-size: 28px;
  color:#2f3191;;
  margin-bottom: 30px;
}

.audit-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #1b263b;
  transition: 0.3s;
}

.audit-card:hover {
  transform: translateY(-5px);
}

.audit-card h3 {
  color: #c2251f !important;;
  margin-bottom: 10px;
}

.audit-card p {
  color: #275b9d;
  margin-bottom: 15px;
}

.audit-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #1b263b;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.audit-btn:hover {
  background: #00d4ff;
  color: #000;
}
