
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fdf6e3; /* Soft, light beige */
    color: #5d4037; /* Rich brown */
    overflow-x: hidden;
}

.header {
    background-color: rgba(253, 246, 227, 0.9);
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(93, 64, 55, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: calc(100% - 100px);
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
}

.header h1 {
    margin: 0;
    font-size: 1.8em;
    color: #e67e22; /* Vibrant orange */
    font-weight: 700;
}

.header nav {
    display: flex;
    gap: 25px;
}

.header a {
    text-decoration: none;
    color: #8d6e63; /* Muted brown */
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-weight: 500;
}

.header a:hover, .header a.active {
    background-color: #e67e22;
    color: #ffffff;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    padding: 0 50px;
    background-size: cover;
    background-position: center;
    text-align: center;
    background-image: linear-gradient(rgba(253, 246, 227, 0.8), rgba(253, 246, 227, 0.8));
}

.hero-content {
    max-width: 100%;
    animation: slideInFromLeft 1s ease-out;
}

.hero h2 {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #d35400;
}

.digital-strategy {
    color: #d35400;
}

.ai-text {
    color: #d35400;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #8d6e63;
}

.cta-button {
    background: linear-gradient(45deg, #e67e22, #d35400);
    color: #fff;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.features {
    padding: 100px 50px;
    text-align: center;
}

.features h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 60px;
    color: #5d4037;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    border: 1px solid #d7c8be;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(93, 64, 55, 0.1);
    border-color: #e67e22;
}

.feature-card h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: #e67e22;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1em;
    color: #8d6e63;
    line-height: 1.6;
}

.footer {
    background-color: #fdf6e3;
    color: #8d6e63;
    text-align: center;
    padding: 20px 50px;
    border-top: 1px solid #d7c8be;
}

.contact-section {
    padding: 100px 50px;
    text-align: center;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-icons a {
    font-size: 4em;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-icons a:hover {
    transform: scale(1.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #d7c8be;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #5d4037;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-slideshow {
    flex: 1;
}

@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(0,0,0,0.3);
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
