<style>
@media(max-width:992px){
  .timeline-grid{flex-direction:column; gap:25px;}
  .fy-card{flex:1 1 100%;}
}
</style>

<style>
body {
    font-family: 'Roboto', sans-serif;
    background: #f4f6f8;
    margin:0;
    padding:0;
}

/* === Hero Section === */
.hero-split {
    display: flex;
    flex-wrap: wrap;
    height: 90vh;
}

.hero-left {
    flex: 1;
    background: url('../images/thrift/Thrift_new/img1.jpg') center/cover no-repeat;
    position: relative;
}

.hero-left::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    background: linear-gradient(135deg,#0f172a,#020617);
    color: #fff;
    text-align: left;
}

.hero-right h1 {
    font-size: 3rem;
    font-weight: 800;
}

.hero-right h1 span {
    background: linear-gradient(90deg,#38bdf8,#fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-right p {
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-right .btn {
    padding: 10px 25px;
    font-size: 1.1rem;
}

/* === Glass Cards Section === */
.cards-section {
    padding: 80px 0;
    background: radial-gradient(circle at top, #0f172a, #020617);
    color: #fff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
}

.card-modern {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding:30px;
    text-align:center;
    transition: all 0.4s ease;
    display:flex;
    flex-direction:column;
    justify-content:center;
    position:relative;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #38bdf8, 0 0 50px #fb923c;
}

.card-modern i {
    font-size:40px;
    margin-bottom:15px;
    text-shadow:0 0 10px currentColor;
}

.card-modern h4, .card-modern p {
    text-shadow:0 0 6px rgba(255,255,255,0.7);
}

/* Colors */
.blue i{color:#38bdf8;}
.green i{color:#4ade80;}
.purple i{color:#c084fc;}
.orange i{color:#fb923c;}

/* === News Section === */
.news-section {
    padding: 60px 0;
    background: #f4f6f8;
}

.news-card {
    background: #676cca;
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card h5 {
    margin-bottom: 10px;
}

.news-card p {
    margin: 0;
}

/* === Parallax Section === */
.parallax {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.parallax h3 {
    font-size: 2rem;
}

/* === Gallery Section === */
.gallery-section {
    padding: 60px 0;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-img {
    border-radius: 12px;
    transition: transform 0.3s;
    width: 100%;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* === Main Page Content Section === */
.main-page-container {
    max-width:1200px;
    margin:30px auto;
    padding:0 20px;
}

.main-container-flex {
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.main-content {
    flex:1 1 70%;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.content-wrapper {
    display:flex;
    gap:20px;
    align-items:flex-start;
    flex-wrap:wrap;
}

.content-wrapper img {
    border-radius:10px;
}

.sidebar {
    flex:1 1 28%;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.sidebar .widget {
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.sidebar h5 {
    margin-bottom:15px;
    font-size:18px;
    color:#004d40;
    border-bottom:2px solid #004d40;
    padding-bottom:5px;
}

/* Hero Slim Section for Mandal Image */
.hero-area .hero-slim {
    width:100%;
    height:250px;
    background: url('images/Sanchalak_Mandal_2025.jpg') center/cover no-repeat;
    border-radius:10px;
    margin-bottom:30px;
}

/* Responsive */
@media(max-width:992px){
    .hero-split{flex-direction:column;height:auto;}
    .hero-left,.hero-right{flex:1;height:50vh;}
    .hero-right{text-align:center;padding:30px;}
    .main-container-flex{flex-direction:column;}
    .main-content, .sidebar{flex:1 1 100%;}
}
</style>
<style>
.signature-section {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 2px dashed #e2e8f0;
}

.signature-photo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.signature-photo {
    width: 200px;
    height: 80px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-left: auto;
}

.signature-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.signature-details {
    text-align: right;
}

.yours {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 5px;
}

.name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 3px;
}

.designation {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 8px;
}

.new-year {
    color: #10b981;
    font-weight: 500;
    font-style: italic;
    font-size: 1rem;
}

/* If signature image is not available, show placeholder */
.signature-photo:empty::before {
    content: "हस्ताक्षर";
    color: #94a3b8;
    font-style: italic;
    font-size: 0.9rem;
}

/* Alternative layout - Side by side */
.signature-section.alternative .signature-photo-container {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 30px;
}

.signature-section.alternative .signature-photo {
    margin-left: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .signature-photo {
        width: 150px;
        height: 60px;
    }
    
    .signature-section.alternative .signature-photo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .signature-details {
        text-align: center;
    }
    
    .signature-photo {
        margin: 0 auto;
    }
}

/* Another style option with stamp */
.signature-section.with-stamp .signature-photo-container {
    position: relative;
}

.signature-section.with-stamp .signature-stamp {
    position: absolute;
    bottom: -15px;
    right: -15px;
    color: #dc2626;
    font-size: 2.5rem;
    opacity: 0.7;
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
</style>

<style>
/* New CSS styles for the updated message */
.benefits-section {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid #10b981;
}

.benefits-section h5 {
  color: #047857;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.benefits-section h5 i {
  color: #10b981;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  padding: 8px 0;
  color: #475569;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.benefits-list li i {
  color: #2563eb;
  margin-top: 3px;
  flex-shrink: 0;
}

.commitment-section {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 20px;
  border-radius: 12px;
  margin: 25px 0;
  border-left: 4px solid #f59e0b;
}

.commitment-section h5 {
  color: #92400e;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.commitment-section h5 i {
  color: #f59e0b;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.commitment-list li {
  padding: 8px 0;
  color: #92400e;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.commitment-list li i {
  color: #d97706;
  margin-top: 3px;
  flex-shrink: 0;
}

.final-message {
  margin: 25px 0;
  text-align: center;
}

.emphasis {
  font-size: 1.2rem;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.6;
}

.tagline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.tagline p {
  font-size: 1.1rem;
  color: #2563eb;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tagline p i {
  color: #dc2626;
}

.new-year {
  color: #10b981;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  font-style: italic;
}

.profile-title h3 i {
  color: #f59e0b;
}

.highlight-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefits-list li,
  .commitment-list li {
    font-size: 14px;
  }
  
  .tagline {
    flex-direction: column;
    gap: 8px;
  }
  
  .tagline p {
    font-size: 1rem;
  }
}
</style>

<style>
  .main-page-container {
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .main-container-flex {
    display: flex;
    align-items: stretch;
    gap: 30px;
    flex-wrap: nowrap;
  }
  
  /* President Message Card (Left) - 60% */
  .president-message-card {
    flex: 1 1 60%;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border-top: 5px solid #2563eb;
    position: relative;
    overflow: hidden;
  }
  
  .president-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(29, 78, 216, 0.1));
    border-radius: 0 0 0 100%;
  }
  
  .message-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
  }
  
  .president-profile {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .profile-image-container {
    position: relative;
    flex-shrink: 0;
  }
  
  .profile-image-container img {
    width: 137px;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    border: 3px solid white;
  }
  
  .profile-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #2563eb, #1d4ed8);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
    white-space: nowrap;
  }
  
  .profile-badge i {
    margin-right: 5px;
  }
  
  .profile-title h3 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .profile-title h3 i {
    color: #2563eb;
  }
  
  .salutation {
    font-size: 1.3rem;
    color: #475569;
    font-weight: 500;
  }
  
  .message-content {
    flex-grow: 1;
  }
  
  .highlight-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .highlight-icon {
    background: #2563eb;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
  }
  
  .highlight-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #1e293b;
    margin: 0;
  }
  
  .regular-message {
    margin-bottom: 25px;
  }
  
  .regular-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    text-align: justify;
  }
  
  .motto-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border: 1px solid #fbbf24;
  }
  
  .motto-icon {
    color: #d97706;
    font-size: 1.5rem;
  }
  
  .motto-text {
    text-align: center;
  }
  
  .motto-text h4 {
    font-size: 1.6rem;
    color: #92400e;
    margin-bottom: 8px;
  }
  
  .motto-text p {
    color: #92400e;
    font-size: 1.05rem;
  }
  
  .signature-section {
    text-align: right;
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px dashed #e2e8f0;
    position: relative;
  }
  
  .signature-line {
    width: 180px;
    height: 2px;
    background: #334155;
    margin: 0 0 15px auto;
  }
  
  .signature-details {
    margin-bottom: 10px;
  }
  
  .yours {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  
  .name {
    font-size: 1.8rem;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .designation {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .signature-stamp {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #dc2626;
    font-size: 2rem;
    opacity: 0.7;
  }
  
  /* Team Photo Card (Right) - FIXED PHOTO DISPLAY */
  .team-photo-card {
    flex: 1 1 38%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    border-top: 5px solid #10b981;
  }
  
  .photo-header {
    padding: 25px 25px 15px;
    text-align: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  }
  
  .photo-header h3 {
    font-size: 1.8rem;
    color: #065f46;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .photo-subtitle {
    color: #047857;
    font-size: 1.05rem;
    font-weight: 500;
  }
  
  /* FIXED PHOTO CONTAINER - Shows complete photo */
  .photo-container-fixed {
    position: relative;
    flex-grow: 1;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Ensure enough height for photo */
  }
  
  .photo-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    position: relative;
  }
  
  .team-photo-full {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain; /* Changed from cover to contain - shows complete photo */
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .photo-wrapper:hover .team-photo-full {
    transform: scale(1.02);
  }
  
  .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    padding: 15px;
    text-align: center;
  }
  
  .overlay-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
  }
  
  .overlay-text i {
    color: #fbbf24;
  }
  
  .photo-instruction {
    background: #e0f2fe;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #bae6fd;
  }
  
  .photo-instruction p {
    color: #0369a1;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .photo-instruction i {
    color: #2563eb;
  }
  
  .photo-info {
    display: flex;
    justify-content: space-around;
    padding: 25px 20px;
    background: white;
    border-bottom: 1px solid #e2e8f0;
  }
  
  .info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-weight: 500;
  }
  
  .info-item i {
    font-size: 1.5rem;
    color: #10b981;
    background: #f0fdf4;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .photo-footer {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    margin-top: auto;
  }
  
  .photo-footer p {
    color: #92400e;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .photo-footer i {
    color: #dc2626;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .main-container-flex {
      flex-wrap: wrap;
    }
    
    .president-message-card,
    .team-photo-card {
      flex: 1 1 100%;
    }
    
    .team-photo-card {
      order: -1;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .president-profile {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }
    
    .profile-image-container img {
      width: 120px;
      height: 130px;
    }
    
    .photo-container-fixed {
      min-height: 350px;
    }
    
    .president-message-card,
    .team-photo-card {
      padding: 20px;
    }
    
    .motto-section {
      flex-direction: column;
      gap: 10px;
    }
    
    .highlight-box {
      flex-direction: column;
      gap: 15px;
    }
    
    .highlight-icon {
      align-self: center;
    }
    
    .photo-info {
      flex-direction: column;
      gap: 20px;
    }
  }
</style>

<style>
/* Compact CSS with proper signature */
.president-message-card {
  padding: 10px;
  margin: 5px 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.message-header {
  margin-bottom: 8px;
}

.profile-title h3 {
  margin: 0 0 3px 0;
  font-size: 18px;
  color: #2c3e50;
}

.salutation {
  margin: 0;
  font-size: 15px;
  color: #7f8c8d;
}

/* Message Content */
.message-content {
  margin-top: 5px;
}

.highlight-box {
  background: #f8f9fa;
  padding: 8px 10px;
  border-left: 3px solid #d4af37;
  border-radius: 3px;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.highlight-icon {
  color: #d4af37;
  font-size: 14px;
  margin-top: 2px;
}

.highlight-box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.regular-message p {
  margin: 8px 0 10px 0;
  font-size: 14.5px;
  line-height: 1.5;
  text-align: justify;
}

/* Two Column Layout */
.two-column-section {
  display: flex;
  gap: 15px;
  margin: 10px 0;
  align-items: flex-start;
}

.benefits-section {
  flex: 2;
}

.president-photo-section {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

/* Benefits Section */
.benefits-section h5 {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 6px;
}

.benefits-list {
  margin: 0;
  padding-left: 18px;
}

.benefits-list li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.benefits-list li i {
  color: #27ae60;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* President Photo */
.profile-image-container {
  position: relative;
  margin-bottom: 8px;
}

.president-photo {
  width: 100%;
  max-width: 130px;
  height: auto;
  border-radius: 5px;
  border: 2px solid #d4af37;
}

.profile-badge {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  white-space: nowrap;
}

/* Motto Section in Photo Area */
.motto-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 6px;
  border-radius: 4px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.motto-icon {
  color: #d4af37;
  font-size: 12px;
}

.motto-text {
  flex: 1;
  text-align: center;
}

.motto-text h4 {
  margin: 0 0 2px 0;
  font-size: 14px;
  color: #2c3e50;
  line-height: 1.2;
}

.motto-text p {
  margin: 0;
  font-size: 11px;
  color: #7f8c8d;
}

/* Commitment Section */
.commitment-section {
  margin: 8px 0 10px 0;
}

.commitment-section h5 {
  margin: 0 0 6px 0;
  font-size: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 6px;
}

.commitment-list {
  margin: 0;
  padding-left: 18px;
}

.commitment-list li {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.commitment-list li i {
  color: #3498db;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Final Message */
.final-message {
  margin: 8px 0;
}

.emphasis {
  font-size: 15px;
  font-weight: 500;
  color: #2c3e50;
  margin: 0 0 8px 0;
  text-align: center;
  line-height: 1.5;
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}

.tagline p {
  margin: 0;
  font-size: 13px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Signature Section - Fixed and Professional */
.signature-section {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 2px solid #d4af37;
}

.signature-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-end;
  max-width: 400px;
  margin-left: auto;
}

.signature-left {
  flex-shrink: 0;
}

.signature-img {
  height: 60px;
  width: auto;
  max-width: 150px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.signature-right {
  text-align: left;
}

.signature-right p {
  margin: 0;
  line-height: 1.3;
}

.yours {
  font-size: 15px;
  color: #2c3e50;
  margin-bottom: 4px !important;
}

.name {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2px !important;
}

.designation {
  font-size: 14px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 2px !important;
}

.organization {
  font-size: 13px;
  color: #7f8c8d;
  font-style: italic;
  margin-bottom: 4px !important;
}

.new-year {
  font-size: 13px;
  color: #27ae60;
  font-weight: 500;
  margin-top: 4px !important;
}
</style>
