/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    color: #1e2a3a;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #b88b4a;
    border-radius: 2px;
}

.section {
    padding: 70px 0;
    border-bottom: 1px solid #e9ecef;
}

.section-light {
    background-color: #faf9f7;
}

.justify-text {
    text-align: justify;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b88b4a;
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #b88b4a;
    color: #b88b4a;
}

.btn-outline:hover {
    background: #b88b4a;
    color: white;
}

.btn:hover {
    background: #9c6f3a;
    transform: translateY(-2px);
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e3a3a;
}

.logo p {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #b88b4a;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2c3e4e;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #b88b4a;
}

.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f9f5ef 0%, #fff 100%);
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
}

.tagline {
    color: #b88b4a;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-badge {
    background: #e9dfd1;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    margin: 20px 0 12px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
}

.hero-stats div strong {
    font-size: 1.5rem;
    color: #b88b4a;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.about-text {
    flex: 2;
}

.founder-card {
    flex: 1;
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border: 1px solid #ede0d0;
    text-align: center;
}

.founder-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #b88b4a;
    margin-bottom: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.founder-img:hover {
    transform: scale(1.02);
}

.founder-card hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ede0d0;
}

/* ========================================
   MENTORSHIP SECTION
   ======================================== */
.mentorship-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.mentor-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.mentor-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #b88b4a;
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mentor-img:hover {
    transform: scale(1.02);
}

.mentor-image h3 {
    margin-top: 20px;
    font-size: 1.6rem;
    color: #1e3a3a;
}

.mentor-title {
    font-size: 1rem;
    color: #b88b4a;
    font-weight: 500;
}

.mentor-content {
    flex: 2;
    min-width: 280px;
}

.mentor-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.expertise-tags {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.expertise-tags span {
    background: #f3efe8;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e2a3a;
}

.expertise-tags span i {
    color: #b88b4a;
    margin-right: 8px;
}

/* ========================================
   SERVICES LIST SECTION (NEW)
   ======================================== */
.services-list-section {
    background: #ffffff;
}

.services-grid-custom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-item {
    background: #faf9f7;
    border: 1px solid #ede6dd;
    border-radius: 16px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #b88b4a;
    background: white;
}

.service-icon-small {
    width: 50px;
    height: 50px;
    background: #e9dfd1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small i {
    font-size: 1.4rem;
    color: #b88b4a;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e2a3a;
    margin: 0;
}

.service-item p {
    font-size: 0.8rem;
    color: #6c7a8a;
    margin: 4px 0 0;
}

.section-subtitle {
    text-align: center;
    color: #6c7a8a;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* ========================================
   SERVICES SECTION (DETAILED)
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    transition: all 0.25s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.02);
    border: 1px solid #ede6dd;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    border-color: #dac29c;
}

.service-icon {
    font-size: 2.2rem;
    color: #b88b4a;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card p {
    color: #4a5b6b;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.expand-link {
    color: #b88b4a;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.detail-text {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #e2d9cf;
    font-size: 0.9rem;
    color: #2d3e4f;
    display: none;
}

.detail-text.show {
    display: block;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    background: #fff;
    padding: 28px 20px;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border: 1px solid #f0e7dd;
    transition: transform 0.2s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #b88b4a;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-info {
    background: #f3efe8;
    border-radius: 28px;
    padding: 32px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.contact-info div {
    flex: 1;
    min-width: 180px;
}

.contact-info i {
    margin-right: 10px;
    color: #b88b4a;
}

.contact-info a {
    text-decoration: none;
    color: #1e2a3a;
}

.contact-info a:hover {
    color: #b88b4a;
}

.contact-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    margin-top: 30px;
}

.map-container {
    flex: 1;
    min-width: 240px;
}

.map-container iframe {
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    height: 220px;
    border: 0;
}

.office-timing {
    background: #eae3d8;
    padding: 12px 24px;
    border-radius: 60px;
    display: inline-block;
    font-weight: 500;
    margin-top: 16px;
    font-size: 0.85rem;
}

.contact-social {
    flex: 1;
    min-width: 240px;
}

.contact-social h3 {
    margin-bottom: 12px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    color: #1e2a3a;
    margin-right: 20px;
    font-size: 1.6rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: #b88b4a;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1e2a2e;
    color: #cfd8dc;
    padding: 40px 0 24px;
    font-size: 0.85rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* ========================================
   MODAL (Lightbox)
   ======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.close-modal, .close-mentor-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.close-modal:hover, .close-mentor-modal:hover {
    color: #b88b4a;
}

/* ========================================
   BLOG PAGES STYLES
   ======================================== */
.blog-hero {
    background: linear-gradient(135deg, #f9f5ef 0%, #fff 100%);
    padding: 60px 0 40px;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: #1e3a3a;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ede6dd;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1e3a3a;
}

.blog-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-title a:hover {
    color: #b88b4a;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: #6c7a8a;
    flex-wrap: wrap;
}

.blog-excerpt {
    color: #4a5b6b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #b88b4a;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

.no-blogs {
    text-align: center;
    padding: 60px;
    background: #faf9f7;
    border-radius: 24px;
    color: #6c7a8a;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a {
    padding: 8px 16px;
    background: white;
    border: 1px solid #ede6dd;
    border-radius: 8px;
    text-decoration: none;
    color: #1e2a3a;
}

.pagination a.active {
    background: #b88b4a;
    color: white;
    border-color: #b88b4a;
}

.pagination a:hover {
    background: #b88b4a;
    color: white;
}

/* Blog Detail Page */
.blog-detail-hero {
    background: linear-gradient(135deg, #f9f5ef 0%, #fff 100%);
    padding: 60px 0 40px;
}

.blog-detail-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-detail-title {
    font-size: 2.5rem;
    color: #1e3a3a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ede6dd;
    color: #6c7a8a;
    flex-wrap: wrap;
}

.blog-detail-image {
    width: 100%;
    border-radius: 20px;
    margin: 30px 0;
    max-height: 500px;
    object-fit: cover;
}

.blog-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1e2a3a;
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content h2, .blog-detail-content h3 {
    margin: 1.5rem 0 1rem;
    color: #1e3a3a;
}

.blog-detail-content ul, .blog-detail-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-detail-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 12px 24px;
    background: #b88b4a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.2s;
}

.back-to-blog:hover {
    background: #9c6f3a;
    transform: translateY(-2px);
    color: white;
}

.share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ede6dd;
}

.share-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.share-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #f3efe8;
    border-radius: 40px;
    text-decoration: none;
    color: #1e2a3a;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.share-links a:hover {
    background: #e9dfd1;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE & TABLET
   ======================================== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid-custom {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 16px;
        margin-top: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    /* Typography */
    h2 {
        font-size: 1.6rem;
        display: block;
        text-align: center;
    }
    
    h2:after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .tagline {
        text-align: center;
    }
    
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
    }
    
    /* About Section */
    .about-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-text {
        order: 2;
    }
    
    .founder-card {
        order: 1;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .founder-img {
        width: 140px;
        height: 140px;
    }
    
    /* Mentorship Section */
    .mentorship-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .mentor-img {
        width: 180px;
        height: 180px;
    }
    
    .mentor-image h3 {
        font-size: 1.4rem;
    }
    
    .expertise-tags {
        justify-content: center;
    }
    
    .expertise-tags span {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    /* Services List Section */
    .services-grid-custom {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 16px;
    }
    
    .service-item {
        padding: 18px 16px;
    }
    
    .service-icon-small {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-small i {
        font-size: 1.2rem;
    }
    
    .service-item h4 {
        font-size: 0.95rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    /* Detailed Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 24px 18px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Values Section */
    .values-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 20px;
    }
    
    .value-item {
        padding: 24px 16px;
    }
    
    /* Contact Section */
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }
    
    .contact-info div {
        min-width: 100%;
    }
    
    .contact-info i {
        display: inline-block;
        margin-bottom: 8px;
    }
    
    .contact-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .map-container iframe {
        max-width: 100%;
        height: 200px;
    }
    
    .office-timing {
        display: block;
        text-align: center;
    }
    
    .contact-social h3 {
        text-align: center;
    }
    
    .social-links {
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Blog Pages */
    .blog-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card {
        max-width: 100%;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-meta {
        gap: 12px;
        font-size: 0.75rem;
    }
    
    .blog-detail-title {
        font-size: 1.6rem;
    }
    
    .blog-detail-meta {
        gap: 12px;
        font-size: 0.8rem;
    }
    
    .blog-detail-content {
        font-size: 1rem;
    }
    
    .share-links a {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    /* Modal */
    .close-modal, .close-mentor-modal {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
}

/* Small Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-stats div strong {
        font-size: 1.2rem;
    }
    
    .hero-stats div {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .founder-img, .mentor-img {
        width: 120px;
        height: 120px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-detail-title {
        font-size: 1.4rem;
    }
    
    .expertise-tags span {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section {
        padding: 40px 0;
    }
}

/* Tablet Landscape (1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .services-grid-custom {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .about-grid {
        gap: 30px;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}