/* ============================================================
   RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    overflow-x: hidden;
}

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

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: #0d1b3e;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid #ffc107;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: #ffc107;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-right a {
    color: #fff;
    transition: color 0.3s;
}

.top-bar-right a:hover {
    color: #ffc107;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 24px;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.2;
}

.logo p {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #2d2d2d;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a237e;
    transition: width 0.3s;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: #1a237e;
}

.btn-membership {
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-membership::after {
    display: none;
}

.btn-membership:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 35, 126, 0.3);
    color: #fff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a237e;
    border-radius: 3px;
    transition: 0.3s;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 35, 126, 0.35);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #fff;
    color: #1a237e;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #0d1b3e, #1a237e);
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-badge i {
    margin-right: 8px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #ffc107;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #ffc107;
}

.hero-stat .stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-shape svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    font-weight: 500;
    color: #2d2d2d;
}

.trust-item i {
    font-size: 24px;
    color: #1a237e;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 35, 126, 0.08);
    color: #1a237e;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.2;
}

.section-title span {
    color: #ffc107;
}

.section-subtitle {
    color: #666;
    font-size: 18px;
    margin-top: 10px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
    padding: 80px 0;
    background: #f8f9fc;
}

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

.feature-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 35, 126, 0.1);
    border-color: #1a237e;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #1a237e;
}

.feature-card h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 12px;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    margin-bottom: 18px;
}

.feature-link {
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.feature-link:hover {
    gap: 15px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.home-about {
    padding: 80px 0;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.experience-badge .year {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ffc107;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
}

.about-text .section-tag {
    margin-bottom: 15px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: #ffc107;
}

.about-text p {
    color: #555;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2d2d2d;
}

.about-feature i {
    color: #1a237e;
    font-size: 18px;
}

/* ============================================================
   BRANCHES
   ============================================================ */
.branches {
    padding: 80px 0;
    background: #f8f9fc;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.branch-item {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.branch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #1a237e;
}

.branch-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.branch-icon i {
    font-size: 32px;
    color: #1a237e;
    background: rgba(26, 35, 126, 0.08);
    padding: 15px;
    border-radius: 12px;
}

.branch-code {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffc107;
    color: #1a237e;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.branch-item h3 {
    font-size: 18px;
    color: #1a237e;
    margin-bottom: 5px;
}

.branch-item p {
    color: #888;
    font-size: 13px;
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact {
    padding: 60px 0;
    background: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-card {
    text-align: center;
    padding: 30px;
    border-right: 2px solid #f0f0f0;
}

.impact-card:last-child {
    border-right: none;
}

.impact-number {
    font-size: 42px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.2;
}

.impact-label {
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    margin: 5px 0 8px;
}

.impact-card p {
    color: #888;
    font-size: 14px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
    position: relative;
    background: linear-gradient(135deg, #0d1b3e, #1a237e);
    padding: 80px 0;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta h2 span {
    color: #ffc107;
}

.cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-secondary:hover {
    background: #fff;
    color: #1a237e;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #0d1b3e;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
    color: #ffc107;
}

.footer-logo h3 {
    font-size: 20px;
    color: #fff;
}

.footer-logo p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #ffc107;
}

.footer-col ul li i {
    color: #ffc107;
    font-size: 8px;
}

.footer-col ul.contact-info li {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-col ul.contact-info li i {
    font-size: 16px;
    color: #ffc107;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffc107;
    color: #0d1b3e;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    background: rgba(0,0,0,0.2);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
    background: linear-gradient(135deg, #0d1b3e, #1a237e);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header-content .section-tag.light {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 15px 0;
}

.page-header-content h1 span {
    color: #ffc107;
}

.page-header-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   ABOUT PAGE - STORY SECTION
   ============================================================ */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content .section-tag {
    margin-bottom: 15px;
}

.story-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.story-content h2 span {
    color: #ffc107;
}

.story-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.story-stat {
    text-align: center;
    padding: 20px;
    background: #f8f9fc;
    border-radius: 12px;
}

.story-stat .number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
}

.story-stat .label {
    font-size: 13px;
    color: #666;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.story-badge i {
    font-size: 24px;
    color: #ffc107;
}

.story-badge span {
    font-size: 14px;
    font-weight: 500;
}

/* ============================================================
   ABOUT PAGE - MISSION & VISION
   ============================================================ */
.mission-vision {
    padding: 60px 0;
    background: #f8f9fc;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

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

.mv-card.mission {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(26, 35, 126, 0.1);
}

.mv-card.vision {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.08), rgba(26, 35, 126, 0.08));
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #1a237e;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mv-card h3 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 15px;
}

.mv-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE - STATS
   ============================================================ */
.about-stats {
    padding: 60px 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-card .stat-number {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: #888;
}

/* ============================================================
   ABOUT PAGE - BRANCHES
   ============================================================ */
.about-branches {
    padding: 80px 0;
    background: #f8f9fc;
}

/* ============================================================
   ABOUT PAGE - TIMELINE
   ============================================================ */
.timeline-section {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, #1a237e, #ffc107);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding: 20px 0;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a237e;
    box-shadow: 0 0 0 4px #1a237e, 0 5px 20px rgba(26, 35, 126, 0.2);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-icon {
    box-shadow: 0 0 0 4px #ffc107, 0 5px 20px rgba(255, 193, 7, 0.2);
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.timeline-content .timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #ffc107;
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */
.services-header {
    background: linear-gradient(135deg, #0d1b3e, #1a237e);
    position: relative;
}

.services-overview {
    padding: 60px 0;
    background: #fff;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.overview-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8f9fc;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #1a237e;
}

.overview-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a237e;
    flex-shrink: 0;
}

.overview-content h3 {
    font-size: 16px;
    color: #1a237e;
    margin-bottom: 5px;
}

.overview-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.main-services {
    padding: 80px 0;
    background: #f8f9fc;
}

.services-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-main {
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
}

.service-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: #1a237e;
}

.service-card-main.featured {
    border: 2px solid #1a237e;
    background: linear-gradient(135deg, #fff, #f8f9fc);
}

.service-card-main.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a237e, #ffc107);
    border-radius: 16px 16px 0 0;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-icon-large {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #1a237e;
}

.service-badge {
    background: #ffc107;
    color: #1a237e;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-main h3 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 12px;
}

.service-card-main > p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #555;
    font-size: 14px;
}

.service-features li i {
    color: #1a237e;
    font-size: 16px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a237e;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.service-btn i {
    transition: transform 0.3s;
}

.service-btn:hover {
    color: #ffc107;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-features-section {
    padding: 80px 0;
    background: #fff;
}

.features-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fc;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #1a237e;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: #1a237e;
}

.benefit-item h4 {
    font-size: 15px;
    color: #1a237e;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.process-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: relative;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #1a237e, #0d1b3e);
    color: #ffc107;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #1a237e;
}

.step-item h4 {
    font-size: 20px;
    color: #1a237e;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
.contact-page {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.contact-form h2 {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d2d2d;
    font-size: 14px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a237e;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #1a237e;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.alert i {
    font-size: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i {
    color: #dc3545;
}

.contact-info {
    padding: 40px;
    background: #f8f9fc;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
}

.contact-info h2 {
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-color: #1a237e;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a237e;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 15px;
    color: #1a237e;
    margin-bottom: 3px;
}

.info-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.info-item p small {
    display: block;
    color: #999;
    font-size: 13px;
}

.map-section {
    padding: 0 0 80px 0;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: none;
}

.branch-locations-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.branch-list-contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.branch-item-contact {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.branch-item-contact:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #1a237e;
}

.branch-item-contact .branch-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.08), rgba(255, 193, 7, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 22px;
    color: #1a237e;
}

.branch-item-contact h3 {
    font-size: 17px;
    color: #1a237e;
    margin-bottom: 4px;
}

.branch-item-contact .branch-code-display {
    display: inline-block;
    background: #ffc107;
    color: #1a237e;
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.branch-item-contact p {
    color: #888;
    font-size: 13px;
    margin: 5px 0 0;
}

/* ============================================================
   RESPONSIVE STYLES
   ============================================================ */
@media (max-width: 1024px) {
    .branches-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid-main {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .branch-list-contact {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .about-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-card {
        border-right: none;
        border-bottom: 2px solid #f0f0f0;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image img {
        height: 300px;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        order: 2;
    }

    .contact-info {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border-top: 2px solid #f0f0f0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a::after {
        display: none;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .hero-stat .stat-number {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .top-bar-left {
        justify-content: center;
        gap: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: -10px;
        right: 10px;
        padding: 15px 20px;
    }

    .experience-badge .year {
        font-size: 24px;
    }

    .cta h2 {
        font-size: 28px;
    }

    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-header-content h1 {
        font-size: 30px;
    }

    .story-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-start;
        padding-left: 60px;
    }

    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }

    .timeline-icon {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .timeline-content {
        width: 100%;
    }

    .story-badge {
        bottom: 15px;
        left: 15px;
        padding: 10px 18px;
        font-size: 12px;
    }

    .story-badge i {
        font-size: 18px;
    }

    .services-grid-main {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .overview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .service-card-main {
        padding: 25px 20px;
    }

    .service-card-main.featured {
        border-width: 2px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-info {
        padding: 25px 20px;
    }

    .branch-list-contact {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .branches-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-stat .stat-number {
        font-size: 24px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-card {
        border-bottom: 2px solid #f0f0f0;
        padding: 20px;
    }

    .impact-card:last-child {
        border-bottom: none;
    }

    .section-title {
        font-size: 24px;
    }

    .about-stats .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card .stat-number {
        font-size: 18px;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .page-header-content h1 {
        font-size: 24px;
    }

    .features-benefits {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 18px 10px;
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .service-icon-large {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .service-badge {
        font-size: 10px;
        padding: 3px 10px;
    }

    .step-item {
        padding: 30px 20px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 12px;
        top: -10px;
        right: -10px;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .overview-card {
        padding: 18px;
        flex-direction: column;
        text-align: center;
    }

    .branch-list-contact {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .branch-item-contact {
        padding: 18px 12px;
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 22px;
    }

    .info-item {
        padding: 12px;
    }

    .info-item i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .map-container iframe {
        height: 220px;
    }

    .service-features li {
        font-size: 13px;
    }

    .service-card-main h3 {
        font-size: 19px;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-primary { color: #1a237e; }
.text-gold { color: #ffc107; }
.text-white { color: #fff; }
.text-muted { color: #888; }

.bg-primary { background: #1a237e; }
.bg-gold { background: #ffc107; }
.bg-light { background: #f8f9fc; }
.bg-white { background: #fff; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.py-1 { padding-top: 10px; padding-bottom: 10px; }
.py-2 { padding-top: 20px; padding-bottom: 20px; }
.py-3 { padding-top: 30px; padding-bottom: 30px; }
.py-4 { padding-top: 40px; padding-bottom: 40px; }
.py-5 { padding-top: 50px; padding-bottom: 50px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

@media (max-width: 768px) {
    .text-center-mobile { text-align: center; }
    .flex-column-mobile { flex-direction: column; }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hover-lift {
    transition: transform 0.3s;
}

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

.hover-shadow {
    transition: box-shadow 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
/* ============================================================
   KEY PERSONS SECTION
   ============================================================ */
.key-persons {
    padding: 80px 0;
    background: #f8f9fc;
}

.persons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.person-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.person-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border-color: #1a237e;
}

.person-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: #e8edf2;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.person-card:hover .person-image img {
    transform: scale(1.05);
}

.person-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transition: bottom 0.3s;
}

.person-card:hover .person-social {
    bottom: 0;
}

.person-social a {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a237e;
    transition: all 0.3s;
    text-decoration: none;
}

.person-social a:hover {
    background: #1a237e;
    color: #fff;
    transform: translateY(-3px);
}

.person-info {
    padding: 25px;
}

.person-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 4px;
}

.person-designation {
    display: inline-block;
    background: rgba(26, 35, 126, 0.08);
    color: #1a237e;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.person-description {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.person-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.person-details span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #888;
}

.person-details span i {
    color: #1a237e;
    width: 16px;
    font-size: 14px;
}

/* ============================================================
   KEY PERSONS RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .persons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .persons-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .person-image {
        height: 250px;
    }

    .person-social {
        bottom: 0;
    }
}

@media (max-width: 480px) {
    .person-image {
        height: 220px;
    }

    .person-info {
        padding: 18px;
    }

    .person-info h3 {
        font-size: 18px;
    }

    .person-details span {
        font-size: 12px;
    }
}
/* ============================================================
   LOGO STYLES
   ============================================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 800;
    color: #1a237e;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ============================================================
   FOOTER LOGO STYLES
   ============================================================ */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    padding: 5px;
}

.footer-logo h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.footer-logo p {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE LOGO
   ============================================================ */
@media (max-width: 768px) {
    .logo-img {
        width: 45px;
        height: 45px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

    .footer-logo h3 {
        font-size: 18px;
    }

    .footer-logo p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 38px;
        height: 38px;
    }

    .logo-text h1 {
        font-size: 17px;
    }

    .logo-text p {
        font-size: 9px;
    }
}
/* Logo Styles - No Heart Icon */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.2;
}

.logo p {
    font-size: 12px;
    color: #666;
    font-weight: 400;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 20px;
    color: #fff;
}

.footer-logo p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    .logo h1 {
        font-size: 18px;
    }
    .logo p {
        font-size: 10px;
    }
    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
    }
    .logo h1 {
        font-size: 15px;
    }
    .logo p {
        font-size: 9px;
    }
    .footer-logo-img {
        height: 35px;
    }
}
/* About Image - Full Image Fit */
.about-img {
    width: 400%;
    height: 450px;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
    border-radius: 20px;
}

/* If you want to maintain aspect ratio with padding */
.about-image-wrapper {
    background: #f8f9fc;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Responsive */
@media (max-width: 992px) {
    .about-image-wrapper img {
        height: 350px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .about-image-wrapper img {
        height: 280px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper img {
        height: 220px;
        padding: 10px;
    }
}

/* ============================================================
   CONTACT HEADER PHOTO BACKGROUND
   ============================================================ */
.hero-photo-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.86), rgba(26, 35, 126, 0.64));
}

.hero-photo-background-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.85s ease, transform 6s ease;
}

.hero-photo-background-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero .hero-overlay {
    z-index: 1;
}

.hero .hero-content {
    z-index: 2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   GALLERY ADMIN
   ============================================================ */
.gallery-admin-page {
    min-height: 100vh;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fc, #eef1fa);
}

.gallery-admin {
    max-width: 920px;
}

.gallery-admin-back {
    display: inline-block;
    margin-bottom: 20px;
    color: #1a237e;
    font-weight: 600;
    text-decoration: none;
}

.gallery-admin-card {
    padding: 42px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(13, 27, 62, 0.12);
}

.gallery-admin-card h1 {
    margin: 10px 0;
    color: #1a237e;
    font-size: 32px;
}

.gallery-admin-card > p,
.gallery-admin-heading p {
    color: #666;
}

.gallery-form {
    display: grid;
    gap: 11px;
    max-width: 580px;
    margin-top: 28px;
}

.gallery-form label {
    color: #1a237e;
    font-size: 14px;
    font-weight: 600;
}

.gallery-form label span {
    color: #888;
    font-weight: 400;
}

.gallery-form input {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #dfe3ef;
    border-radius: 9px;
    color: #2d2d2d;
    font: inherit;
}

.gallery-form input:focus {
    border-color: #1a237e;
    outline: 2px solid rgba(26, 35, 126, 0.12);
}

.gallery-form .btn-primary {
    justify-content: center;
    margin-top: 7px;
}

.gallery-notice {
    margin: 18px 0;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.gallery-notice.success {
    color: #146c43;
    background: #d1e7dd;
}

.gallery-notice.error {
    color: #9f2020;
    background: #fde1e1;
}

.gallery-admin-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.gallery-admin-heading a,
.gallery-delete {
    color: #b42318;
    background: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
}

.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-admin-grid article {
    overflow: hidden;
    border: 1px solid #e6e8ef;
    border-radius: 12px;
}

.gallery-admin-grid img {
    display: block;
    width: 100%;
    height: 155px;
    object-fit: cover;
}

.gallery-admin-grid article > div {
    padding: 13px;
}

.gallery-admin-grid p {
    min-height: 44px;
    margin-bottom: 8px;
    color: #555;
    font-size: 13px;
}

@media (max-width: 768px) {
    .gallery-admin-page { padding: 30px 0; }
    .gallery-admin-card { padding: 28px 22px; }
    .gallery-admin-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .gallery-admin-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
    .gallery-admin-grid { grid-template-columns: 1fr; }
}