* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif !important;
    color: #000;
    overflow-x: hidden;
}

.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
    background: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo img {
    height: 55px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.brand-links {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #000;
}

.brand-links a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;
}

.brand-links a:hover {
    color: #4a90e2;
}

.brand-links span {
    color: #000000;
}

nav {
    background: #f5f5f5;
    padding: 15px 30px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #000;
    transform: translateY(-2px);
}

/* Header */
header {
    background: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.logo img {
    height: 55px;
    width: auto;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.brand-links {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #000;
}

.brand-links a {
    text-decoration: none;
    color: #000000;
    transition: color 0.3s;
}

.brand-links a:hover {
    color: #4a90e2;
}

.brand-links span {
    color: #000000;
}

nav {
    background: #f5f5f5;
    padding: 15px 30px;
    border-radius: 5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-size: 13px;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a90e2;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #000;
    transform: translateY(-2px);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section - Banner Image */
.hero {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    background: #2d2d2d;
}

.hero img {
    width: 100%;
    height: 100%;
    object-position: center;
    display: block;
}

/* Niathi Section */
.niathi-section {
    padding: 60px 100px;
    background: #ffffff;
}

.niathi-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.niathi-logo {
    flex: 0 0 400px;
}

.niathi-logo img {
    width: 100%;
    height: auto;
    margin-top: 15px;
}

.niathi-content {
    flex: 1;
}

.niathi-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
}

.niathi-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #ff69b4;
    font-weight: normal;
}

.niathi-content p {
    line-height: 1.5;
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
}

.niathi-content a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* What We Do Section */
.what-we-do {
    padding: 5px 100px;
    background: #fff;
}

.what-we-do h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #000;
}

.what-we-do h2 .for-you {
    color: #ff69b4;
}

.what-we-do>p {
    line-height: 1.5;
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
}

.services-title {
    font-size: 28px;
    margin: 50px 0 40px;
    color: #000;
    font-weight: bold;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Move the 9th card to column 2 */
.services-grid .service-card:nth-last-child(2) {
    grid-column: 2;
}

/* Move the 10th card to column 3 */
.services-grid .service-card:nth-last-child(1) {
    grid-column: 3;
}

.service-card {
    text-align: center;
}

.service-icon {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Transformation Box */
.transformation-box {
    background: #ffb6d9;
    border-radius: 20px;
    margin: 60px 0;
}

.trans-b9 {
    display: inline-block;
    padding: 8px 20px;
    margin-left: 15px;
    background-color: #f67fbf;
    ;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trans-b8 {
    display: inline-block;
    padding: 8px 25px;
    margin-left: 15px;
    background-color: #5cd65c;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.transformation-box-b1 {
    display: inline-block;
    padding: 8px 40px;
    margin-left: 20px;
    background: #5cd65c;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.transformation-box p {
    line-height: 1.15;
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 40px;
    padding-top: 10px;

}

.transformation-box-1 p {
    line-height: 1.15;
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 40px;
    padding-top: 10px;


}

.transformation-box-p {
    padding: 10px 0px;
}

.transformation-box a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

/* Swaraa Studio Section */
.swaraa-section {
    padding: 60px 100px;
    background: #fff;
}

.swaraa-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.swaraa-content {
    flex: 1;
}

.swaraa-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
}

.swaraa-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #7cb342;
    font-weight: normal;
}

.swaraa-content p {
    line-height: 1.5;
    color: #000;
    font-size: 18px;
    margin-bottom: 20px;
}

.swaraa-content a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.swaraa-logo {
    flex: 0 0 400px;
}

.swaraa-logo img {
    width: 100%;
    height: auto;
}

/* Learning Knight Section */
.learningknight-section {
    padding: 20px 100px;
    background: #ffffff;
}

.learningknight-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.learningknight-logo {
    flex: 0 0 400px;
}

.learningknight-logo img {
    width: 100%;
    height: auto;
    margin-top: 80px;
}

.learningknight-content {
    flex: 1;
}

.learningknight-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
}

.learningknight-content h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #9370db;
    font-weight: normal;
}

.learningknight-content p {
    line-height: 1.5;
    color: #000;
    font-size: 18px;
    margin-bottom: 15px;
}

.learningknight-content a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.programs-title {
    font-size: 22px;
    margin: 40px 0 30px;
    color: #000;
    font-weight: bold;
    line-height: 1.5;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Talk Box */
.talk-box {
    background: #d4c5f9;


    border-radius: 20px;
    margin: 40px 0;
}

.talk-box h3 {
    display: inline-block;
    padding: 8px 25px;
    margin-left: 15px;
    background: #af81ff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.talk-box p {
    line-height: 1.75;
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-top: 15px;
}

.talk-box-bottom {
    padding-bottom: 20px;
}

.talk-box a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

/* Get in Touch Section */
.contact-section {
    padding: 10px 100px;
    background: #fff;
    padding-bottom: 40px;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #000;
    font-weight: bold;
}

.contact-section h2 .get {
    position: relative;
    padding-bottom: 5px;
}

.contact-section h2 .get::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffa500;
}

.contact-section h2 .touch {
    color: #ffa500;
    font-size: 40px;
}

.contact-section p {
    color: #000;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.contact-section .email {
    color: #ffa500;
    font-weight: bold;
    text-decoration: none;
}

.contact-section .phone {
    color: #ffa500;
    font-weight: bold;
    text-decoration: none;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 60px 100px 30px;
}

.footer-logo {
    margin-bottom: 50px;
    margin-left: -13px;
}

.footer-logo img {
    height: 65px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h3 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: normal;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s;
}

.footer-column ul a:hover {
    color: #4a90e2;
}

.footer-column a,
.footer-column p {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    line-height: 1.8;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    color: #fff;
    font-size: 12px;
}

/* Inner container to control width */
.footer-bottom-inner {
    margin: 0 auto;
    padding: 30px 0px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left & Right text */
.footer-left,
.footer-right {
    margin: 0;
    white-space: nowrap;
}

.footer-icons {
    display: flex;
    justify-content: left;
    font-size: 0px;
    margin-top: 15px;
    gap: 10px;
}

/* Footer links */
.footer-right a {
    color: #fff;
    text-decoration: none;
}

.footer-right a:hover {
    color: #4a90e2;
}

/* Responsive Design */
/* Header and Footer  */

@media (max-width: 1024px) {
    header {
        padding: 20px 40px;
        flex-direction: column;
        /* stack logo + nav */
        align-items: center;
        gap: 18px;
    }

    /* Logo on top, centered */
    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 55px;
    }

    /* Header right takes full width */
    .header-right {
        width: 100%;
        align-items: center;
    }

    /* Brand links centered (optional – looks clean) */
    .brand-links {
        justify-content: center;
        margin-bottom: 10px;
    }

    /* Full-width nav bar */
    nav {
        width: 100%;
        padding: 12px 0;
    }

    /* Nav items: single line, evenly spaced */
    nav ul {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    /* Prevent word breaking */
    nav ul li {
        white-space: nowrap;
    }

    /* Nav links */
    nav a {
        font-size: 12px;
        padding: 8px 10px;
    }

    /* Disable hamburger on tablet */
    .mobile-menu-toggle {
        display: none;
    }
}


/* Mobile View */
@media (max-width: 768px) {

    header {
        position: relative;
        padding: 15px 20px 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* Hamburger on LEFT */
    .mobile-menu-toggle {
        position: absolute;
        left: 0px;
        /* top: 22px; */
        display: flex;
    }

    /* Logo centered */
    .logo {
        width: 100%;
        text-align: center;
    }

    .logo img {
        height: 45px;
    }

    /* Header-right full width */
    .header-right {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Brand links UNDER logo */
    .brand-links {
        font-size: 11px;
        gap: 8px;
        margin-top: 6px;
        margin-bottom: 10px;
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
    }

    /* Navigation  */

    nav {
        width: 100%;
        background: transparent;
        padding: 0px 0px 10px 0px;
    }

    /* Menu CLOSED state */
    nav ul {
        display: none;
        padding: 0;
        margin: 0;
        background: none;
        border-radius: 0;
    }

    /* Menu OPEN state */
    nav ul.active {
        display: flex;
        flex-direction: column;
        background: #f5f5f5;
        border-radius: 8px;
        margin-top: 12px;
        overflow: hidden;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        border-bottom: 1px solid #e0e0e0;
    }

    nav ul li:last-child {
        border-bottom: none;
    }

    nav a {
        display: block;
        padding: 15px 20px;
        font-size: 14px;
        width: 100%;
        transition: transform 0.3s ease;
    }

    nav a::after {
        display: none;
    }

    nav a:hover {
        transform: scale(1.05);

    }


    /* FOOTER */

    footer {
        padding: 40px 20px 20px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        padding: 25px 0;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        white-space: normal;
    }

    .footer-right {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* TABLET (≤1024px) */

@media (max-width: 1024px) {

    /* Page wrapper - full width on tablet */
    .page-wrapper {
        max-width: 100%;
    }

    /* Hero banner - adjusted height */
    .hero {
        height: 300px;
    }

    /* Niathi section */
    .niathi-section {
        padding: 20px 60px;
    }

    .niathi-container {
        gap: 50px;
    }

    .niathi-logo {
        flex: 0 0 320px;
    }

    .niathi-content h2 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .niathi-content h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .niathi-content p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    /* What We Do section */
    .what-we-do {
        padding: 20px 60px;
    }

    .what-we-do h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .what-we-do>p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .services-title {
        font-size: 24px;
        margin: 40px 0 30px;
    }

    /* Services grid - 3 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 40px;
    }

    /* Reset special positioning for tablet layout */
    .services-grid .service-card:nth-last-child(2),
    .services-grid .service-card:nth-last-child(1) {
        grid-column: auto;
    }

    /* Transformation box */
    .transformation-box {
        padding: 0;
        margin: 0px 0;
        border-radius: 18px;
    }

    .trans-b9,
    .trans-b8 {
        font-size: 20px;
        padding: 8px 18px;
        margin-left: 12px;
    }

    .transformation-box p {
        font-size: 16px;
        margin-left: 30px;
        padding-top: 8px;
    }

    /* Swaraa section */
    .swaraa-section {
        padding: 20px 60px;
    }

    .swaraa-container {
        gap: 50px;
    }

    .swaraa-logo {
        flex: 0 0 320px;
    }

    .swaraa-content h2 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .swaraa-content h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .swaraa-content p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    /* Learning Knight section */
    .learningknight-section {
        padding: 50px 60px 10px;
    }

    .learningknight-container {
        gap: 50px;
    }

    .learningknight-logo {
        flex: 0 0 250px;
    }

    .learningknight-content {
        padding-right: 30px;
    }

    .learningknight-content h2 {
        font-size: 32px;
        margin-bottom: 12px;
        word-wrap: break-word;
    }

    .learningknight-content h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .learningknight-content p {
        font-size: 16px;
        margin-bottom: 12px;
        width: 100%;
    }

    .programs-title {
        font-size: 20px;
        margin: 35px 0 25px;
    }

    .programs-grid {
        gap: 25px;
        margin-bottom: 35px;
    }

    /* Talk box */
    .talk-box {
        padding: 0;
        margin: 5px 0;
        border-radius: 18px;
    }

    .talk-box h3 {
        font-size: 20px;
        padding: 8px 20px;
        margin-left: 12px;
    }

    .talk-box p {
        font-size: 16px;
        margin-left: 30px;
        margin-top: 12px;
    }

    .talk-box-bottom {
        padding-bottom: 18px;
    }

    /* Contact section */
    .contact-section {
        padding: 40px 60px;
    }

    .contact-section h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .contact-section h2 .touch {
        font-size: 34px;
    }

    .contact-section p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* MOBILE (≤768px) */

@media (max-width: 768px) {

    .header-right {
        gap: 0px;
    }

    /* Hero banner - mobile height */
    .hero {
        height: 140px;
    }


    /* Niathi section - stack layout */
    .niathi-section {
        padding: 40px 30px;
    }

    .niathi-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .niathi-logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .niathi-logo img {
        width: 100%;
        margin-top: 15px;
    }

    .niathi-content {
        width: 100%;
    }

    .niathi-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .niathi-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .niathi-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
        text-align: left;
    }

    /* What We Do section */
    .what-we-do {
        padding: 40px 30px;
    }

    .what-we-do h2 {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: center;
    }

    .what-we-do>p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }

    .services-title {
        font-size: 20px;
        margin: 35px 0 25px;
        text-align: center;
        line-height: 1.4;
    }

    /* Services grid - 2 columns on mobile */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 35px;
    }

    .service-icon {
        margin-bottom: 12px;
        border-radius: 12px;
    }

    /* Transformation box */
    .transformation-box {
        padding: 0;
        margin: 40px 0;
        border-radius: 15px;
    }

    .trans-b9,
    .trans-b8 {
        font-size: 18px;
        padding: 8px 16px;
        margin-left: 10px;
        border-radius: 40px;
    }

    .trans-b9 {
        display: inline-block;
        padding: 8px 20px;
        margin-left: 15px;
        background-color: #f67fbf;
        ;
        color: #000;
        text-decoration: none;
        border-radius: 50px;
        font-size: 22px;
        font-weight: bold;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }


    .transformation-box p {
        font-size: 15px;
        line-height: 1.6;
        margin-left: 20px;
        padding-top: 10px;
        margin-right: 20px;
    }

    .transformation-box-p {
        padding: 10px 0 15px;
    }

    /* Swaraa section - reversed stack */
    .swaraa-section {
        padding: 40px 30px;
    }

    .swaraa-container {
        flex-direction: column-reverse;
        gap: 35px;
        text-align: center;
    }

    .swaraa-logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .swaraa-logo img {
        width: 100%;
    }

    .swaraa-content {
        width: 100%;
    }

    .swaraa-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .swaraa-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .swaraa-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }

    /* Learning Knight section - stack layout */
    .learningknight-section {
        padding: 40px 30px;
    }

    .learningknight-container {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }

    .learningknight-logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .learningknight-logo img {
        width: 100%;
    }

    .learningknight-content {
        width: 100%;
    }

    .learningknight-content h2 {
        font-size: 32px;
        margin-bottom: 15px;

    }

    .learningknight-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .learningknight-content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 14px;
        text-align: left;
    }

    .programs-title {
        font-size: 18px;
        margin: 30px 0 20px;
        text-align: center;
        line-height: 1.5;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    /* Talk box */
    .talk-box {
        padding: 0;
        margin: 30px 0;
        border-radius: 15px;
    }

    .talk-box h3 {
        font-size: 18px;
        padding: 8px 18px;
        margin-left: 10px;
        border-radius: 40px;
    }

    .talk-box p {
        font-size: 15px;
        line-height: 1.6;
        margin-left: 20px;
        margin-top: 12px;
        margin-right: 20px;
    }

    .talk-box-bottom {
        padding-bottom: 15px;
    }

    /* Contact section */
    .contact-section {
        padding: 40px 30px;
    }

    .contact-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-section h2 .touch {
        font-size: 28px;
    }

    .contact-section p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .contact-section .email,
    .contact-section .phone {
        word-break: break-word;
    }
}

/* SMALL MOBILE REFINEMENTS (≤480px) */

@media (max-width: 480px) {

    /* Hero banner - smallest screens */
    .hero {
        height: 140px;
    }

    /* All studio sections - tighter spacing */
    .niathi-section,
    .swaraa-section,
    .learningknight-section,
    .what-we-do {
        padding: 10px 20px;
    }

    /* Logo sizing */
    .niathi-logo,
    .swaraa-logo,
    .learningknight-logo {
        max-width: 250px;
    }

    /* Heading adjustments */
    .niathi-content h2,
    .swaraa-content h2,
    .learningknight-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .niathi-content h3,
    .swaraa-content h3,
    .learningknight-content h3 {
        font-size: 18px;
        margin-bottom: 18px;
    }

    /* Paragraph text */
    .niathi-content p,
    .swaraa-content p,
    .learningknight-content p,
    .what-we-do>p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    /* Section headings */
    .what-we-do h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .services-title {
        font-size: 17px;
        margin: 30px 0 20px;
    }

    .programs-title {
        font-size: 16px;
        margin: 25px 0 18px;
    }

    /* Service grid - maintain 2 columns but tighter */
    .services-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .service-icon {
        border-radius: 10px;
    }

    /* Programs grid - stack to 1 column */
    .programs-grid {
        gap: 15px;
        margin-bottom: 25px;
    }

    /* Transformation and talk boxes */
    .transformation-box,
    .talk-box {
        margin: 30px 0;
        border-radius: 12px;
    }

    .trans-b9,
    .trans-b8,
    .talk-box h3 {
        font-size: 16px;
        padding: 7px 14px;
        margin-left: 8px;
        border-radius: 35px;
    }

    .trans-b9 {
        width: 90%;
    }

    .transformation-box p,
    .talk-box p {
        font-size: 14px;
        line-height: 1.6;
        margin-left: 15px;
        margin-right: 15px;
        padding-top: 8px;
    }

    .transformation-box-p {
        padding: 8px 0 12px;
    }

    .talk-box-bottom {
        padding-bottom: 12px;
    }

    /* Contact section */
    .contact-section {
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .contact-section h2 .touch {
        font-size: 24px;
    }

    .contact-section p {
        font-size: 14px;
        margin-bottom: 10px;
    }
}