




/* --- Vibrant, modern blue gradient background --- */
.jumbotron:before {
  background: linear-gradient(135deg, #5e22a3, #0f1c81, #0b84a5);
  opacity: 0.95;
}

/* --- Geometric shapes: muted so they don’t steal focus --- */
.rectangle-1,
.rectangle-2 {
  background: linear-gradient(to right, rgba(58, 20, 120, 0.4), rgba(30, 90, 160, 0.4));
  opacity: 0.20;
}

.rectangle-transparent-1,
.rectangle-transparent-2 {
  border-color: rgba(255, 255, 255, 0.05);
}

.circle-1,
.circle-2,
.circle-3 {
  border: 1px solid rgba(255, 255, 255, 0.6); /* brighter */
}


/* --- Logo styling: keep it crisp and well-separated from the background --- */
.logo-img {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}


/* --- Feature icons animations --- */
.feature-item i {
  color: #6a0dad; /* default purple */
  transition: transform 0.3s ease, color 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.feature-item:hover i {
  transform: translateY(-5px) rotate(-10deg);
  color: #00bfa6; /* teal accent on hover */
}

#section-featurettes.featurettes.overlay.bg-fixed {
  position: relative;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
}

#section-featurettes.featurettes.overlay.bg-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 17, 105, 0.85), rgba(26, 80, 118, 0.85)); /* blue-purple overlay */
  z-index: 0;
}

#section-featurettes .container {
  position: relative;
  z-index: 1;
}

<style>
    /* Reduce font size for testimonial text */
    #testimonial .testi-text {
        font-size: 16px; /* adjust as needed */
        line-height: 1.5; /* optional for better readability */
    }
</style>

/* --- Client Section Orange Overlay --- */
#client.overlay.bg-fixed {
  position: relative;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
}

#client.overlay.bg-fixed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 1, 68, 0.85), rgba(7, 27, 207, 0.85) ); /* warm orange gradient */
  z-index: 0;
}

#client .container {
  position: relative;
  z-index: 1;
}

/* --- Make client logos larger and centered --- */
#client .client-item {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px; /* spacing between logos */
}

#client .client-item img {
  width: 180px !important;  /* Increase this number for larger logos */
  height: auto !important;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#client .client-item img:hover {
  transform: scale(1.1);
}
/* --- Contact Section Styling --- */
.contact-section {
  position: relative;
  background: url('img/bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  overflow: hidden;
}

.contact-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* dark overlay for contrast */
  z-index: 0;
}

.contact-section .content-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1); /* translucent card */
  border-radius: 20px;
  padding: 50px 30px;
  backdrop-filter: blur(10px);
  animation: floatBox 4s ease-in-out infinite;
}

/* Animated floating box effect */
@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Animated text fade-in */
.animate-text {
  animation: fadeSlideIn 1.5s ease forwards;
  opacity: 0;
}
@keyframes fadeSlideIn {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* --- Contact Button --- */
.btn-contact {
  background: linear-gradient(135deg, #ff8c00, #ff5e00);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-contact:hover {
  background: linear-gradient(135deg, #ffa733, #ff8c00);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
}

.heart {
  color: #ff5e00; /* orange-red heart */
  display: inline-block;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* --- Our Values Accordion --- */
.values-accordion-section {
  background: #fff;
  padding: 100px 0;
  color: #222;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
}

.section-title span {
  background: linear-gradient(45deg, #ff6600, #ff3cac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

/* Left image */
.values-image img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: scale(1);
  transition: transform 0.5s ease;
}

.values-image img:hover {
  transform: scale(1.03);
}

/* Accordion styles */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.accordion-button {
  background-color: #fff;
  color: #222;
  font-weight: 300;
  font-size: 1.4rem;
  padding: 18px 24px;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(45deg, #4a6c8e);
  color: #fff;
}

.accordion-body {
  background: #fff;
  padding: 20px 25px;
  color: #555;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.section-title {
  font-size: 1.8rem;         /* adjust size to fit your layout */
  line-height: 1.4;
  font-weight: 600;
  color: #222;               /* neutral dark for body text */
  text-align: center;
  margin-bottom: 1.5rem;
}

.highlight-orange {
  color: #ff7b00;            /* vibrant orange accent */
  font-weight: 600;
  transition: color 0.3s ease;
}

.highlight-orange:hover {
  color: #ff9b33;            /* softer orange on hover */
}
/* Smooth continuous leftward scroll */
#scrolling-text {
  overflow: hidden;
  position: relative;
  background: #fff;
}

.scroll-track {
  width: 100%;
  overflow: hidden;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: 300;              /* thin weight */
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;     /* all caps */
  animation: scroll-left 20s linear infinite;
}

/* Duplicate the text for perfect looping */
.scroll-content::after {
  content: "  BRANDING | CHARACTER ILLUSTRATION | STORY-DRIVEN MOTION | LOGOS | BESPOKE INVITATIONS | DESIGN THAT CONNECTS";
  margin-left: 4rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Ensure same navbar spacing on all pages */
#header-navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;   /* increase left padding for logo */
  padding-right: 1rem;  /* keep right padding balanced */
}


/* --- Vimeo video styling in hero --- */
.hero .mockup.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: #000;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.hero .mockup.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Adjust hero layout so video aligns visually with text */
.hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* equal space for text and video */
  gap: 60px;
  align-items: center;
}

/* Tweak padding so section doesn’t look too tall */
.hero {
  background: var(--soft-beige);
  padding: 5rem 2rem;
}

.hero p strong {
  color: var(--brand);
  font-weight: 300;
}



#header-navbar .navbar-brand {
  margin-left: 1.5rem !important; /* Adjust spacing between edge and logo */
}

#header-navbar .container {
  padding-left: 2rem !important; /* Pushes entire navbar content slightly inward */
}
/* Fix logo alignment to match contact page */
#header-navbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

#header-navbar .navbar-brand {
  display: flex;
  align-items: center;
  margin-left: 0 !important; /* Reset any Bootstrap spacing */
}

#header-navbar img {
  max-height: 54px;
}


.footer {
  background: var(--muted-purple);
  color: #fff;
  font-weight: 500;
}

.footer .nav-mastfoot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
}

.footer .nav-mastfoot .nav-link i {
  font-size: 1.4rem;
  color: #fff;
  transition: all 0.3s ease;
}

.footer .nav-mastfoot .nav-link:hover i {
  color: var(--brand);
  transform: translateY(-4px);
}

.heart {
  color: var(--brand);
  display: inline-block;
  animation: beat 1.2s infinite ease-in-out;
}

@keyframes beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.contact-info h5 {
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contact-info p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
/* Fix navbar spacing and layout */
#header-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px; /* adds spacing between logo and text */
}

#header-navbar .navbar-brand img {
  margin-right: 8px; /* slight gap between logo and text */
}

#header-navbar .navbar-nav {
  display: flex;
  align-items: center;
  gap: 22px; /* spacing between menu items */
}

#header-navbar .nav-link {
  color: #fff !important;
  font-weight: 300;
  font-size: 1rem;
  text-transform: none;
}

/* Footer Social Icons */
.footer .nav-mastfoot .nav-link {
  color: #333;
  font-size: 1.2rem;
  margin: 0 8px;
  transition: all 0.3s ease;
}

.footer .nav-mastfoot .nav-link:hover {
  color: var(--brand);
  transform: translateY(-2px);
}

/* --- Contact Page Navbar Fix --- */
#header-navbar.contact-nav {
  background: linear-gradient(135deg, #5e22a3, #0f1c81, #0b84a5) !important; /* match About gradient */
  padding: 1rem 0 !important;
  box-shadow: var(--card-shadow);
}

#header-navbar.contact-nav .navbar-brand img {
  height: 54px !important; /* same as About page logo */
  width: auto;
}

#header-navbar.contact-nav .nav-link {
  color: #fff !important;
  font-weight: 300;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#header-navbar.contact-nav .nav-link:hover,
#header-navbar.contact-nav .nav-link.active {
  color: var(--brand) !important;
}

#header-navbar.contact-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
