* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100vw;
}

/* Header Styles */
.header {
    background: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-container {
    width: 100vw;
    height: 64px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    text-decoration: underline;
    color: black;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* -------------------------
   Hero Section
-------------------------- */
.hero {
    min-height: 100vh;
    width: 100%;
    padding: 100px 20px 60px;
    /* adjusted for fixed header and better spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    font-family: 'Montserrat', sans-serif;
}

/* Hero content layout */
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

/* Heading text */
.hero-text h1 {
    font-size: 5rem;
    margin: 0;
    color: #111;
    line-height: 1.2;
}

.hero-text strong {
    font-weight: 800;
}

.hero-text {
    display: flex;
    align-items: center;
    flex-direction: column;
}


/* Paragraph text */
.hero-text p,
.hero-subtext {
    font-size: 24px;
    max-width: 700px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
    color: #333;
    min-width: 80vw;
}

/* Typing headline */
.hero-message {
    margin-top: 2.5rem;
}

#typing-text {
    font-size: 48px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #111;
    width: fit-content;
    margin: 0 auto;
}

/* Typing animation */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}

#typing-text.typing {
    animation: typing 5s steps(45, end) forwards, blink 0.7s step-end infinite;
}

/* CTA Button */
.cta-button {
    margin-top: 2rem;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-family: inherit;
    color: #000;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #000;
    color: #fff;
}

/* -------------------------
   Responsive (mobile)
-------------------------- */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p,
    .hero-subtext {
        font-size: 14px;
    }

    #typing-text {
        font-size: 28px;
    }
}


/* About Section */
.about-us {
    padding: 100px 20px;
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;

}

.about-us h2{
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "montserrat", sans-serif;
    color: rgb(237, 236, 236);
    display: flex;
    justify-content: space-around;
}

.about-container {
    max-width: 90vw;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-text {
    flex: 1 1 500px;
}

.about-logo img {
    filter: invert(100%) brightness(95%);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "montserrat", sans-serif;
    color: rgb(237, 236, 236);
    display: flex;
    justify-content: space-around;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgb(237, 236, 236);
    max-width: 600px;
}

.about-logo {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.about-logo img {
    height: 45vh;
    object-fit: contain;
}



.mainprojectimage {
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

/* Portfolio Section */
.portfolio {
    padding: 40px 20px 60px;
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "montserrat", sans-serif;
    color: #333;
    display: flex;
    justify-content: space-around;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: black;
    font-family: 'Montserrat', sans-serif;
}

.portfolio-content p {
    color: #333;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Tag / Pill Styling */
.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: transparent;
    border: 1.5px solid #000;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 40px 20px 60px;
    background-color: #111;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    color: white;
    font-family: 'Inter', sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
}

.image-wrapper {
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    /* Smaller radius for inside rounding */
    display: block;
}

.service-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: "montserrat", sans-serif;
    color: rgb(237, 236, 236);
    display: flex;
    justify-content: space-around;
}

.text {
    padding: 0px 16px;
}

.service-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.glass {
    background: rgba(207, 207, 207, 0.1);
    border-radius: 32px;
    /* backdrop-filter: blur(1px); */
    /* -webkit-backdrop-filter: blur(16px); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px 0px;
    max-width: 98vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(0, 0, 0, 0.1);
}



/* footer */
.footer-contact {
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    padding: 60px 20px 20px;
    text-align: center;
    color: #111;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

.footer-header {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    height: 100px;
    object-fit: contain;
}

.footer-tagline p {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: #222;
}

.footer-tagline strong {
    font-weight: 700;
    display: block;
    color: #000;
}

.footer-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #111;
}

.footer-subtext {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #555;
    font-size: 1rem;
}

.cta-button-footer {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.8rem 1.8rem;
    background: #111;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-footer:hover {
    background: #333;
    color: #fff;
}

.footer-social {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #333;
}

.social-icons {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons img {
    color: black;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1.5px solid #111;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #111;
    transition: background 0.3s, color 0.3s;
}

.social-icons a:hover {
    background: #111;
    color: #fff;
}

.social-icons a:hover img {
    filter: invert(1);
    /* turns white */
}

.footer-bottom {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #777;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */


/* ===============================
   Breakpoint 1: Tablets (<= 992px)
================================== */
@media (max-width: 992px) {
    .nav-container {
        padding: 0px 20px;
    }

    .nav-menu {
        gap: 1.2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p,
    .hero-subtext {
        font-size: 18px;
    }

    #typing-text {
        white-space: normal;
        border: none !important;
        animation: none !important;
        max-width: 90vw;
        font-size: 32px;
    }

    .about-container {
        text-align: center;
    }

    .about-logo {
        color: white;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-content h3 {
        font-size: 1.4rem;
    }

    .glass {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 10px;
        ;
    }

    .footer-header {
        text-align: center;
        justify-content: center;
    }

    .footer-title {
        font-size: 1.6rem;
    }

    .footer-subtext {
        font-size: 0.95rem;
    }
}

/* ===============================
   Breakpoint 2: Mobile (<= 576px)
================================== */
@media (max-width: 576px) {
    .nav-container {
        padding: 0px 20px;
    }

    .about-logo img {
        width: 70vw;
        object-fit: contain;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        flex-direction: column;
        background: #fff;
        width: 100%;
        height: calc(100vh - 64px);
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p,
    .hero-subtext {
        font-size: 14px;
        min-width: 100%;
    }

    #typing-text {
        border: none !important;
        animation: none !important;
        white-space: normal;
        max-width: 90vw;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .portfolio-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-content h3 {
        font-size: 1.2rem;
    }

    .portfolio-content p {
        font-size: 0.9rem;
    }

    .service-content h3 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .glass {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 10px;
        
    }

    .footer-logo {
        height: 80px;

    }

    .footer-header {
        align-items: center;
        justify-content: center;
    }

    .footer-tagline p {
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.4rem;
    }

    .footer-subtext {
        font-size: 0.9rem;
    }

    .cta-button-footer {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/* ------------------------------------ */
/* blog section */
.blog-preview {
    padding: 40px 20px 0px;
    background-color: #f8f8f8;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    font-family: 'Inter', sans-serif;
    background-position: center;
    
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.view-all-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.view-btn {
  display: inline-block;
  padding: 10px 24px;
  color: #333;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
  /* border: 2px #333 solid; */
}

.view-btn:hover {
  text-decoration: underline;
  color: #000;
}



.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.blog-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 90vw;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

/* Scrollbar Styling for WebKit browsers (Chrome, Safari, Edge) */
.blog-grid::-webkit-scrollbar {
  height: 6px;
}

.blog-grid::-webkit-scrollbar-track {
  background: transparent;
}

.blog-grid::-webkit-scrollbar-thumb {
  background-color: rgba(50, 50, 50, 0.4); /* dark pill */
  border-radius: 999px;
  width: 24px;
}

/* Firefox */
.blog-grid {
  scrollbar-width: thin;
  scrollbar-color: rgba(50, 50, 50, 0.4) transparent;
}


.blog-item {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    min-width: 600px;
    flex: 0 0 600px;
    height: 280px;
    /* border: 0.5px #333 solid; */
}



.blog-item:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-item a {
    display: flex;
    text-decoration: none;
    color: inherit;
    width: 100%;
    color: #333;
}

.blog-item a:hover{
    color: #111;
    text-decoration: underline;
}

.arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: 8px;
}

.blog-item a:hover .arrow {
  opacity: 1;
}


.blog-image {
    width: 280px;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    /* flex: 1; */
    justify-content: space-between;
    align-items: center;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.tag {
    background: transparent;
    border: 1.5px solid #000;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.2rem;
    color: #111;
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.blog-meta {
    margin-top: 0.35rem;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Blog Navigation */
.blog-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.blog-nav-btn {
  border: 1.5px solid #333;
  background: transparent;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.blog-nav-btn:hover {
  background: #333;
  color: #fff;
  transform: scale(1.05);
}

.blog-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Optional: Add subtle box-shadow if needed */
.blog-nav-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}


/* Responsive */
@media (max-width: 992px) {
    .blog-item {
        min-width: 500px;
        flex: 0 0 500px;
        height: 250px;
    }

    .blog-image {
        width: 220px;
        height: 250px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.4rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .blog-item {
        flex-direction: column;
        min-width: 320px;
        flex: 0 0 320px;
        height: auto;
    }

    .blog-image {
        width: 100%;
        height: 200px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .blog-preview {
        padding: 30px 20px 40px;
    }

    .blog-header h2 {
        font-size: 1.6rem;
    }

    .blog-header p {
        font-size: 0.9rem;
    }

    .blog-item {
        min-width: 280px;
        flex: 0 0 280px;
    }

    .blog-item a{
        margin: 1rem 0rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.85rem;
    }

    .blog-meta {
        font-size: 0.8rem;
    }
}

.all-blog{
    padding: 100px 20px 60px;
}


.all-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-bottom: 1rem;
}

/* For screens ≤ 776px — switch to single column */
@media (max-width: 776px) {
  .all-blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* For screens ≤ 552px — slightly tighter spacing */
@media (max-width: 552px) {
  .all-blog-grid {
    gap: 1rem;
  }

  .blog-item {
    border-radius: 10px;
  }
}



.blog-content-ind {
  padding: 100px 20px 10px;
  background-color: #f8f8f8;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: 'Inter', sans-serif;
  background-position: center;
  line-height: 1.8;
  color: #333;
}

.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-content-ind h1,
.blog-content-ind h2,
.blog-content-ind h3 {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  line-height: 1.4;
}

.blog-content-ind h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content-ind h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-content-ind h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-content-ind p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-content-ind h1 {
    font-size: 2rem;
  }

  .blog-content-ind h2 {
    font-size: 1.5rem;
  }

  .blog-content-ind h3 {
    font-size: 1.2rem;
  }

  .blog-post-container {
    padding: 0;
  }
}

.blog-post-container a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-family: "inter", sans-serif;
}

.blog-post-container a:hover{
    text-decoration: underline;
}


