:root {
    --primary-orange: #f39c12;
    --dark-blue: #1a1a2e;
    --bg-light: #fffdf9;
    --text-gray: #666;
    --card-bg: #fff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg-light); color: var(--dark-blue); line-height: 1.6; }

/* Header */
header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 8%; background: white; position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo img { height: 40px; }
nav a { text-decoration: none; color: #444; margin: 0 15px; font-weight: 600; font-size: 0.9rem; }
.contact-btn { background: var(--primary-orange); color: white; border: none; padding: 8px 20px; border-radius: 6px; cursor: pointer; }

/* Main Container */
.main-container { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* Profile Sections */
.profile-section {
    display: flex; align-items: center; gap: 50px; padding: 80px 0; flex-wrap: wrap; justify-content: center;
}
.profile-section.reverse { flex-direction: row-reverse; }

.image-wrapper { position: relative; }
.image-card { background: wheat; padding: 12px; border-radius: 30px; box-shadow: var(--shadow); }
.image-card img { width: 320px; border-radius: 20px; display: block; }

.floating-badge {
    position: absolute; bottom: -15px; left: -15px; background: white;
    padding: 12px 20px; border-radius: 15px; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.badge-icon { background: var(--primary-orange); color: white; width: 35px; height: 35px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* Content Styling */
.visionary-tag { background: #ffecec; color: #e74c3c; padding: 5px 15px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }
h1 { font-size: 2.5rem; margin-top: 10px; }
.gradient-text { background: linear-gradient(to right, #e74c3c, #6c5ce7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.role { font-weight: 600; color: var(--text-gray); margin-bottom: 20px; }
.bio { font-size: 1rem; color: #555; max-width: 500px; margin-bottom: 30px; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.stat-card { background: white; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
.stat-card h3 { color: var(--primary-orange); font-size: 1.5rem; }
.stat-card p { font-size: 0.7rem; font-weight: 700; color: var(--text-gray); text-transform: uppercase; }

/* Vision & Quote */
.vision-section { padding: 60px 0; text-align: center; }
.main-vision-card { background: white; padding: 30px; border-radius: 25px; border-top: 5px solid var(--primary-orange); display: flex; gap: 20px; text-align: left; margin-bottom: 20px; box-shadow: var(--shadow); }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sub-card { background: white; padding: 25px; border-radius: 25px; border-left: 5px solid var(--primary-orange); text-align: left; box-shadow: var(--shadow); }
.quote-box { background: linear-gradient(135deg, #ff7e20 0%, #fbc531 100%); color: white; padding: 50px; border-radius: 20px; margin-top: 40px; }

/* Contact Section */
.contact-section { padding: 80px 0; text-align: center; }
.info-list { display: flex; flex-direction: column; gap: 15px; align-items: center; margin: 30px 0; }
.info-item { text-decoration: none; color: inherit; background: white; width: 100%; max-width: 400px; padding: 20px; border-radius: 15px; display: flex; gap: 15px; box-shadow: var(--shadow); transition: 0.3s; }
.info-item:hover { transform: translateY(-5px); }

.mail-direct { background: #F7E7CE; padding: 40px; border-radius: 20px; margin-top: 30px; }
.mail-btn { display: inline-block; background: var(--primary-orange); color: white; padding: 15px 30px; border-radius: 50px; text-decoration: none; font-weight: bold; margin-top: 20px; box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3); }

/* Footer */
footer { background: #1a1c24; color: white; padding: 60px 8% 20px; margin-top: 50px; border-radius: 30px 30px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-logo-img { height: 60px; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #ccc; text-decoration: none; }
.copyright { text-align: center; padding-top: 40px; border-top: 1px solid #333; margin-top: 40px; font-size: 0.8rem; color: #888; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .profile-section { flex-direction: column; text-align: center; }
    .vision-grid, .footer-grid { grid-template-columns: 1fr; }
    .bio { margin: 0 auto 30px; }
}
/* பட்டன் இருக்கும் வரிசையைச் சீரமைக்க (Container) */
.footer-btns {
    display: flex;
    justify-content: center; /* பட்டனை நடுவில் வைக்க */
    gap: 15px;               /* ஒன்றுக்கும் மேற்பட்ட பட்டன்கள் இருந்தால் இடைவெளி விட */
    margin: 20px 0;
}

/* பொதுவான பட்டன் ஸ்டைல் */
.btn {
    padding: 12px 28px;
    border-radius: 8px;      /* மூலைகளை வளைக்க */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease; /* மாற்றங்கள் மென்மையாக நடக்க */
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ஆரஞ்சு நிற பட்டன் ஸ்டைல் (btn-orange) */
.btn-orange {
    background-color: #f39c12; /* பிரகாசமான ஆரஞ்சு */
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); /* லேசான நிழல் */
}

/* மவுஸை பட்டன் மேல் வைக்கும்போது (Hover Effect) */
.btn-orange:hover {
    background-color: #e67e22; /* நிறம் சற்று அடர்த்தியாகும் */
    transform: translateY(-3px); /* பட்டன் லேசாக மேலே உயரும் */
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* பட்டனை அழுத்தும் போது (Active Effect) */
.btn-orange:active {
    transform: translateY(-1px);
}
