/* ////////////////////////////////////////

Your custom css here

/////////////////////////////////////////*/

/* Responsive and resizable images */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* Set a max-width per image */
img.large {
    max-width: 1200px;
}

img.medium {
    max-width: 800px;
}

img.small {
    max-width: 400px;
}

.container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

section .row img {
    margin-top: 1.5rem;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 7rem 0 4rem 0;
    text-align: left;
}

.hero-section h1 {
    font-size: 3rem;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.hero-section .btn {
    border-radius: 0.6rem;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #000;
    color: #fff;
}

.hero-section p {
    font-size: 1.15rem;
    line-height: 1.8;
}

.hero-section .lead.mb-1, .lead.mb-4 {
    font-size: 1.4rem;
}

/* --- LEAD TEXT (Global) --- */
.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    font-weight: 500;
    color: #2b2b2b;
}


/* AESTUNNE SEOLUTION SECTION */
.solution-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.solution-images {
  flex: 1;
}

.solution-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.solution-text {
  flex: 1;
}

@media (max-width: 992px) {
  .solution-content {
    flex-direction: column;
  }
}



/* --- RESPONSIVE  --- */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.05rem;
    }

    .hero-section .lead.mb-1, .lead.mb-4 {
        font-size: 1.4rem;
    }

    .lead {
        font-size: 1.15rem;
    }

    .portfolio-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 3rem 0;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-section .btn {
        margin-top: 1rem;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-section .lead.mb-1, .lead.mb-4 {
        font-size: 1.25rem;
    }

    .portfolio-content h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5.5rem 0 3rem 0;
    }

    .hero-section h1 {
        font-size: 1.9rem;
    }

    .hero-section p {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .hero-section .lead.mb-1, .lead.mb-4 {
        font-size: 1.05rem;
    }

    .lead {
        font-size: 1.05rem;
        font-weight: 500;
    }

    .portfolio-content h2 {
        font-size: 1.4rem;
    }
}