/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
	border-radius: 50%;
    gap: 15px;
}

.logo-img {
    height: 50px;
    width: auto;
	border-radius: 50%;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 50%, #1e40af 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5d0d2d;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #e0e7ff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e40af;
}

.btn-green {
    background: #10b981;
    color: white;
}

.btn-orange {
    background: #f59e0b;
    color: white;
}

.btn-purple {
    background: #8b5cf6;
    color: white;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item:nth-child(1) .stat-number { color: #3b82f6; }
.stat-item:nth-child(2) .stat-number { color: #10b981; }
.stat-item:nth-child(3) .stat-number { color: #8b5cf6; }
.stat-item:nth-child(4) .stat-number { color: #f59e0b; }

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.product-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Company Info Section */
.company-info {
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.full-width {
    grid-column: 1 / -1;
}

.card-header {
    padding: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.card-header i {
    font-size: 1.75rem;
}

.bg-blue { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.bg-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.bg-orange { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.card-content {
    padding: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 16px;
    color: #1f2937;
    font-weight: 500;
}

.cin-text {
    font-family: 'Courier New', monospace;
    background: #f3f4f6;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 16px !important;
}

.address-text {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-text i {
    color: #3b82f6;
    margin-top: 4px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 15px;
}

.contact-item i {
    color: #10b981;
    font-size: 18px;
    width: 20px;
}

.contact-item .label {
    font-weight: 600;
    margin-right: 8px;
}

.contact-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-person-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.person-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.designation {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.description {
    color: #6b7280;
    line-height: 1.6;
}

.person-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f3f4f6;
    border-radius: 8px;
}

.contact-detail i {
    color: #8b5cf6;
    font-size: 18px;
}

/* Financial Highlights */
.financial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.financial-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
}

.financial-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.financial-label {
    color: #6b7280;
    font-weight: 500;
}

.bg-orange-light { background: #fef3c7; }
.bg-orange-light .financial-value { color: #d97706; }

.bg-green-light { background: #d1fae5; }
.bg-green-light .financial-value { color: #059669; }

.bg-blue-light { background: #dbeafe; }
.bg-blue-light .financial-value { color: #2563eb; }

.bg-purple-light { background: #e9d5ff; }
.bg-purple-light .financial-value { color: #7c3aed; }

/* Branches Section */
.branches-section {
    background: white;
}

.branch-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.branch-nav-btn {
    padding: 12px 24px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.branch-nav-btn.active,
.branch-nav-btn:hover {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.branch-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.branch-card:hover {
    transform: translateY(-5px);
}

.branch-cover {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.branch-header {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 20px;
}

.branch-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.branch-type {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
}

.branch-manager {
    opacity: 0.9;
    font-size: 14px;
}

.branch-content {
    padding: 25px;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.branch-detail i {
    color: #3b82f6;
    margin-top: 4px;
    width: 16px;
}

.branch-detail strong {
    color: #374151;
    margin-right: 8px;
}

.specialties {
    margin-top: 20px;
}

.specialties h4 {
    color: #374151;
    margin-bottom: 12px;
    font-size: 16px;
}

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.branch-detail-header {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    display: flex;
    align-items: end;
    padding: 30px;
    color: white;
}

.branch-detail-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.branch-detail-info {
    position: relative;
    z-index: 10;
}

.branch-detail-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.branch-detail-type {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.branch-detail-content {
    padding: 40px;
}

.branch-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.branch-info-section h4 {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-info-section h4 i {
    color: #3b82f6;
}

.branch-info-list {
    list-style: none;
    padding: 0;
}

.branch-info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.branch-info-list li:last-child {
    border-bottom: none;
}

.branch-info-list i {
    color: #3b82f6;
    width: 20px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.facility-item {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #374151;
}

/* Disclosures Section */
.disclosures-section {
    background: white;
}

.disclosures-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.disclosure-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.disclosure-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
}

.disclosure-header:hover {
    opacity: 0.9;
}

.disclosure-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclosure-title i {
    font-size: 1.5rem;
}

.disclosure-title span:first-of-type {
    font-size: 1.25rem;
    font-weight: 700;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.disclosure-content {
    padding: 30px;
    display: none;
}

.disclosure-content.active {
    display: block;
}

.disclosure-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.detail-item {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.detail-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.amount-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.dividend-alert {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.claim-process {
    margin: 25px 0;
}

.claim-process h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #374151;
}

.meeting-notice {
    border: 2px solid #dbeafe;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    background: #f8fafc;
}

.notice-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.notice-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.notice-detail {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-detail i {
    color: #3b82f6;
}

.notice-detail-label {
    font-weight: 600;
    color: #1e40af;
}

.agenda {
    margin: 20px 0;
}

.agenda h5 {
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 12px;
}

.agenda ul {
    list-style: none;
    padding: 0;
}

.agenda li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.agenda li:last-child {
    border-bottom: none;
}

/* Impact Areas */
.impact-areas {
    margin: 30px 0;
}

.impact-areas h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.impact-item {
    padding: 20px;
    background: #f3e8ff;
    border-radius: 8px;
    text-align: center;
}

.impact-item i {
    color: #7c3aed;
    font-size: 2rem;
    margin-bottom: 10px;
}

.impact-item p {
    font-weight: 600;
    color: #7c3aed;
}

/* CSR Activities */
.csr-activities {
    margin: 30px 0;
}

.csr-activities h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 20px;
}

.csr-activity {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f3e8ff;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
    margin-bottom: 15px;
}

.csr-activity i {
    color: #7c3aed;
    margin-top: 4px;
}

.csr-activity p {
    color: #7c3aed;
    font-weight: 500;
    line-height: 1.6;
}

/* Directors Section */
.directors-section {
    background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.director-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.director-card:hover {
    transform: translateY(-5px);
}

.director-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.director-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.director-designation {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 12px;
}

.director-qualification {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.director-experience {
    color: #6b7280;
    font-size: 14px;
}

/* Awards Section */
.awards-section {
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.awards-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.awards-column h3 i {
    font-size: 2rem;
}

.awards-column h3 i.fa-award {
    color: #f59e0b;
}

.awards-column h3 i.fa-shield-alt {
    color: #10b981;
}

.award-item {
    background: white;
    border: 2px solid #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateX(5px);
}

.award-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 8px;
}

.award-by {
    color: #6b7280;
    margin-bottom: 4px;
}

.award-year {
    color: #f59e0b;
    font-weight: 600;
}

.certification-item {
    background: white;
    border: 2px solid #d1fae5;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.certification-item:hover {
    transform: translateX(5px);
}

.certification-item i {
    color: #10b981;
    font-size: 1.5rem;
}

.certification-text {
    font-weight: 600;
    color: #1f2937;
}

/* Compliance Section */
.compliance-section {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 80px 0;
}

.compliance-content {
    text-align: center;
}

.compliance-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.compliance-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.compliance-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-blue {
    background: #3b82f6;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.badge-green {
    background: #10b981;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.badge-purple {
    background: #8b5cf6;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-badge {
    background: #374151;
    color: #d1d5db;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #4b5563;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #d1d5db;
}

.footer-contact i {
    color: #3b82f6;
    width: 20px;
}

.footer-contact a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-person-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .financial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .compliance-content h2 {
        font-size: 2.5rem;
    }
    
    .compliance-text {
        padding: 30px 20px;
    }
    
    .compliance-text p {
        font-size: 1.1rem;
    }
    
    .branch-detail-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 95vh;
    }
    
    .branch-detail-header {
        height: 250px;
        padding: 20px;
    }
    
    .branch-detail-name {
        font-size: 1.5rem;
    }
    
    .branch-detail-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .financial-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .compliance-content h2 {
        font-size: 2rem;
    }
    
    .branch-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-nav-btn {
        width: 200px;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
