/* Hero styling */
.hero {
    position: relative;
    height: 40vh;
    display: flex;
    align-items: center;
    background-color: #0f172a;
    overflow: hidden;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    /* max-width: 70rem; */
    margin: 0 auto;
    /* padding: 0 1rem; */
}
.hero-subtitle {
    display: block;
    color: #60a5fa;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.hero-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 48rem;
    line-height: 1.6;
    font-weight: 300;
}
/* Responsive adjustments for mobile (usually 768px and below) */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Allow content to dictate height on small screens */
        min-height: 50vh;
        padding: 4rem 0; /* Add vertical padding since height isn't fixed */
        text-align: center; /* Center text for a better mobile look */
    }

    .hero-content {
        padding: 0 1.5rem; /* Slightly more side padding for small screens */
    }

    .hero-title {
        font-size: 2.5rem; /* Scale down the 4rem font so it doesn't break */
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: 1.1rem; /* Slightly smaller text */
        margin: 0 auto; /* Center the text block since max-width is set */
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem; /* Even smaller for very narrow phones */
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }
}

/* General Section Styling */
.journey-section {
    padding: 6rem 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* .container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
} */
/* 
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
} */
.journey-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .journey-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Content */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    color: #1e293b; /* slate-900 */
    line-height: 1.3;
}

@media (min-width: 768px) {
    .title {
        font-size: 1.875rem;
    }
}

.divider {
    width: 5rem;
    height: 0.375rem;
    background-color: #2563eb; /* blue-600 */
    border-radius: 9999px;
}

.paragraph {
    font-size: 1rem;
    color: #475569; /* slate-600 */
    line-height: 1.7;
}

.quote-wrapper {
    padding-top: 1rem;
}

.quote {
    border-left: 4px solid #22c55e; /* green-500 */
    padding-left: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
}

/* Right Content */
.image-content {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.4), transparent);
}

/* Info Box */
.info-box {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9; /* slate-100 */
    max-width: 250px;
    display: none;
}

@media (min-width: 768px) {
    .info-box {
        display: block;
    }
}

.info-title {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.info-text {
    font-size: 0.8rem;
    color: #64748b; /* slate-500 */
}

/* Section */
.mission-vision-section {
    padding: 6rem 0;
    background-color: #f8fafc; /* slate-50 */
    font-family: Arial, sans-serif;
}

/* Container */
/* .container {
    max-width: 70rem;
    margin: 0 auto;
    padding: 0 1.5rem;
} */

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card Base */
.card {
    padding: 3rem;
    border-radius: 2.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Light Card */
.light-card {
    background-color: #ffffff;
    border: 1px solid #f1f5f9; /* slate-100 */
}

.light-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Dark Card */
.dark-card {
    background-color: #0f172a; /* slate-900 */
    color: #ffffff;
}

.dark-card:hover {
    box-shadow: 0 12px 30px rgba(30, 58, 138, 0.2); /* blue shadow */
}

/* Icon */
.icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.icon svg {
    width: 2rem;
    height: 2rem;
}

/* Light Icon */
.light-icon {
    background-color: #eff6ff; /* blue-50 */
    color: #2563eb; /* blue-600 */
}

/* Dark Icon */
.dark-icon {
    background-color: #2563eb; /* blue-600 */
    color: #ffffff;
}

/* Titles */
.card-title {
    font-size: 1.5rem; /* text-3xl */
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Text */
.card-text {
    font-size: 1.1rem; /* text-xl */
    line-height: 1.75rem;
    color: #475569; /* slate-600 */
}

.dark-card .card-text {
    color: #cbd5e1; /* slate-300 */
    font-weight: 300;
}

/* Section */
.asar-values-block {
    padding: 6rem 0;
    background-color: #ffffff;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

/* Wrapper */
.asar-wrapper {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.asar-header {
    text-align: center;
    margin-bottom: 4rem;
}

.asar-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .asar-heading {
        font-size: 1.9rem;
    }
}

.asar-subheading {
    font-size: 1.1rem;
    color: #64748b;
}

/* Grid */
.asar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .asar-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Item */
.asar-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    text-align: center;
    transition: all 0.3s ease;
}

.asar-item:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon */
.asar-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.asar-item:hover .asar-icon {
    transform: scale(1.25);
}

/* Label */
.asar-label {
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0f172a;
}
/* Mobile Responsive: 2 Columns */
@media (max-width: 767px) {
    .asar-grid {
        /* Keeps two cards side-by-side */
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem; /* Smaller gap to save space */
    }

    .asar-wrapper {
        padding: 0 0.75rem; /* Reduce outer padding */
    }

    .asar-item {
        padding: 1.25rem 0.75rem; /* Smaller padding inside cards */
    }

    .asar-icon {
        font-size: 1.5rem; /* Smaller icons */
        margin-bottom: 0.5rem;
    }

    .asar-label {
        font-size: 0.7rem; /* Smaller text to prevent overlapping */
        letter-spacing: 0.05em;
    }

    .asar-heading {
        font-size: 1.5rem;
    }
}

/* Fix for very small phones (under 360px) */
@media (max-width: 360px) {
    .asar-label {
        font-size: 0.6rem;
    }
}

/* Section Background */
.methodology-block {
    padding: 6rem 0;
    background: linear-gradient(135deg, #064e3b 0%, #1e3a8a 100%);
    color: #ffffff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

/* Container */
.methodology-container {
    /* max-width: 70rem; */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.methodology-header {
    max-width: 40rem;
    margin-bottom: 4rem;
}

.methodology-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.methodology-subtitle {
    font-size: 1.1rem;
    line-height: 1.75rem;
    color: #dbeafe; /* light blue */
}

/* Grid */
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Items */
.methodology-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.methodology-number {
    font-size: 1.7rem;
    font-weight: bold;
    color: #34d399; /* green-400 */
}

.methodology-heading {
    font-size: 1.1rem;
    font-weight: bold;
}

.methodology-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(219, 234, 254, 0.7); /* blue-100/70 */
}

/* Section */
.leadership-section {
    padding: 6rem 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Container */
.leadership-container {
    /* max-width: 70rem; */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.leadership-header {
    text-align: center;
    margin-bottom: 4rem;
}

.leadership-title {
    font-size: 2rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .leadership-title {
        font-size: 1.9rem;
    }
}

.leadership-subtitle {
    font-size: 0.9rem;
    color: #64748b;
}

/* Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}
.leadership-grid:has(.leader-card:only-child) {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Card */
.leader-card {
    background-color: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 3rem;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    max-width: 420px;
    width: 100%;
}

.leader-card:hover {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Photo */
.leader-photo {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.leader-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.leader-card:hover .leader-photo img {
    filter: grayscale(0%);
}

/* Name & Role */
.leader-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.leader-role {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Quote */
.leader-quote {
    font-size: 0.98rem;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
}

/* Socials */
.leader-socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: #94a3b8;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2563eb;
}

/* Section */
.career-section {
    padding: 6rem 0;
    background-color: #f8fafc; /* slate-50 */
    text-align: center;
    border-top: 1px solid #f1f5f9; /* slate-100 */
    font-family: Arial, sans-serif;
}

/* Container */
.career-container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Title */
.career-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0f172a; /* slate-900 */
    margin-bottom: 2rem;
    font-style: italic;
    font-family: Georgia, serif; /* brand font style */
}

@media (min-width: 768px) {
    .career-title {
        font-size: 1.5rem;
    }
}

/* Button */
.career-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0f172a; /* slate-900 */
    color: #ffffff;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.career-button:hover {
    background-color: #2563eb; /* blue-600 */
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
}

.team-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.team-table thead {
    background: #1e293b;
    color: #ffffff;
}

.team-table th,
.team-table td {
    padding: 12px 16px;
    text-align: left;
}

.team-table th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.2s ease;
}

.team-table tbody tr:hover {
    background: #f8fafc;
}

.team-table td {
    font-size: 14px;
    color: #374151;
}

/* Social Icons */
.social-icons a {
    margin-right: 10px;
    font-size: 18px;
    color: #64748b;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Individual hover colors */
.social-icons a:hover .ri-linkedin-fill {
    color: #0a66c2;
}

.social-icons a:hover .ri-facebook-fill {
    color: #1877f2;
}

.social-icons a:hover .ri-instagram-line {
    color: #e1306c;
}

.social-icons a:hover .ri-twitter-x-line {
    color: #000000;
}
/* S.N. column (first child) */
.team-table th:first-child,
.team-table td:first-child {
    width: 60px;
    text-align: center;
}

/* Social column (last child) */
.team-table th:last-child,
.team-table td:last-child {
    width: 200px; /* adjust as needed */
    text-align: center; /* optional */
    white-space: nowrap; /* prevents icons wrapping */
}
