*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  position: relative;
  font-family: 'Roboto', sans-serif;
  transition: all .3s ease;
}

:root {
    /* Colours */
    --white-color: #fff;
    --lightWhite-color: #f8fafc;
    --powBlue-color: #0b8bd6;;
    --skBlue-color: #38b6ff;
    --lightBlue2Grey-color: #718096;
    --blue-color: #0d47a1;
    --darkBlue-color: #062644;
    --liGrey-color: #ededed;
    --liGrey2-color: #b4b4b4;
    --black-color: #000000;
    --midGrey-color: #ffffff94;
    --liMidGrey-color: #e2e2e2;
    --liPink-color: #ffe8ec;
    --medGrey2-color: #ccc;
    --dark-grey: #333;
    --light-grey: #f5f5f5;
    --border-color: #e0e0e0;
    --primary-color: #38b6ff;
    --secondary-color:  #1da1f2;
    --text-color: #333;
    --text-light: #666;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    /* Border radius */
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50px;
    --border-radius-circle2: 100px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 55vh;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 1;
    width: 50%;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

/* Purpose Section */
.purpose-section {
    padding: 70px 20px;
    background-color: #fff;
    text-align: center;
}

.purpose-section .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 18px;
    color: #4a5568;
}

.purpose-subtext {
    font-size: 1rem;
    font-style: italic;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
}

/* Story Section */
.story-values-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

.story-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.story-card, .values-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.story-card h2, .values-card h2 {
    font-size: 2rem;
    color: var(--darkBlue-color);
    margin-bottom: 20px;
    position: relative;
}

.story-card h2:after, .values-card h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--skBlue-color);
    border-radius: 2px;
}

.story-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #4a5568;
}

.values-intro {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 25px;
    font-style: italic;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background-color: rgba(56, 182, 255, 0.05);
    transform: translateX(4px);
}

.value-icon {
    font-size: 1.6rem;
    color: var(--skBlue-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 182, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.value-text h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #2d3748;
}

.value-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 70px 20px;
    background-color: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.2rem;
    color: var(--darkBlue-color);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.vision-mission-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.vision-card,
.mission-card {
    border-top: 4px solid #38b6ff;
}

.card .icon {
    font-size: 2.2rem;
    color: #38b6ff;
    margin-bottom: 18px;
}

.mission-card .icon {
    color: #ff6b6b;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--skBlue-color);
    height: 100%;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.mission-card {
    border-top-color: #ff6b6b;
}

.card .icon {
    font-size: 2.2rem;
    color: var(--skBlue-color);
    margin-bottom: 18px;
}

.mission-card .icon {
    color: #ff6b6b;
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 12px;
}

.highlight-text {
    font-style: italic;
    color: var(--skBlue-color);
    margin-top: 12px;
    font-weight: 500;
}

.mission-list {
    text-align: left;
    margin: 18px 0;
    padding-left: 0;
    list-style: none;
}

.mission-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #4a5568;
}

.mission-list i {
    color: var(--skBlue-color);
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 45vh;
    }
    
    .hero-content {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding-bottom: 18px;
    }
    
    .vision-mission-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        max-width: 100%;
    }

    .section-header {
        padding-bottom: 30px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .story-values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vision-mission-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 45vh;
    }
    
    .hero-content {
        width: 80%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding-bottom: 18px;
    }
    
    .story-card, .values-card, .card {
        padding: 25px 18px;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .value-icon {
        align-self: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 0 0 45px 0;
    background-color: #f8fafc;
}

.why-choose-us .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 45px;
    align-items: center;
}

.text-content {
    flex: 1;
    padding: 35px;
    background-color: #e6f4ff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2rem;
    color: var(--darkBlue-color);
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.6rem;
    color: #38b6ff;
    margin-bottom: 18px;
    font-weight: 700;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 65px;
    height: 65px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.6rem;
    color: #38b6ff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.feature p {
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.5;
}

.mission-footer {
    text-align: center;
    font-style: italic;
    color: #38b6ff;
    font-weight: 500;
}

.image-content {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 18px;
    display: flex;
    justify-content: space-around;
}

.image-overlay span {
    font-size: 1.3rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Team Section */
.techCoach_content {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(56, 182, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.techCoach_content > .section-header {
    margin: 0 auto 45px;
}
.techCoach_content > .section-header > h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #062644;
}
.techCoach_content > .section-header > p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Swiper Container */
.techCoach_content .coach-swiper-container {
    width: 80%;
    position: relative;
    padding: 18px 50px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: #062644;
}

/* Coach Header */
.techCoach_content .coach-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    flex-wrap: wrap;
    flex-direction: column;
}

.techCoach_content .coach-avatar {
    position: relative;
    margin-right: 20px;
    flex-shrink: 0;
}

.techCoach_content .coach-avatar img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e6f4ff;
}

.techCoach_content .coach-intro h2 {
    color: var(--lightWhite-color);
    font-size: 1.6rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.techCoach_content .coach-tagline {
    color: var(--liGrey2-color);
    font-size: 1rem;
    margin-bottom: 12px;
}

.techCoach_content .coach-bio {
    background-color: #f8fafc;
    padding: 12px;
    border-radius: 8px;
    margin-top: 8px;
    border-left: 3px solid #38b6ff;
}

.techCoach_content .coach-bio p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.techCoach_content .coach-bio strong {
    color: #2d3748;
}

/* Coach Features */
.techCoach_content .coach-features {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
    flex-wrap: wrap;
    gap: 18px;
}

.techCoach_content .feature-card {
    flex: 1;
    min-width: 180px;
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 22px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.techCoach_content .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(56, 182, 255, 0.1);
}

.techCoach_content .feature-icon {
    width: 45px;
    height: 45px;
    background-color: #e6f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #38b6ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.techCoach_content .feature-content h3 {
    color: #2d3748;
    font-size: 1rem;
    margin-bottom: 4px;
}

.techCoach_content .feature-content p {
    color: #718096;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Swiper Navigation */
.techCoach_content .swiper-nav-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.techCoach_content .swiper-nav-btn {
    background: none;
    border: none;
    color: #38b6ff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
    top: -250px;
}

.techCoach_content .swiper-nav-btn:hover {
    color: #2d3748;
}

/* Position specific nav buttons if they are siblings */
.techCoach_content .swiper-nav-btn:nth-child(1) {
    left: -12%;
}
.techCoach_content .swiper-nav-btn:nth-child(2) {
    left: 110%;
}

.techCoach_content .swiper-pagination {
    position: relative;
    margin-top: 18px;
    text-align: center;
}

.techCoach_content .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cbd5e0;
    opacity: 1;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}

.techCoach_content .swiper-pagination-bullet-active {
    background-color: #38b6ff;
}

.techCoach_content .swiper-container {
    padding-bottom: 35px;
}

.techCoach_content .swiper-wrapper {
    margin-bottom: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .techCoach_content .coach-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .techCoach_content .coach-avatar {
        margin-right: 0;
        margin-bottom: 18px;
    }

    .techCoach_content .coach-bio {
        text-align: left;
    }

    .techCoach_content .feature-card {
        min-width: 100%;
    }

    .techCoach_content .coach-features {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .techCoach_content .coach-swiper-container {
        width: 100%;
        padding: 18px;
    }

    .techCoach_content {
        padding: 18px;
        border-radius: 12px;
    }

    .techCoach_content .swiper-nav-btn {
        top: -500px;
        margin: auto;
    }

    .techCoach_content .swiper-nav-btn:nth-child(2) {
        left: 105%;
    }

    .techCoach_content .swiper-nav-btn:nth-child(1) {
        left: -12%;
    }

    .techCoach_content .coach-intro h2 {
        font-size: 1.4rem;
    }

    .techCoach_content .feature-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .techCoach_content .feature-card > .feature-icon {
        margin: 0 auto;
    }

    .techCoach_content .feature-card > .feature-content {
        text-align: center;
        margin: 0 auto;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background-color: #9bdaff;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.quote-icon {
    font-size: 3.5rem;
    color: #38b6ff;
    opacity: 0.2;
    position: absolute;
    top: 8px;
    right: 25px;
    line-height: 1;
    font-family: serif;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #2d3748;
}

.client-info p {
    font-size: 0.85rem;
    color: #718096;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    padding: 35px 22px;
    border-radius: 12px;
    background-color: #f8fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.value-icon {
    font-size: 2.2rem;
    color: #38b6ff;
    margin-bottom: 18px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

.branding-section {
    padding: 1.8rem 1rem;
    background: linear-gradient(250deg, #f8fafc 50%, rgba(56, 182, 255, 0.2) 20%);
    position: relative;
    overflow: hidden;
    
    &::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0.25rem;
    }

    /* Name Meaning Section */
    .name-meaning-section {
        padding: 1.3rem;
        width: 95%;
        margin: 0 auto;
        border-radius: 1.5rem;
        background: white;
        box-shadow: 0 -0.2rem 0 #062644cc;
        border-bottom: 1px solid #f2f3f4;
        
        @media (min-width: 768px) {
            width: 90%;
            padding: 1.8rem;
        }
    }

    .meaning-container {
        max-width: 62.5rem;
        margin: 0 auto;
    }

    .meaning-card {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.3rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
        text-align: center;
        
        @media (min-width: 768px) {
            gap: 2.5rem;
            text-align: left;
        }
    }

    .name-visual {
        font-size: clamp(1.8rem, 5vw, 3rem);
        font-weight: 800;
        font-family: 'Roboto', sans-serif;
        line-height: 1;
    }

    .tech-part {
        color: #38b6ff;
    }

    .speak-part {
        color: #062644;
    }

    .name-explanation {
        max-width: 31.25rem;
    }

    .name-explanation h3 {
        font-size: clamp(1.3rem, 3vw, 1.6rem);
        color: #062644;
        margin-bottom: 0.8rem;
    }

    .name-explanation h3 small {
        font-size: 0.8rem;
        color: #4a5568;
        font-weight: normal;
    }

    .name-explanation p {
        font-size: clamp(0.95rem, 2vw, 1rem);
        line-height: 1.6;
        color: #4a5568;
    }

    /* Philosophy Grid */
    .philosophy-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.3rem;
        margin-bottom: 2.5rem;
        
        @media (min-width: 480px) {
            grid-template-columns: repeat(2, 1fr);
        }
        
        @media (min-width: 768px) {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
    }

    .philosophy-item {
        text-align: center;
        padding: 1.3rem 0.9rem;
        border-radius: 0.8rem;
        transition: transform 0.3s ease;
        
        &:hover {
            transform: translateY(-0.25rem);
        }
    }

    .icon-circle {
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.6rem;
    }

    .philosophy-item h4 {
        color: #062644;
        margin-bottom: 0.8rem;
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .philosophy-item p {
        color: #4a5568;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        line-height: 1.6;
    }

    /* Evolution Note */
    .evolution-note {
        background: #f8fafc;
        padding: 1.3rem;
        border-radius: 0.8rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.9rem;
        max-width: 50rem;
        margin: 0 auto;
        border-left: 0.2rem solid #38b6ff;
        
        @media (min-width: 768px) {
            flex-direction: row;
            padding: 1.8rem;
            gap: 1rem;
        }
    }

    .evolution-icon {
        font-size: 1.3rem;
        color: #38b6ff;
        flex-shrink: 0;
    }

    .evolution-note p {
        margin: 0;
        font-size: clamp(0.95rem, 2vw, 1rem);
        line-height: 1.6;
        color: #4a5568;
        text-align: center;
        
        @media (min-width: 768px) {
            text-align: left;
        }
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        background-clip: text;
        color: #38b6ff;
        margin-bottom: 0.8rem;
    }

    .section-header p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        color: #4a5568;
        max-width: 43.75rem;
        margin: 0 auto;
    }

    /* Branding Cards - Sleek & Meaningful */
    .branding-container {
        max-width: 75rem;
        margin: 2rem auto 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.3rem;
        
        @media (min-width: 768px) {
            grid-template-columns: repeat(2, 1fr);
        }
        
        @media (min-width: 1024px) {
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }
    }

    .branding-card {
        background: white;
        border-radius: 0.8rem;
        padding: 1.3rem;
        box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        border-top: 0.2rem solid #38b6ff;
        position: relative;
        
        &:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
        }
        
        @media (min-width: 768px) {
            padding: 1.8rem 1.3rem;
        }
    }

    .brand-icon {
        width: 3.5rem;
        height: 3.5rem;
        background: #38b6ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.3rem;
        color: white;
        font-size: 1.3rem;
        box-shadow: 0 0.25rem 0.8rem rgba(56, 182, 255, 0.3);
    }

    .branding-card h3 {
        text-align: center;
        color: #062644;
        font-size: clamp(1.2rem, 3vw, 1.4rem);
        margin-bottom: 0.8rem;
    }

    .branding-card p {
        text-align: center;
        color: #4a5568;
        line-height: 1.6;
        margin-bottom: 1.3rem;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    /* Logo Display */
    .logo-display {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.9rem;
        margin-bottom: 1.3rem;
        
        @media (min-width: 480px) {
            flex-direction: row;
            gap: 1rem;
        }
    }

    .logo-variation {
        text-align: center;
        padding: 1rem;
        border-radius: 0.5rem;
        background: white;
        flex: 1;
        max-width: 100%;
        box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.05);
        
        @media (min-width: 480px) {
            max-width: 9rem;
        }
    }

    .dark-bg {
        background: #062644;
    }

    .logo-img {
        max-height: 3.5rem;
        margin-bottom: 0.5rem;
        filter: drop-shadow(0 0.1rem 0.25rem rgba(0, 0, 0, 0.1));
        width: auto;
        height: auto;
        max-width: 100%;
    }

    .logo-variation span {
        display: block;
        font-size: 0.8rem;
        color: #4a5568;
        font-weight: 500;
    }

    .dark-bg span {
        color: white;
    }

    /* Color Swatches */
    .color-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.9rem;
        margin-bottom: 1.3rem;
        
        @media (min-width: 480px) {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .color-swatch {
        padding: 1rem 0.8rem;
        border-radius: 0.4rem;
        color: white;
        text-align: center;
        box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        
        &:hover {
            transform: scale(1.02);
        }
    }

    .color-swatch span {
        display: block;
        font-weight: 600;
        margin-bottom: 0.25rem;
        font-size: clamp(0.8rem, 2vw, 0.95rem);
    }

    .color-swatch small {
        opacity: 0.9;
        font-size: clamp(0.7rem, 2vw, 0.75rem);
    }

    /* Typography Examples */
    .type-examples {
        margin-bottom: 1.3rem;
    }

    .type-sample {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
        border-radius: 0.4rem;
        background: #f8fafc;
        border-left: 0.2rem solid #38b6ff;
    }

    .type-sample h4 {
        color: #062644;
        margin-bottom: 0.4rem;
        font-size: clamp(0.95rem, 2vw, 1rem);
    }

    .type-sample p {
        text-align: left;
        margin: 0;
        color: #4a5568;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .roboto-bold h4, .roboto-bold p {
        font-family: 'Roboto', sans-serif;
        font-weight: 700;
    }

    .roboto-regular h4, .roboto-regular p {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
    }

    .schoolbell h4, .schoolbell p {
        font-family: 'Schoolbell', cursive;
    }

    /* Brand Notes - Little Wisdom Bites */
    .brand-note {
        background: #f0f8ff;
        padding: 0.8rem;
        border-radius: 0.4rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border-left: 0.15rem solid #38b6ff;
    }

    .brand-note i {
        color: #38b6ff;
        font-size: 1.1rem;
    }

    .brand-note p {
        text-align: left;
        margin: 0;
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        color: #4a5568;
    }

    /* Footer Statement */
    .branding-footer {
        max-width: 50rem;
        margin: 2.5rem auto 0;
        text-align: center;
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        color: #4a5568;
        padding: 1rem;
        border-top: 1px dashed #38b6ff;
    }

    .branding-footer strong {
        color: #062644;
        font-weight: 700;
    }

    /* Additional Mobile Optimizations */
    @media (max-width: 480px) {
        .philosophy-item {
            padding: 1rem 0.6rem;
        }
        
        .branding-card {
            padding: 1rem;
        }
        
        .logo-display {
            flex-direction: column;
        }
        
        .logo-variation {
            max-width: 100%;
        }
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .why-choose-us .container {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
        max-width: 800px;
    }
    
    .vision-mission-cards {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.2rem;
    }
    
    .content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .video-hero {
        height: 75vh;
        margin-bottom: 100px;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .content p {
        font-size: 0.95rem;
    }
    
    .vision-mission-cards {
        margin-top: -70px;
    }
    
    .card {
        padding: 18px;
    }
    
    .card h2 {
        font-size: 1.3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 18px;
    }
}

/* Footer Section */
/* applied form global CSS - footer.css */