* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

.custom-text {
    font-family: 'Baloo Paaji';
}

.custom-text a {
    font-family: 'Baloo Paaji';
    text-decoration: none;
    color: inherit;
}

.custom-text-2 {
    font-family: 'Asap', sans-serif;
    font-weight: 900;
}

.small-text {
    font-size: smaller;
}

body {
    color: #333;
    line-height: 1.6;
}

header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: #fff;
}

h1.menu {
    font-family: 'Asap', sans-serif;
    color: #fff;
    font-size: 1.50em;
    margin-left: 5px;
}

.logo {
    font-weight: 500;
    font-size: 30px;
    color: #4e342e;
    cursor: pointer;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #a2685a;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 300px 10%;
    background-color: #f0fef6;
}

.hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* .hero-text {
    flex: 1 1 100%;
    max-width: 500px;
} */

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text p {
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

/* .hero-image {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 30px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50px;
} */

.btn-brown {
    padding: 12px 24px;
    background-color: #a2685a;
    border: none;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
}

.btn-brown a {
    color: white;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 40px 10%;
    background-color: #fff;
    align-items: center;
}

.about {
    padding: 60px 10%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.concise{
    max-width: 400px;
}

.brief{
    max-width: 700px;
    margin: auto;
}

.section {
    padding: 200px 10%;
}

.section h2 {
    color: #111;
    font-size: 2rem;
    margin-bottom: 20px;
}

.section p {
    color: #666;
}

.highlight {
    color: #a2685a;
}

@media (min-width: 768px) {
    /* .hero-text {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        margin-top: 0;
        border-radius: 50%;
    } */

    .hero {
        flex-wrap: nowrap;
    }
}

.services {
    background-color: #f0fef6;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border: 1px solid #e0f2ec;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    flex: 1 1 280px;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

.service-card a {
    text-decoration: none;
    color: inherit;
}

/* Responsive for small screens */
@media (max-width: 600px) {
    nav ul {
        display: none;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .about {
        flex-direction: column;
    }

    .hero {
        padding: 100px 10%;
    }

    .section {
        padding: 100px 10%;
    }

    .clients-section {
        padding: 100px 10%;
    }
}

.clients-section {
    padding: 200px 10%;
    background-color: #fff;
    text-align: center;
}

.clients-text {
    margin-bottom: 30px;
}

.clients-text h2 {
    font-size: 2rem;
    color: #333;
}

.clients-text p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.clients-logos img {
    width: 120px;
    height: auto;
    border-radius: 12px;
    background: #f9f9f9;
    padding: 10px;
}

.contact-section {
    background-color: #f0fef6;
    padding: 60px 10%;
}

.contact-info {
    display: flex;
    color: #333;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-info .bold-text {
    font-weight: bold;
    color: #4e342e;
    margin-bottom: 15px;
    max-width: 50%;
}

.contact-info p {
    margin-bottom: 15px;
    color: #444;
}

.contact-details p {
    margin-bottom: 15px;
}

.social-icons a {
    margin-right: 10px;
    text-decoration: none;
}

.social-icons a img:hover {
    color: #a2685a;
}

@media (max-width: 800px) {
    .contact-info {
        display: flex;
        flex-direction: column;
    }

    .contact-info p {
        max-width: 100%;
        margin-top: 15px;
    }

    .contact-info .bold-text {
        max-width: 100%;
    }
}

footer {
    background: #222;
    color: #ffffffe0;
    padding: 20px 10%;
    text-align: center;
}

.contact-details a {
    text-decoration: none;
    color: #444;
}

.post-card {
  max-width: 720px;
  margin: 40px auto;
  padding: 30px 24px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2b2b2b;
}

.post-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #0077b5; /* LinkedIn blue */
}

.post-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.post-card p {
  margin-bottom: 16px;
}

.post-card strong {
  color: #222;
}

.post-card a {
  color: #0077b5;
  text-decoration: none;
}

.post-card a:hover {
  text-decoration: underline;
}

.acknowledgements {
  font-style: italic;
  color: #555;
}

.post-footer {
  border-top: 1px solid #e1e9ee;
  padding-top: 16px;
  margin-top: 24px;
}

.back {
    margin-top: 30px;
    margin-bottom: 127px;
    text-align: center;
}

button:focus {
    outline:none
}
aside {
    background:#1a1d23; 
    width:250px;height:100vh; 
    position:fixed; 
    transition:.3s;
    left:-250px;
    top:0;
    transition-timing-function: cubic-bezier(0.9,0,1,1);
}
aside.open {
    left:0;
    transition:.3s;
    transition-timing-function: cubic-bezier(0.9,0,1,1);
}
nav a {
    display: block; 
    color:#ddd; 
    text-decoration:none;
    padding:10px
}
nav a:hover { 
    background:#313640;
    color:#a2685a;
} 
aside button {
    border:none; 
    background:none; 
    position: absolute;
    right:-40px; 
    top:7px; 
    font-size:30px; 
    transform:rotate(90deg); 
    display:inline-block; 
    cursor:pointer;
}

.logo-toggle-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.9, 0, 1, 1);
  position: relative;
  z-index: 100;
}

/* When sidebar is open, move logo+button together */
.logo-toggle-wrapper.open {
  transform: translateX(250px);
}

.toggle {
    visibility: hidden;
}

@media (max-width: 426px) {
    .toggle {
        visibility: visible;
        font-size: 18px;
        cursor: pointer;
        background: none;
        border: none;
        color: #a2685a;
        font-weight: bold;
        transform: rotate(90deg);  
    }
}
