* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
a{
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    background: #f4f6f8;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
}

.container {
    max-width: 82vw;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: #0b3c5d;
}

.logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo_img{
    width: 3.2vw;
    margin-right: 8px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #0b3c5d;
}

/* CTA Button */
.cta-btn {
    padding: 10px 18px;
    background: #0b3c5d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-btn:hover {
    background: #072c45;
}

/* Mobile Menu */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
}
.hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 80px 20px;
    padding-bottom: 0;
    padding-top: 0;
}

.hero-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-bottom: 0px;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #fff;
    color: #0b3c5d;
    padding: 12px 22px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
}

.hero-image img {
    max-width: 420px;
}
.services {
    padding: 50px 20px;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 5px;
    color: #0b3c5d;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: #f4f6f8;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    margin-bottom: 10px;
    color: #0b3c5d;
}
.why-us {
    background: #f4f6f8;
    padding: 60px 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
    margin: auto;
    font-size: 18px;
}

.testimonials {
    background: #f4f6f8;
    padding: 50px 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #444;
}

.testimonial-card h4 {
    color: #0b3c5d;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 14px;
    color: #777;
}

.footer {
    background: #072c45;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 150px;
}

.footer h4 {
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    padding-top: 15px;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}
.about-founder {
    padding: 50px 20px;
    background: #ffffff;
}

.about-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.founder-image img {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.founder-content h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.founder-content h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.founder-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.founder-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.founder-content ul li {
    margin-bottom: 8px;
}
.follow-us {
    background: #fff;
    padding: 70px 20px;
}

.follow-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.follow-text h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.follow-text p {
    max-width: 520px;
    line-height: 1.7;
    color: #444;
}

.follow-buttons {
    display: flex;
    gap: 15px;
}

.follow-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.follow-btn span {
    font-size: 18px;
}

.follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Instagram */
.follow-btn.insta {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

/* YouTube */
.follow-btn.youtube {
    background: #ff0000;
}

.about-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.about-tagline {
    margin-top: 15px;
    font-size: 18px;
    opacity: 0.9;
}
.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.story-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.story-text h2 {
    color: #0b3c5d;
    margin-bottom: 15px;
}

.story-text p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.story-points {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 10px;
}

.story-points div {
    margin-bottom: 12px;
    font-weight: 500;
}

@media(max-width: 900px) {
    .story-wrap {
        grid-template-columns: 1fr;
    }
}
.about-founder-premium {
    background: #f4f6f8;
    padding: 80px 20px;
}

.founder-wrap {
    display: flex;
    gap: 50px;
    align-items: center;
}

.founder-photo img {
    width: 300px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.founder-text h2 {
    color: #0b3c5d;
}

.founder-text h3 {
    margin: 10px 0 15px;
}

.founder-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.founder-text ul {
    list-style: none;
    margin-top: 15px;
}

.founder-text ul li {
    margin-bottom: 8px;
}

@media(max-width: 900px) {
    .founder-wrap {
        flex-direction: column;
        text-align: center;
    }
}
.about-trust {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media(max-width: 900px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.book-showcase {
    background: linear-gradient(120deg, #ffffff, #f4f6f8);
    padding: 80px 20px;
}

.book-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
}

.book-image img {
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.book-content h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.book-content h2 span {
    color: #124d73;
}

.book-tagline {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.book-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.book-content ul {
    list-style: none;
    margin: 20px 0;
}

.book-content ul li {
    margin-bottom: 8px;
}

@media(max-width: 900px) {
    .book-wrap {
        flex-direction: column;
        text-align: center;
    }

    .book-image img {
        width: 220px;
    }
}

.contact-page {
    padding: 80px 20px;
    background: #f4f6f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.contact-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
    opacity: 0.95;
}
.contact-main {
    background: #f4f6f8;
    padding: 80px 20px;
}

.contact-card-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h2 {
    color: #0b3c5d;
    margin-bottom: 20px;
}

.info-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    background: #25d366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

@media(max-width: 900px) {
    .contact-card-grid {
        grid-template-columns: 1fr;
    }
}
.contact-map iframe {
    display: block;
    width: 100%;
}


@media(max-width: 900px) {
    .follow-wrap {
        flex-direction: column;
        text-align: center;
    }

    .follow-buttons {
        flex-direction: column;
        width: 100%;
    }

    .follow-btn {
        justify-content: center;
    }
}


@media(max-width: 900px) {
    .about-wrap {
        flex-direction: column;
        text-align: center;
    }

    .founder-image img {
        width: 260px;
    }
}

/* Responsive */
@media (max-width: 900px) {

    .menu-icon {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-btn {
        text-align: center;
    }

    #menu-toggle:checked ~ .nav {
        display: flex;
    }
}

.consult-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.consult-hero p {
    margin-top: 12px;
    font-size: 18px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.consult-why {
    background: #f4f6f8;
    padding: 70px 20px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.why-card p {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

@media(max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.consult-form-section {
    background: #f4f6f8;
    padding: 80px 20px;
}

.consult-form-wrap {
    max-width: 650px;
    margin: auto;
}

.consult-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.consult-form-card h2 {
    color: #0b3c5d;
    margin-bottom: 8px;
}

.form-note {
    margin-bottom: 25px;
    color: #555;
}

.consult-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consult-form-card input,
.consult-form-card select,
.consult-form-card textarea {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.alt-contact {
    margin-top: 20px;
    font-size: 14px;
}
.consult-process {
    padding: 70px 20px;
    background: #ffffff;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media(max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.consult-experience {
    background: #fff;
    padding: 90px 20px;
}

.consult-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.consult-info h1 {
    color: #0b3c5d;
    margin-bottom: 15px;
}

.consult-sub {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #444;
}

.consult-points {
    list-style: none;
    margin-bottom: 30px;
}

.consult-points li {
    margin-bottom: 10px;
    font-weight: 500;
}

.consult-process h4 {
    margin-bottom: 10px;
    color: #0b3c5d;
}

.consult-note {
    margin-top: 25px;
    font-size: 14px;
}

/* FORM */
.consult-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.consult-form-card h2 {
    color: #0b3c5d;
    margin-bottom: 5px;
}

.form-note {
    margin-bottom: 25px;
    color: #555;
}

.consult-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consult-form-card input,
.consult-form-card select,
.consult-form-card textarea {
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* MOBILE */
@media (max-width: 900px) {
    .consult-grid {
        grid-template-columns: 1fr;
    }

    .consult-info {
        text-align: center;
    }
}
.articles-home {
    padding: 90px 20px;
    background: #f4f6f8;
}

.articles-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.articles-head h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.articles-head p {
    color: #555;
    line-height: 1.7;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.article-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #0b3c5d;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.article-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0b3c5d;
}

.article-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card a {
    text-decoration: none;
    font-weight: 600;
    color: #0b3c5d;
}

.articles-cta {
    text-align: center;
    margin-top: 40px;
}

@media(max-width: 900px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}
.data-assurance {
    background: #fff;
    padding: 50px 20px;
}

.assurance-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.assurance-icon {
    font-size: 36px;
}

.assurance-text h3 {
    color: #0b3c5d;
    margin-bottom: 6px;
}

.assurance-text p {
    color: #555;
    line-height: 1.6;
}

@media(max-width: 700px) {
    .assurance-wrap {
        flex-direction: column;
        text-align: center;
    }
}
.hero-title {
    font-size: 40px;
    line-height: 1.3;
    color: #ffffff;
}

#typing-text::after {
    content: "|";
    margin-left: 4px;
    animation: blink 0.9s infinite;
}

#typing-text.done::after {
    display: none;
}

@keyframes blink {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.services-section {
    padding: 90px 20px;
    background: #ffffff;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Service card */
.service-card {
    background: #f4f6f8;
    padding: 30px;
    border-radius: 14px;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* LAZY STATE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ACTIVE STATE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Mobile */
@media(max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.menu li {
    position: relative; /* 🔑 dropdown anchor */
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 0;
}

/* SERVICES DROPDOWN */
.ser_div {
    position: absolute;
    top: 100%;               /* exactly niche */
    left: 0;
    width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    padding: 15px 0;
    display: none;
    z-index: 999;
}

/* Show on hover */
.services_li:hover .ser_div {
    display: block;
}
.services_li{
    position: relative;
}

/* Dropdown list */
.ser_div ul {
    list-style: none;
}
.ser_div ul{
    display: block;
}
.ser_div ul li {
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.ser_div ul li:hover {
    background: #f4f6f8;
    color: #0b3c5d;
}
/* HERO */
.service-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.service-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.service-hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* BODY */
.service-body {
    padding: 80px 20px;
    background: #f4f6f8;
}

.service-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* MAIN */
.service-main {
    background: #fff;
    padding: 40px;
    border-radius: 14px;
}

.service-main h2 {
    color: #0b3c5d;
    margin: 30px 0 15px;
}

.service-main p {
    line-height: 1.8;
    color: #444;
}

/* POINTS */
.service-points {
    list-style: none;
    margin-top: 10px;
}

.service-points li {
    margin-bottom: 10px;
}

/* SIDEBAR */
.service-sidebar {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    height: fit-content;
}

.service-sidebar h3 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.service-sidebar p {
    margin-bottom: 20px;
}

.cta-btn.full {
    width: 100%;
    text-align: center;
}

.service-note {
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

/* MOBILE */
@media(max-width: 900px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-hero h1 {
        font-size: 32px;
    }
}
.justify_p{
    text-align: justify;
}
.why-us-premium {
    background: #f4f6f8;
    padding: 80px 20px;
}

.why-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.why-head h2 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.why-head p {
    color: #555;
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card span {
    font-size: 34px;
    display: block;
    margin-bottom: 12px;
}

.why-card h3 {
    color: #0b3c5d;
    margin-bottom: 8px;
    font-size: 18px;
}

.why-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Responsive */
@media(max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* HERO */
.articles-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.articles-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.articles-hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 720px;
    margin: auto;
}

/* PAGE */
.articles-page {
    background: #f4f6f8;
    padding: 80px 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.article-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.article-date {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
    display: inline-block;
}

.article-card h3 {
    color: #0b3c5d;
    margin-bottom: 12px;
    font-size: 18px;
}

.article-excerpt {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.article-card a {
    font-weight: 600;
    text-decoration: none;
    color: #0b3c5d;
}

/* PAGINATION */
.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
}

.pagination a {
    text-decoration: none;
    color: #0b3c5d;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .article-excerpt {
        text-align: left;
    }
}
/* HERO */
.article-hero {
    background: linear-gradient(120deg, #0b3c5d, #124d73);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.article-hero h1 {
    font-size: 42px;
    max-width: 900px;
    margin: 10px auto;
    line-height: 1.3;
}

.article-meta {
    font-size: 14px;
    opacity: 0.85;
}

.article-sub {
    font-size: 18px;
    opacity: 0.9;
}

/* LAYOUT */
.article-main {
    background: #ffffff;
    padding: 90px 20px;
}

.article-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

/* CONTENT */
.article-content {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
}

.article-content h2,
.article-content h3 {
    margin: 35px 0 15px;
    color: #0b3c5d;
}

.article-content p {
    margin-bottom: 18px;
    text-align: justify;
}

/* SIDEBAR */
.article-sidebar > div {
    background: #f4f6f8;
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
}

.author-box h4,
.article-cta h4 {
    color: #0b3c5d;
    margin-bottom: 10px;
}

.article-cta .cta-btn {
    display: inline-block;
    margin-top: 12px;
}

/* RELATED */
.related-articles {
    background: #f4f6f8;
    padding: 70px 20px;
}

.related-articles h2 {
    text-align: center;
    color: #0b3c5d;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
}

.related-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-content p {
        text-align: left;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch; /* important */
}

.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center; /* content center rahe */
    height: 100%;
}
.related-articles .container{
    gap: 35px;
}
/* Update this section in your style.css within the @media (max-width: 900px) block */

@media (max-width: 900px) {
    .menu-icon {
        display: flex; /* Shows the hamburger icon */
    }

    .nav {
        display: none; /* 1. Ensure it is hidden by default on mobile */
        position: absolute;
        top: 100%; /* Positions it right below the header */
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* 2. Fix the toggle logic */
    /* Use the '+' or '~' selector to find the nav after the toggle */
    #menu-toggle:checked ~ .nav {
        display: flex; 
    }

    /* Optional: Ensure the list takes full width on mobile */
    .nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
}
@media (max-width: 900px) {
    /* Hero Section */
    .hero-wrap {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 40px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Services & Why Us Grids */
    .services-grid, .why-grid, .testimonial-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Founder Section */
    .about-wrap {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    /* Stack everything into 1 column on very small phones */
    .services-grid, .why-grid, .testimonial-grid, .articles-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 40px;
        text-align: center;
    }
}
@media (max-width: 900px) {
    /* About Story */
    .story-wrap {
        grid-template-columns: 1fr;
    }

    /* Consultation Grid */
    .consult-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Book Showcase */
    .book-wrap {
        flex-direction: column;
        text-align: center;
    }

    .trust-grid, .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1100px) {
    /* Article Detail & Service Detail Layouts */
    .article-layout, .service-grid {
        grid-template-columns: 1fr;
    }

    .article-content {
        padding: 20px !important; /* Remove large desktop padding */
        width: 100vw;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
    .container {
    max-width: 99vw;
    margin: 0;
}
.logo_img{
    width: 10vw;
}
.hero-wrap{
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 0;
}
.hero-image img{
    display: none;
}
.hero-text p{
    text-align: justify;
}
.cta-wrap{
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
}
.map-section .container{
    flex-direction: column;
    gap: 30px;
}
.services-section{
    padding: 40px 20px;
}
.why-us-premium{
    padding: 40px 20px;
}
.data-assurance{
    padding: 40px 20px;
}
.map-section{
    padding: 40px 20px;
}
.follow-us{
    padding: 40px 20px;
}
.articles-home .container{
    flex-direction: column;
}
.articles-grid{
    margin-left: 0px !important;
}
.articles-home{
    padding: 40px 20px;
}
.article-main{
    padding: 0;
}
.article-main .container{
    padding: 0;
}
.article-sidebar {
	padding: 20px;
}
.article-content{
    font-size: 15px;
}
.article-content h2{
    padding: 12px !important;
}
.related-articles .container{
    flex-direction: column;
}
.related-articles{
    padding: 20px 40px;
}
.footer_top{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.footer_top img{
    margin-bottom: 5px;
}
.consult-process .container{
    flex-direction: column;
}
.process-grid{
    display: flex;
    flex-direction: column;
    align-items: start;
}
.consult-hero p{
    text-align: justify;
}
.founder-content ul {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
	text-align: left;
	gap: 10px;
}
.article-content{
    text-align: left !important;
}
}
@media (max-width: 900px) {
    /* Dropdown ko normal list ka part banane ke liye */
    .ser_div {
        position: static;      /* Absolute se hata kar static karein */
        width: 100%;           /* Full width taaki list ka part lage */
        box-shadow: none;      /* Shadow hata dein seamless look ke liye */
        padding: 0 0 0 20px;   /* Thoda sa left margin taaki hierarchy dikhe */
        border-radius: 0;
        display: none;         /* Default hidden rahega */
    }

    /* Jab li par click/hover ho to display karein */
    .services_li:hover .ser_div {
        display: block;
    }

    .ser_div ul li {
        padding: 8px 0;        /* Mobile ke liye spacing adjust karein */
        border-bottom: none;   /* Borders hata dein taaki list ka part lage */
    }
}