body {
    margin: 0;
    padding: 0;
    font-family: "Zalando Sans SemiExpanded", sans-serif;
    background-color: #FFFFFF;
    padding-top: 90px; 
}

html,body {
  overflow-x: hidden !important;
}


header * {
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}


#testimonials {
  scroll-margin-top: 90px; /* adjust based on your header height */
}



main article {
    padding: 1.6rem;
}




/* Header Styling */
header {
    width: 100%;
	max-width: 100%;
 
  box-sizing: border-box;
    background-color: #FFFFFF; 
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.header-main {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1.5rem; /* Add some padding for spacing */
}

@media (min-width: 700px) {
	
	.header-main {
  border-right:solid #D7D6BA 1px;
	
}
}

.left-part, .middle-part, .right-part {
    flex: 1; /* Make each part take equal space */
	
}

.middle-part {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
}

/* Container for search results */
.search-results {
  position: absolute;
  background-color: white;
  border: none;
  max-height: 200px;
	
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* subtle shadow for better visibility */
	scrollbar-width: thin;
  scrollbar-color: #005151 #FFFFFF;
}

/* Chrome / Edge / Safari */
.search-results::-webkit-scrollbar {
  width: 6px;    /* thinner than the html version */
  height: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: #FFFFFF !important;
  border-radius: 8px;
	 border-radius: 50px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #005151;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.search-results::-webkit-scrollbar-thumb:hover {
  background: #FF8E00;
}

/* Individual result items */
.search-result-item,
.autocomplete-item {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 0.7rem;
  color: #005151;
}

/* Links inside result items (if you use <a>) */
.search-result-item a {
  text-decoration: none;
  color: #005151;
  font-size: 0.7rem;
  padding-left: 6px;
}

/* Hover effect */
.search-result-item:hover,
.autocomplete-item:hover {
  background-color: #FFFFFF;
	color: #FF8E00;
}

/* No results message */
.no-results {
  text-decoration: none;
  color: #999 !important; /* grey for better UX */
  font-size: 0.7rem !important;
  padding-left: 16px;
	padding-top: 7px;
	padding-bottom: 7px;
}

.search-container {
    position: relative;
    width: 100%; /* Adjust the width as needed */
}

.searchbox {
    width: 100%; /* Adjust the width to make space for the icon button */
    padding: 0.5rem;
    border: solid #D7D6BA 1px;
    border-radius: 20px; /* Rounded corners on the left side */
	padding-left: 1rem;
	outline: none; 
	font-family: "Zalando Sans SemiExpanded", sans-serif;
}

.search-button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2.2rem; /* Adjust the width of the button */
	    
    background-color: #FF8E00; /* Blue background color */
    border: none;
    border-radius: 20px; /* Rounded corners on the right side */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.search-buttom svg{
	width: 1.2rem;
	height: 1.2rem;
}


.right-part {
    display: flex;
	flex-wrap: wrap;
    justify-content: flex-end; /* Align items to the right */
    margin-right: 0.5rem; /* Add right margin */
	text-align: left;
	margin-top:0.7rem;
}

.helpline {
    font-size: 1rem;
    color: #005151;
    display: flex;
    align-items: center;
	
}

 
.helpline .top-rated-branding-agency {
    margin-right: 2px;
	margin-top: 4px;
    font-size: 1.8rem; /* adjust the icon size */
    color: #ffffff;    /* icon color */
    display: inline-block;
    vertical-align: middle;
}

.top-rated-branding-agency svg {
    width: 1em;
    height: 1em;
    
}



.helpline-container {
    display: flex;
	flex-wrap: wrap;
    flex-direction: column;
    line-height: 0; /* Reduces the line-height between the lines */
	font-family: "Zalando Sans SemiExpanded", sans-serif;
}

.small-text {
    font-size: 0.7rem; /* Adjust the font size for "24x7 Helpline" */
    color: #005151;
    margin: 0; /* Remove margins */
	margin-bottom: 2px;
    line-height: 1; /* Adjust line height */font-weight: 600;
}

.big-text {
    font-size: 0.7rem; /* Adjust the font size for the phone number */
    color: #005151;
    margin: 0; /* Remove margins */
    line-height: 1; /* Adjust line height */
}


.logo img {
    max-width: 12rem;
    padding-left: 0rem;
    padding-top: 1.2rem;
    
}

.hamburger {
    display: none;
    cursor: pointer;
    margin-right: 1.4rem;
    font-size: 2rem;
    font-weight: 600;
}




@media screen and (max-width: 900px) {
    .logo img {
        max-width: 11rem;
        padding-left: 0rem;
        padding-top: 1.4rem;
        padding-bottom: 0.8rem;
        margin-bottom: 0;
    }
    
    .right-link {
        display: none; /* Hide the link on smaller screens */
    }
    
    .top-bar {
        background: #FFFFFF !important; /* Hide background of top bar */
		margin: 0 !important;
		padding: 0 !important;
		border: none;
		font-weight: 500;
    }
    .hamburger {
        display: block;
		font-size: 2rem;
    }
    .hamburger::before {
        content: 'â˜°';
        color: #FF8E00;
        position: absolute;
        top: 0.8rem;
        right: 1.4rem;
        font-weight: 600;
		font-size: 2rem;
    }
    .hamburger.active::before {
        content: none;
    }
    .hamburger.active::after {
        content: 'âœ–';
        color: #FF8E00;
        position: absolute;
        top: 0.8rem;
        right: 1.4rem;
        font-weight: 500;
		font-size: 2rem;
    }

    .top-bar .left-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        padding-top: 10px;
		padding-bottom: 10px;
        z-index: 1000;
    }
    .top-bar .left-links a {
        padding: 0.4rem; /* Matching the padding of dropdown items */
        text-align: center;
        
        line-height: 1.1; /* Adjusted line-height */
        margin: 0; /* Remove margin */
    }

  

    .header-main {
        flex-direction: column;
        align-items: flex-start;
		flex-wrap: wrap;
    }

    .additional-container {
        display: flex;
		flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        padding: 0.5rem 0;
    }

    .middle-part, .right-part {
        display: none;
        
    }

    .searchbox {
        width: 100% ;
    }

    .right-part {
        text-align: center;
    }
}


@media (min-width: 550px) and (max-width: 900px) {
	.search-button {
    
	    height: 32px;
    
}
}

@media screen and (max-width: 550px){
	
	.search-button {
    
	    height: 30px;
    
}
}


.top-bar {
    color: #005151;
    background-color: #FFFFFF;
    font-size: 0.7rem;
    padding-left: 1.6rem;
    padding-top: 0.2rem;
    padding-bottom: 0.7rem;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
	font-weight: 500;
}

.top-bar a {
	 position: relative; 
    color: #005151;
    text-decoration: none !important;
}

.top-bar a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -16px;                 
}

.top-bar a:hover {
    color: #FF8E00;
    text-decoration: none !important;
	
}

.top-bar a.active {
    color: #FF8E00;
    text-decoration: none !important;
}

.right-link a {
    background: #FFFFFF;
    color: #005151;
    padding: 0 1.9rem 0 1.9rem;
    border-radius: 0px;
    text-decoration: none;
    font-weight: 500;
    gap: 9px !important;
    transition: background 0.3s ease-in-out;
}

.right-link a:hover {
    background: #FFFFFF;
    color: #FF8E00;
}

.right-link svg {
    font-size: 1.35em !important;
    vertical-align: middle;
}

@media screen and (min-width: 600px) {
    
	.top-bar {
	
		border-right: solid #D7D6BA 1px;
	}}


@media screen and (min-width: 901px) {
    .mobile-search-helpline {
        display: none;
    }
	.top-bar {
	border-bottom: solid #D7D6BA 1px;
		border-right: solid #D7D6BA 1px;
		padding-top:15px;
	}
 .search-container {
        margin-top: 0.7rem;
    }
}



@media screen and (max-width: 900px) {
	
	body {
		padding-top: 110px;
	}
	
    .mobile-search-helpline {
        display: flex;
        flex-direction: row;
		justify-content: space-between;
        align-items: right;
        padding: 0.35rem 1.6rem 0.85rem 1.6rem;
	
        
			border-bottom: solid #D7D6BA 1px;

    }

    .search-container {
        width: 56% !important;
        margin-right: 0.5rem; /* Add some space between search box and helpline */
		
    }
    
    .helpline {
    font-size: 1rem;
    color: #E8C1A0;
    display: flex;
    align-items: center;
	
    justify-content: flex-end; /* Align items to the right */
   
	text-align: left;
	margin-top: -2px;

	
}

.helpline .top-rated-branding-agency {
    margin-right: 2px;
    font-size: 1.5rem; /* adjust the icon size */
    color: #E8C1A0;    /* icon color */
    display: inline-block;
    vertical-align: middle;
}

.top-rated-branding-agency svg {
    width: 1em;
    height: 1em;
    
}
	
	

.helpline-container {
    display: flex;
    flex-direction: column;
    line-height: 0; /* Reduces the line-height between the lines */
	font-family: "Zalando Sans SemiExpanded", sans-serif;
	 margin: 0;
}

.small-text {
    font-size: 0.6rem; /* Adjust the font size for "24x7 Helpline" */
    
    margin: 0; /* Remove margins */
	margin-bottom: 1px; 
    line-height: 1.2; /* Adjust line height */
}

.big-text {
    font-size: 0.6rem; /* Adjust the font size for the phone number */
    
    margin: 0; /* Remove margins */
    line-height: 1; /* Adjust line height */
}

}

@media screen and (min-width: 699px) and (max-width: 900px) {
	
	 .mobile-search-helpline {
        
	
        
			border-right: solid #D7D6BA 1px;

    }
}


@media screen and (max-width: 375px) {
	
	
	
    .mobile-search-helpline {
        display: flex;
        flex-direction: row;
		justify-content: space-between;
        align-items: right;
        padding: 0.35rem 1.6rem 0.85rem 1.6rem;
	
        
		
    }

    .search-container {
        width: 56% !important;
        margin-right: 0.5rem; /* Add some space between search box and helpline */
		
    }
    
    .helpline {
    font-size: 1rem;
    color: #ffffff;
    display: flex;
    align-items: center;
	
    justify-content: flex-end; /* Align items to the right */
   
	text-align: left;
	margin-top: -2px;

	
}





.small-text {
    font-size: 0.55rem; /* Adjust the font size for "24x7 Helpline" */
   
}

.big-text {
    font-size: 0.55rem; /* Adjust the font size for the phone number */
    
}

}



/* Footer overall styling */
footer {
  width: 100%;
  
  position: relative;
  padding: 0px;
	
}

/* Footer main container: menu left, logo right */
.footer-main {
  display: flex;
  justify-content: space-between;  /* nav on left, logo on right */
  align-items: center;
  position: relative;
	padding-left: 0.4rem;
}

/* Footer Navigation (left side) */
.footer-nav-links {
  display: flex;
  gap: 0px;
}

.footer-nav-links a {
  text-decoration: none;
  color: #005151;
  font-weight: 500;
  font-size: 0.7rem;
 
  padding: 24px 20px 29px 20px;
  transition: color 0.3s ease-in-out;
}

.footer-nav-links a:hover {
  color: #FF8E00;
}

.footer-nav-links a.active {
    /* Active link background */
  color: #FF8E00;             /* Active link text color */
}

/* Footer Logo (right side) */
.footer-logo img {
  max-width: 11rem;
  padding-right: 1.5rem;
  padding-top: 0.6rem;
  padding-bottom: 0.7rem;
}

/* Footer Hamburger - hidden on large screens */
.footer-hamburger {
  display: none;
  cursor: pointer;
  margin-left: 1.4rem;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
}

/* Mobile Styles for Footer (screens less than 900px) */
@media screen and (max-width: 900px) {
  
	.footer-main {
  
	padding-left: 0;
		padding-bottom: 9px;
}
	
	.footer-hamburger {
    display: block;
		font-size: 2rem;
  }
  /* Hamburger icon: use ::before to show â˜°, and ::after for the close icon */
.footer-hamburger::before {
    content: 'â˜°';
    color: #FF8E00;
    position: absolute;
    top: 50%;              /* Center vertically */
    left: 0rem !important;          /* Adjust left position as needed */
    transform: translateY(-55%);
    font-weight: 600;
	z-index: 98;
	font-size: 2rem;
  }
  .footer-hamburger.active::before {
    content: none;
  }
  .footer-hamburger.active::after {
    content: 'âœ–';
    color: #FF8E00;
    position: absolute;
    top: 50%;              /* Center vertically */
    left: 0rem !important;          /* Adjust left position as needed */
    transform: translateY(-55%);
    font-weight: 500 ;
	  z-index: 99;
	  font-size: 2rem;
  }
  /* Footer nav links: hidden by default and dropdown upward */
  .footer-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 100%; /* Dropdown pops upward above the footer */
    left: 0;
    width: 100%; /* Full-width menu */
    
    border-bottom: none; /* Optional border for separation */
    z-index: 988999;
  }
  .footer-nav-links a {
    padding: 0.95rem;         /* Same padding as header dropdown links */
    text-align: center;      /* Center-aligned text */
    text-decoration: none;
   margin-bottom: -2px;
    font-weight: 500;
    font-size: 0.7rem;
    background-color: #FFFFFF;
  }
}



		

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 1.6rem 7px 1.6rem;
  
  color: white;
  font-size: 0.6rem !important;
  margin: 0 auto;
}

.footer-left {
  text-align: left;
  width: calc(40% - 1.6rem);
}

.footer-right {
  text-align: right;
  width: calc(60% - 1.6rem);
}

@media (max-width: 750px) {
  .footer-bar {
    font-size: 0.5rem;
  }

  .footer-left {
    width: calc(40% - 1.6rem);
  }

  .footer-right {
    width: calc(60% - 1.6rem);
  }
}



#address-bar-section {
  padding-left: 1.6rem;
	padding-right: 1.6rem;
	
	padding-bottom: 1rem;
 
	
}

@media (min-width: 750px) and (max-width: 1150px) {
  #address-bar-section {
  
	padding-bottom: 2rem;
 
	
}

}

.address-bar-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  
  margin: 0 auto; /* Centers the container */
}

.address-bar-left {
  flex: 1;
  min-width: 300px;
	padding-right:5rem;
}

.address-bar-right {
  flex: 2;
  display: flex;
  gap: 0px; /* Reduced gap between addresses */
  padding-top: 0.8rem;
}

.address-bar-title {
  font-size: 0.7rem;
  color: #FF8E00;
	padding-top:0;
	margin-top: 0;
}

.address-bar-description {
  color: #005151;
  font-size: 0.8rem;
  font-weight: 600;
	padding-top:0;
	margin-top: 0;
	max-width: 45rem;
	line-height: 1.2;
}

.address-bar-office {
  flex: 1;
  min-width: 200px;
	padding-top: 0rem;
	margin-top:-10px;
	
}

.address-bar-office h4 {
  margin: 0;
  color: #FF8E00;
  font-size: 0.8rem;
	font-weight: 600;
	font-style: normal;
}

.address-bar-office address {
  margin: 0;
  color: #005151;
  font-weight: 500;
  font-size: 0.7rem;
	font-style: normal;
	text-decoration: none;
}


@media (max-width: 610px) {
  .address-bar-right {
    flex-wrap: wrap; /* Ensures wrapping of addresses */
  }

  .address-bar-office {
    flex: 1 0 48%; /* Two-column layout with some spacing */
    min-width: 150px; /* Adjust as needed for spacing */
	  padding-bottom: 1.6rem;
  }
	
	#address-bar-section {
  
	padding-bottom: 0.6rem;
  
}
	.address-bar-office address {
  margin: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.65rem;
}
}

@media (max-width: 400px) {
	.address-bar-office address {
  margin: 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.6rem;
}
	
}



/* Container for the stats section */
.stats-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 2400px; /* Set a max-width as needed */
  margin: 0 auto;
  padding: 1.6rem 0.4rem 2rem 1.6rem;
  background-color:#FFFFFF;
	border-bottom: solid #D7D6BA 1px;
}

/* Each stat column styling */
.stat-link {
  flex: 0 0 24%; /* Four columns (24% each leaves a little extra room for spacing) */
  text-align: left;  /* Adjust to left if needed */
  padding: 0 1.6rem 1.6rem 0;
}

/* Big number (1st line) */
.stat .number {
  font-size: 2rem;  /* Large font size for numbers */
  font-weight: 600;
  color: #FF8E00;
}

/* Topic text (2nd line) */
.stat .topic {
  font-size: 0.8rem; /* Smaller font for the topic label */
  color: #005151;
	font-weight: 600;
  margin: 0.5rem 0;
}

/* Description (3rd line) - a paragraph expected to span two lines */
.stat .description {
  font-size: 0.7rem;  /* Smallest font size for paragraph text */
  color: #005151;
  line-height: 1.4;
  margin: 0.5rem 0 0 0;
	width: 80%;
	font-weight: 500;
}

/* Mobile Styles: Screens below 750px */
@media screen and (max-width: 850px) {
  .stats-section {
    display: flex;
    flex-wrap: wrap;
	  padding: 1.6rem 0.4rem 1rem 1.6rem;
  }

  /* Each clickable card becomes 50% width on mobile */
  .stat-link {
    flex: 0 0 50%;
    max-width: 50%;
    display: block;
    box-sizing: border-box;
   
  }

  .stat {
    width: 100%;
    box-sizing: border-box;
  }

  .stat .description {
    width: 100%;
  }
}



    .brand-identity-designs-section {
      overflow: hidden;
      white-space: nowrap;
      display: flex;
      align-items: center;
      height: 165px;
      margin: -2px 0 0 0;
      padding: 0;
      position: relative;
   
		background-color: #FFFFFF;
    }

    .brand-identity-designs-track {
      display: flex;
      animation: brand-identity-designs-scroll 90s linear infinite;
      will-change: transform;
    }

    .brand-identity-designs-item {
      width: 158px;
      height: 158px;
      margin: 0 1vw;
      display: inline-block;
      border: solid #D7D6BA 1px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      border-radius: 15px;
      
    }

    /* Scroll animation */
    @keyframes brand-identity-designs-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Desktop view */
    @media (min-width: 768px) {
      .brand-identity-designs-section {
        width: 100%;
        height: 200px;
      }
    }

    /* Mobile view */
    @media (max-width: 767px) {
      .brand-identity-designs-section {
        height: 160px;
      }
      .brand-identity-designs-item {
        width: 118px;
        height: 118px;
      }
    }

/* Collage grid (responsive) */
.gallery-scope .gallery-section {
  width: 100%;
  max-width: 2400px;
  margin: 0 auto;
  padding: 1.6rem 1.6rem 1.8rem 1.6rem;
  box-sizing: border-box;
	
	
}

.gallery-scope .gallery-grid {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));


  grid-auto-rows: 6px;            /* base row height used by JS to compute spans */
  gap: 10px;
  align-items: start;
  box-sizing: border-box;
}

/* gallery item must fill its grid cell */
.gallery-scope .gallery-item {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
	
	 
}

/* image styling: width 100% so height varies by aspect ratio */
.gallery-scope .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  background: #efefef;
  transition: transform 0.25s ease;
  line-height: 0;
	
}

/* caption below image (excluded from height calc if you prefer overlay) */
.gallery-scope .gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.65rem;
	font-weight: 500;
  color: #005151;
  text-align: left;
	padding-left: 10px;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
  line-height: 1.3;
  box-sizing: border-box;
}

/* load-more wrapper */
.gallery-scope .load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Mobile: single column stack, no JS grid spanning required */
@media (max-width: 600px) {
  .gallery-scope .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px; /* slightly smaller gap for mobile */
  }

  .gallery-scope .gallery-item {
    width: 100%;
  }

  .gallery-scope .gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
	  border-radius: 12px;
	  
  }
	
	.gallery-scope .gallery-caption {
  margin-top: 0.8rem;
  font-size: 0.65rem;
   color: #005151;
  text-align: left;
	padding-left: 5px;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
  
  box-sizing: border-box;
}

}


#gallery {
  scroll-margin-top: 100px; /* adjust to your header height */
}





/* LIGHTBOX */
.cba-lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cba-lightbox.hidden {
  display: none;
}

.cba-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.cba-lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

/* âœ… Lightbox Image */
#cba-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  
}



/* âœ… Buttons */
.cba-btn {
  position: absolute;
  background: #FF8E00;
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: background 0.25s ease-in-out;
  z-index: 10000;
  line-height: 1;
}

.cba-btn:hover {
  background: #F4A300;
}

/* âœ… Arrow Button Positions & Centering */
.cba-prev,
.cba-next {
  top: 50%;
  transform: translateY(-50%);
}

.cba-prev {
  left: -50px;
}

.cba-next {
  right: -50px;
}

/* âœ… Close Button â€” unchanged & stays on image */
.cba-close {
  top: 10px;
  right: 10px;
	font-size: 1.6rem;
}

/* âœ… Mobile Optimization */
@media (max-width: 650px) {
  .cba-prev {
    left: 10px;
  }
  .cba-next {
    right: 10px;
  }
  .cba-close {
    right: 12px;
    top: 12px;
  }
  #cba-lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}


.content-section-2 {
    display: flex;
    padding-left: 1.4rem;
	padding-right: 1.6rem;
	padding-top: 2.8rem;
	margin-top: 0;
    
}
.content-section-3 {
    display: flex;
    padding-left: 1.4rem;
	padding-right: 1.6rem;
	padding-top: 0;
	margin-top: 0;
   
}

.left-side-2 {
    flex: 1;
    padding-right: 20px;
}

.right-side-2 {
    flex: 1;
    padding-left: 10px;
    text-align: right; /* Right-align on desktop */
}



.headline-2 {
    font-size: 1.2rem;
    margin-top: 0px;
	color: #005151;
	
	font-weight: 600;
	line-height: 1.2;
	
}

.headline-3 {
    font-size: 1rem;
    margin-top: 0px;
	color: #005151;
	
	font-weight: 600;
	line-height: 1.2;
	
}


.paragraph-2 {
    font-size: 0.7rem;
	color: #005151;
	margin-top: 2px;
	font-weight: 500;
}

/* Responsive styles for mobile */
@media (max-width: 750px) {
    .content-section-2 {
        flex-direction: column;
        padding-left: 1.6rem;
	margin-top: 0 !important;
		padding-top: 2.5rem;
    }
	.content-section-3 {
        flex-direction: column;
        padding-left: 1.4rem;
	margin-top: 0 !important;
		padding-top: 0;
    }

    .left-side-2,
    .right-side-2 {
        margin:0;
		padding:0;
    }

    .right-side-2 {
        text-align: left; /* Left-align on mobile */
    }

    .headline-2 {
        font-size: 1.2rem;
		padding-bottom: 0;
		margin-bottom: 0;
		margin-top: 0px;
    }
	.headline-3 {
        font-size: 1rem;
		padding-bottom: 0;
		margin-bottom: 0;
		margin-top: 0px;
    }

    .paragraph-2 {
		
        font-size: 0.7rem;
		padding-top: 0.5rem;
		color: #ffffff;
		
		margin-top: 0;
    }
}

.work-section {
      padding: 3rem 1.6rem 0 1.6rem;
		
    }
.work-gallery-section {
      padding: 3rem 1.6rem 0 1.6rem;
		
    }

.project-section {
      padding: 2rem 1.6rem 0 1.6rem;
		
    }

.work-caption-pill {
      background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;font-weight: 700;
    }

.work-gallery-caption-pill {
      background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;font-weight: 700;
    }

.work-section-heading {
       margin: 1rem 0 0.5rem 0;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
		
  line-height: 1.2;
  color: #005151;
    }

.work-gallery-section-heading {
       margin: 1rem 0 0.5rem 0;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
		
  line-height: 1.2;
  color: #005151;
    }


.project-section-heading {
       margin: 1rem 0 0.5rem 0;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
		
  line-height: 1.2;
  color: #005151;
    }

.work-section-heading-3 {
       margin: 0 0 0.8rem 0 ;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
	color: #005151;
}


.work-paragraph {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 1rem;
      margin-bottom: 0.5rem;
     font-weight: 500;
    }

.work-gallery-paragraph {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 1rem;
      margin-bottom: 0.5rem;
     font-weight: 500;
    }


.work-paragraph-project {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 2px;
      margin-bottom: 1rem;
     font-weight: 500;
    }

.work-paragraph-project {
  width: 100%; /* Default for mobile */
}

/* Desktop only (above 750px or your preferred breakpoint) */
@media screen and (min-width: 750px) {
  .work-paragraph-project {
    width: 60%;
  }
}


.services-pricing {
      padding: 3rem 1.6rem 2rem 1.6rem;
		
    }

.services-caption-pill {
      background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;
	font-weight: 700;
    }
    .services-section-heading {
       margin: 1rem 0 ;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
		
  line-height: 1.1;
  color: #005151;
    }
.services-section-heading-4 {
       margin: 0.7rem 0 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
		
  line-height: 1.1;
  color: #005151;
    }

.services-section-heading-2 {
       margin: 1rem 0 0 0;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
		
  line-height: 1.2;
  color: #005151;
    }

.services-paragraph {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 1rem;
      margin-bottom: 1.8rem;
     font-weight: 500;
    }

.services-image {
  width: 100%;
  max-width: 2400px; /* match your container */
  display: block;
  margin: 0;
  border-radius: 15px;
  object-fit: cover;
	margin-bottom: 2rem;
	
	max-height: 270px;
}


@media screen and (max-width: 750px) {
	.services-image {
    max-height:300px;
	height: 400px;
}

	
}




.news {
      padding: 3rem 1.6rem 0rem 1.6rem;
		
    }

.news-pill {
      
  background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;
	font-weight: 700;
    }
    .news-section-heading {
       margin: 1rem 0 1rem 0 ;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
    }
.news-section-heading-3 {
       margin: 0 0 0.8rem 0 ;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
	
    }
.news-section-heading-2 {
       margin: 1rem 0 0.5rem 0 ;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
    }
.news-paragraph {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 0.8rem;
      margin-bottom: 1.6rem;
     font-weight: 500;
    }






/* Testimonials Carousel Section */
.testimonial-carousel-section {
  padding: 0.5rem 1rem 2.5rem 1rem;
  
  position: relative;
	overflow: visible;
	
}

/* Carousel Container */
.testimonial-carousel-container {
  display: flex;
  align-items: center;
  overflow: visible;
  position: relative;
}

/* Navigation Buttons */
.testimonial-carousel-nav {
  background-color: #FF8E00;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5;
  outline: none;
}

.testimonial-carousel-nav:hover {
  background-color: #F4A300;
}

.testimonial-carousel-nav.prev {
  left: 0;
	padding-top: 5px;
}

.testimonial-carousel-nav.next {
  right: 0;
	padding-top: 5px;
}



/* Outer Container: allow vertical overflow */
    .testimonial-carousel-outer {
      overflow: visible;
      position: relative;
      width: 100%;

    }

/* Carousel Wrapper */
.testimonial-carousel-wrapper {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease-in-out;
  overflow-x: auto;
	overflow-y: visible !important;
  scroll-behavior: smooth;
  padding: 1.9rem 0.6rem 0.6rem 0.6rem;
	  
}

/* Hide scrollbar */
.testimonial-carousel-wrapper::-webkit-scrollbar {
  display: none;
}
.testimonial-carousel-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Testimonial Tile */
.testimonial-tile {
  flex: 0 0 calc(33.333% - 1rem); /* Approximately 3 tiles visible on desktop */
  background-color: #ffffff;
  border-radius: 15px;
	border: solid #D7D6BA 1px;
  box-shadow: none;
  padding: 1.5rem 1rem 1rem 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: visible;
}




/* Patient Image - Half Pop-Out Effect */
.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -30px;
  left: 1.6rem;           /* Sets a 2rem gap from the left fence */
  transform: none;      /* Removes centering transform */
  
	border: solid #D7D6BA 1px;
}


/* Testimonial Text */
.testimonial-text {
  font-size: 0.7rem;
  color: #005151;
  margin-top: 25px; /* Provide space below the overflowing image */
  flex-grow: 1;
	font-weight: 500;
}

/* Testimonial Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Patient Info */
.testimonial-info {
  font-size: 0.75rem;
  color: #005151;
  line-height: 1.2;
	font-weight: 500;
}

/* Rating Stars */
.testimonial-rating .star {
  font-size: 0.9rem;
  color: #FF8E00; /* Gold color for stars */
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
  .testimonial-tile {
    flex: 0 0 calc(70% - 1rem);
  }
	
	
}

 
    .usp-section-button {
      background-color: #FF8E00;
      color: #FFFFFF;
      border: none;
      padding: 0.8rem 1.5rem ;
      border-radius: 15px;
      cursor: pointer;
      display: inline-block;
		margin-bottom: -5px;
		font-size: 0.65rem;
		font-weight: 600;
		font-family: "Zalando Sans SemiExpanded", sans-serif;
    }
    .usp-section-button:hover {
      background-color: #F4A300;
		color: #ffffff;
    }
    

    

.usp-section-button-3 {
      background-color: #FF8E00;
      color: #FFFFFF;
      border: none;
      padding: 0.8rem 1.5rem ;
      border-radius: 15px;
      cursor: pointer;
      display: inline-block;
		margin-bottom: -5px;
		font-size: 0.65rem;
		font-weight: 600;
		font-family: "Zalando Sans SemiExpanded", sans-serif;
    }
    .usp-section-button-3:hover {
      background-color: #F4A300;
		color: #ffffff;
    }




.work-section-button {
  background-color: #FF8E00;
  color: #FFFFFF;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  cursor: pointer;

  display: block;
  width: 35vw;
	margin: 0 auto;

  margin-bottom: -5px;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  text-align: center;
}

    .work-section-button:hover {
      background-color: #F4A300;
		color: #ffffff;
    }

@media screen and (max-width: 700px) {
.work-section-button {
 
  width: 100%;
	margin: 0 auto;

  margin-top: -10px;

}
}



.services-section-button {
  background-color: #FF8E00;
  color: #FFFFFF;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  cursor: pointer;

  display: block;
  width: 35vw;
	margin: 0 auto;

  margin-bottom: -5px;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  text-align: center;
}

    .services-section-button:hover {
      background-color: #F4A300;
		color: #ffffff;
    }

@media screen and (max-width: 700px) {
.services-section-button {
 
  width: 100%;
	margin: 0 auto;

  margin-top: -10px;

}
}



    
		/* Responsive Styles */
@media screen and (max-width: 411px) {
  
	
	.usp-section-button-3 {
      
		margin-bottom: 15px !important;
		
    }
   
}

    
@media screen and (min-width: 600px) and (max-width: 900px) {
  .testimonial-tile {
    flex: 0 0 calc(50% - 1rem);
  }
}


/* =========================
   Section wrapper
========================= */
.entrepreneurship-section {
  width: 100%;
  padding: 3rem 1.6rem;
  border-bottom: solid #D7D6BA 1px;
  box-sizing: border-box;
}

/* =========================
   Inner layout (mobile first)
========================= */
.entrepreneurship-inner {
  max-width: 2400px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* =========================
   Columns
========================= */
.entrepreneurship-left,
.entrepreneurship-right {
  width: 100%;
}

/* =========================
   Left column typography
========================= */
.section-tag {
  color: #005151;
  border: solid #005151 2px;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  font-size: 0.65rem;
  font-weight: 700;
  width: fit-content;
	margin-top: 0;
}

.section-title {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
}

.section-subtitle {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
}

.section-body {
  font-size: 0.7rem;
  line-height: 1.2;
  font-weight: 500;
  color: #005151;
  margin: 0;
}

/* =========================
   Right column (BACKGROUND IMAGE)
========================= */
.entrepreneurship-right {
  display: flex;
  min-height: 0; /* critical */
}

/* Image wrapper now controls sizing */
.hero-image-wrapper {
  flex: 1;
  width: 100%;
  min-height: 260px;            /* mobile visual floor */
  border-radius: 18px;
  overflow: hidden;
  margin: 0;

  /* ðŸ”‘ background image replaces <img> sizing */
  background-image: url("assets/about-creative-branding-agency.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* Keep <img> for SEO / accessibility, remove from layout */
.hero-image-wrapper img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* =========================
   Desktop equal-height layout
========================= */
@media (min-width: 900px) {

  .entrepreneurship-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
  }

  .entrepreneurship-left {
    flex: 1.2;
    padding-right: 1rem;
  }

  .entrepreneurship-right {
    flex: 1;
    min-width: 0;
  }

  /* allow unlimited shrink on desktop */
  .hero-image-wrapper {
    min-height: 0;
  }
}




.creative-branding-agency {
      padding: 3rem 1.6rem 2rem 1.6rem;
		
    }

.creative-branding-agency-pill {
      background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;
	font-weight: 700;
    }
    
.creative-branding-agency-heading-4 {
       margin: 0.7rem 0 1rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
		
  line-height: 1.1;
  color: #005151;
    }

.creative-branding-agency-heading-2 {
       margin: 1rem 0 0 0;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 600;
		
  line-height: 1.2;
  color: #005151;
    }

.creative-branding-agency-paragraph {
      font-size: 0.7rem;
	color: #005151;
	margin-top: 1rem;
      margin-bottom: 1.8rem;
     font-weight: 500;
    }

.creative-branding-agency-image {
  width: 100%;
  max-width: 2400px; /* match your container */
  display: block;
  margin: 0;
  border-radius: 15px;
  object-fit: cover;
	margin-bottom: 2rem;
	margin-top: -0.6rem;
	max-height: 360px;
	background-color: #006a6a;
	object-position: 50% 80%; 
}

.image-overlay-container { position: relative; width: 100%; cursor: pointer; height: 360px; margin-bottom: 2rem; background-color: #006a6a; border-radius: 16px; }


@media screen and (max-width: 750px) {
	.creative-branding-agency-image {
		
		width: 100%;
  height: 320px;            /* extra height for movement */
  object-fit: cover;
  /* focal point stays correct */

  
  display: block;
  max-height: 320px;
 
}
.image-overlay-container { cursor: pointer; height: 320px; margin-bottom: 2rem;}
	
}


@media screen and (max-width: 390px) {
	.creative-branding-agency-image {
		
		width: 100%;
  height: 250px;            /* extra height for movement */
  object-fit: cover;
  /* focal point stays correct */

  
  display: block;
  max-height: 250px;
 
}
.image-overlay-container { cursor: pointer; height: 250px; margin-bottom: 2rem;}
	
	.creative-branding-agency-heading-2 {
      
  font-size: 1.2rem;
  
    }
	
	
}











/* Overlay */ .image-overlay-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: rgba(0, 0, 0, 0.20); /* optional */ border-radius: 18px; }



/* Small text */ .image-eyebrow { color: #FFFFFF;  text-transform: uppercase; margin-bottom: 5px; opacity: 1; font-weight: 700; 
background-color: transparent;

  padding: 0.2rem 0.8rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
 
  text-align: left;
  border: solid #FFFFFF 2px;
  font-size: 0.7rem;

} 

.image-card-link { display: block; text-decoration: none; color: inherit; } 

.image-overlay-text { padding-inline: clamp(16px, 4vw, 48px); } 


/* Heading */ 
.image-overlay-text h4 { color: #ffffff; font-size: clamp(24px, 3.5vw, 40px); font-weight: 600;  margin: 0 0 36px 0; } 


@media (max-width: 750px) { 
	
	.image-overlay-text h4 { margin: 0 0 16px 0 !important; }
	
}

@media (max-width: 599px) { 
	
	
	
	.image-overlay-text { padding-inline: clamp(10px, 2vw, 36px); } }







@media (min-width: 531px) and (max-width: 671px) {
	
	.image-overlay-text h4 { 
		font-size: clamp(37px, 3.5vw, 40px); 
		 } 
}

@media (min-width: 439px) and (max-width: 531px) {
	
	.image-overlay-text h4 { 
		font-size: clamp(30px, 3.5vw, 40px); 
		 } 
}

@media (max-width: 360px) {
	
	.image-overlay-text h4 { 
		font-size: clamp(20px, 3.5vw, 40px); 
		 } 
}

/* Icon top-right */ 
.overlay-icon { position: absolute; top: 10px; right: 10px; z-index: 3; /* stays above overlay */ 
	pointer-events: none; /* optional */ display: none; }


@media (min-width: 600px) { .overlay-icon { top: 20px; right: 20px; } } 


/* Invisible clickable layer */ .image-click-layer { position: absolute; inset: 0; z-index: 5; text-indent: -9999px; } 









/* =========================
   Section wrapper
========================= */
.founder-spotlight {
  width: 100%;
  box-sizing: border-box;
  padding: 3rem 1.6rem 2rem;
  border-top: solid #D7D6BA 1px;
}

/* =========================
   Base layout (mobile-first)
========================= */
.fs-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* =========================
   Left column
========================= */
.fs-left {
  display: flex;
  flex-direction: column;
}

/* Pill */
.fs-pill {
  background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  border: solid #005151 2px;
  font-size: 0.65rem;
  font-weight: 700;
  margin: 0;
}

/* Headings */
.fs-heading {
  margin: 1rem 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
}

.fs-subheading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
}

/* Body text */
.fs-copy {
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 500;
  color: #005151;
  margin-bottom: 1.4rem;
}

/* =========================
   Right column (BACKGROUND IMAGE)
========================= */
.fs-right {
  width: 100%;
}

/* This element now controls the image */
.fs-right-inner {
  width: 100%;
  min-height: 260px;              /* mobile visual floor */
  border-radius: 15px;
  overflow: hidden;

  /* ðŸ”‘ background image replaces <img> sizing */
  background-image: url("assets/Aditya-Singh-Bisht-Founder-Creative-Branding-Agency.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* This element now controls the image */
.fs-right-inner-2 {
  width: 100%;
  min-height: 260px;              /* mobile visual floor */
  border-radius: 15px;
  overflow: hidden;

  /* ðŸ”‘ background image replaces <img> sizing */
  background-image: url("assets/suruchi-trivedi-co-founder-and-chief-brand-officer-of-one-of-best-branding-companies-for-startups-and-small-businesses-in-india.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

/* Hide the <img> visually but keep it for SEO & accessibility */
.fs-founder {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* =========================
   Desktop / Tablet
   (true equal-height columns)
========================= */
@media (min-width: 1150px) {

  .fs-inner {
    display: grid;
    grid-template-columns: 65fr 35fr;
    column-gap: 64px;
    align-items: stretch;
  }

  .fs-left {
    min-width: 0;
  }

  .fs-right {
    display: flex;
    min-width: 0;
  }

  /* This wrapper stretches AND shrinks */
  .fs-right-inner {
    flex: 1;
    min-height: 0;                /* ðŸ”‘ allows unlimited shrinking */
    width: 100%;
    border-radius: 15px;
  }
	 /* This wrapper stretches AND shrinks */
  .fs-right-inner-2 {
    flex: 1;
    min-height: 0;                /* ðŸ”‘ allows unlimited shrinking */
    width: 100%;
    border-radius: 15px;
  }
}


@media (min-width: 750px) and (max-width: 1150px) {

  .fs-inner {
    display: grid;
    grid-template-columns: 50fr 50fr;
    column-gap: 25px;
    align-items: stretch;
	}
	.fs-left {
    min-width: 0;
  }

  .fs-right {
    display: flex;
    min-width: 0;
  }

  /* This wrapper stretches AND shrinks */
  .fs-right-inner {
    flex: 1;
    min-height: 0;                /* ðŸ”‘ allows unlimited shrinking */
    width: 100%;
    border-radius: 15px;
  }
	 /* This wrapper stretches AND shrinks */
  .fs-right-inner-2 {
    flex: 1;
    min-height: 0;                /* ðŸ”‘ allows unlimited shrinking */
    width: 100%;
    border-radius: 15px;
  }
}

/* =========================
   Very wide screens (optional)
========================= */
@media (min-width: 1400px) {
  .fs-inner {
    column-gap: 64px;
  }
}



@media (max-width: 750px) {

 
  .fs-right-inner {
    
    height: 30rem;                
   
  }
	 /* This wrapper stretches AND shrinks */
  .fs-right-inner-2 {
   
    height: 30rem;                
    
  }
}



/* Strong variant: force image-left layout on desktop (place this at the end of your stylesheet) */ @media (min-width: 750px) and (max-width: 1150px) { .founder-spotlight--left .fs-inner { display: grid !important; /* ensure grid is used */ grid-template-columns: 50fr 50fr !important; column-gap: 25px !important; align-items: stretch !important; width: 100%; box-sizing: border-box; grid-auto-flow: column; } /* image column - visual first */ .founder-spotlight--left .fs-right { grid-column: 1 / 2 !important; min-width: 0 !important; /* prevent intrinsic min-width forcing wrap */ align-self: stretch !important; display: block !important; } /* text column - visual second */ .founder-spotlight--left .fs-left { grid-column: 2 / 3 !important; min-width: 0 !important; display: block !important; } 
	
	
	/* ensure inner image wrapper fills the column height */ .founder-spotlight--left .fs-right-inner-2 { height: 100% !important; width: 100% !important; overflow: hidden !important; box-sizing: border-box !important; } 
	
	
	/* make sure image doesn't overflow */ .founder-spotlight--left .fs-founder { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; } }


/* Strong variant: force image-left layout on desktop (place this at the end of your stylesheet) */ @media (min-width: 1150px) { .founder-spotlight--left .fs-inner { display: grid !important; /* ensure grid is used */ grid-template-columns: 35fr 65fr !important; column-gap: 64px !important; align-items: stretch !important; width: 100%; box-sizing: border-box; grid-auto-flow: column; } /* image column - visual first */ .founder-spotlight--left .fs-right { grid-column: 1 / 2 !important; min-width: 0 !important; /* prevent intrinsic min-width forcing wrap */ align-self: stretch !important; display: block !important; } /* text column - visual second */ .founder-spotlight--left .fs-left { grid-column: 2 / 3 !important; min-width: 0 !important; display: block !important; } 
	
	
	/* ensure inner image wrapper fills the column height */ .founder-spotlight--left .fs-right-inner-2 { height: 100% !important; width: 100% !important; overflow: hidden !important; box-sizing: border-box !important; } 
	
	
	/* make sure image doesn't overflow */ .founder-spotlight--left .fs-founder { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; } 

	
}


/* Mobile: single column, banner first, then text, then founder image */ @media (max-width: 750px) { .fs-inner { flex-direction: column; gap: 30px; } .fs-left { order: 2; flex: 1 1 auto; flex-basis: auto; } .fs-right { order: 1; flex: 0 0 auto; width: 100%; display: block; } .fs-banner-wrap { order: 3; width: 100%; }}


/* AGENCY USPS GRID STYLES â€” corrected to match HTML class names */
.agency-usps-grid-container {
  display: grid;
  gap: 20px;
  padding: 1rem 1.6rem 1.5rem 1.6rem;
  background-color: #FFFFFF;
  grid-template-columns: repeat(4, 1fr);
}

.agency-usps-tile {
  border-radius: 15px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
	border: solid #D7D6BA 1px;
}

.usp-pointer-icon{
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.agency-usps-headline {
  margin: 10px 0;
  color: #005151;
  font-size: 0.85rem;
  font-weight: 600;
}

.agency-usps-paragraph {
  margin: 0 0 15px 0;
  color: #005151;
  font-size: 0.7rem;
  flex-grow: 1;
  margin-bottom: 0.2rem;
	font-weight: 500;
}

/* Responsive: Grid Layout */
@media (max-width: 750px) {
  .agency-usps-grid-container {
    gap: 11px;
    grid-template-columns: repeat(2, 1fr);
  }

  .agency-usps-headline {
    font-size: 0.9rem;
  }
}





/* Container */
.get-in-touch-section {
  padding: 3rem 1.6rem 3rem 1.6rem;
  
  box-sizing: border-box;
}

/* Two-column layout */
.get-in-touch-two-col {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4rem;
}

/* Columns */
.get-in-touch-left,
.get-in-touch-right {
  flex: 1;
  max-width: 50%;
  box-sizing: border-box;
}

/* Caption pill */
.get-in-touch-caption-pill {
  background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  margin-top: 0.5rem;
  margin-bottom: 0rem;
  text-align: left;
  border: solid #005151 2px;
  font-size: 0.65rem;font-weight: 700;
  line-height: 1;
}

/* Heading and paragraph */
.get-in-touch-heading {
  margin: 1rem 0;
  text-align: left;
  font-weight: 600;
	 font-size: 1.4rem;
  line-height: 1.2;
  color: #005151;
}

/* Heading and paragraph */
.get-in-touch-heading-2 {
  margin: 1rem 0;
  text-align: left;
  font-weight: 600;
	 font-size: 1.1rem;
  line-height: 1.2;
  color: #005151;
}

.get-in-touch-paragraph {
  font-size: 0.7rem;
  color: #005151;
  margin: 0 0 1.6rem 0;
	font-weight: 500;
}

/* Buttons */
.get-in-touch-btn {
   background-color: #FF8E00;
      color: #ffffff;
      
      padding: 0.8rem 1.5rem ;
      border-radius: 25px;
      cursor: pointer;
      display: inline-block;
		
		font-size: 0.65rem;
		font-weight: 600;
		font-family: "Zalando Sans SemiExpanded", sans-serif;
}
.get-in-touch-btn:hover { background-color: #F4A300;color: #ffffff; }

/* Right column: make form stretch */
.get-in-touch-right {
  display: flex;
  align-items: stretch;
  flex: 1;
  max-width: 50%;
}

/* Form */
.get-in-touch-form {
  background-color: transparent;
  
  border-radius: 30px;
  width: 100%;
  box-sizing: border-box;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
}

/* Form groups */
.get-in-touch-form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.get-in-touch-form-group label {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #005151;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
	font-weight: 500;
}
.get-in-touch-form-group input,
.get-in-touch-form-group textarea,
.get-in-touch-form-group select {
  padding: 0.5rem;
  font-weight: 500;
  border-radius: 15px;
  font-size: 0.7rem;
  box-sizing: border-box;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
	border: solid #D7D6BA 1px;
}

/* Fieldset and legend reset for pricing question */
.get-in-touch-form fieldset {
  margin: 0 0 1rem 0;
  padding: 0;
  border: 0;
}
.get-in-touch-form legend {
  font-size: 0.8rem !important;
  margin-bottom: 0.5rem;
  color: #005151;
	font-weight: 500;
	font-family: "Zalando Sans SemiExpanded", sans-serif;
}

/* Submit */
.get-in-touch-submit-btn {
  background-color: #FF8E00;
  color: #ffffff;
border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 600;
	
}
.get-in-touch-submit-btn:hover { background-color: #F4A300; color: #ffffff; }

/* Responsive map */
.get-in-touch-responsive-map { width: 100%; border-radius: 15px; }

/* Placeholder typography */
.get-in-touch-form input::placeholder,
.get-in-touch-form textarea::placeholder {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  color: #979797;
  font-weight: 500;
}

select option[value=""] {
  color: #005151; /* your placeholder color */
}
/* Standard */
.get-in-touch-form input::placeholder,
.get-in-touch-form textarea::placeholder,
.get-in-touch-form select::placeholder {
  color: #979797;
  opacity: 1;
}

/* WebKit browsers (Chrome, Safari, Edge) */
.get-in-touch-form input::-webkit-input-placeholder,
.get-in-touch-form textarea::-webkit-input-placeholder,
.get-in-touch-form select::-webkit-input-placeholder {
  color: #979797;
}

/* Mozilla Firefox 19+ */
.get-in-touch-form input::-moz-placeholder,
.get-in-touch-form textarea::-moz-placeholder,
.get-in-touch-form select::-moz-placeholder {
  color: #979797;
  opacity: 1;
}

/* Mozilla Firefox 4 to 18 */
.get-in-touch-form input:-moz-placeholder,
.get-in-touch-form textarea:-moz-placeholder,
.get-in-touch-form select:-moz-placeholder {
  color: #505050;
  opacity: 1;
}

/* Internet Explorer 10-11 */
.get-in-touch-form input:-ms-input-placeholder,
.get-in-touch-form textarea:-ms-input-placeholder,
.get-in-touch-form select:-ms-input-placeholder {
  color: #505050;
}

@media screen and (max-width: 750px) {
  .get-in-touch-two-col {
    flex-direction: column;
    gap: 3rem;
  }

  /* FORM FIRST ON MOBILE */
  .get-in-touch-right {
    order: -1;
  }

  .get-in-touch-left,
  .get-in-touch-right {
    max-width: 100%;
  }

  .get-in-touch-left {
    margin-bottom: 0.5rem;
	  
	  padding-top: 2.5rem;
	  border-top: solid #D7D6BA 1px !important;
  }
	

}


/* Small tweak for native date input on small screens */
@media screen and (max-width: 480px) {
  #git-start-date { font-size: 0.95rem; padding: 0.6rem; }
}

/* For larger screens optionally increase gap */
@media screen and (min-width: 1400px) {
  .get-in-touch-two-col { gap: 3.5rem; }
}





    .card {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
 
  padding: 2.5rem 1.6rem 2.5rem 1.6rem;
 
		
		
}

/* Left column */
.ty-left {
	top: 0;
  text-align: left;
  padding: 8px 0;
}

/* Material icon container */
.ty-icon {
  width: 90px;
  height: 90px;
  display: block;
  object-fit: contain;
  
}
.ty-icon svg{
  font-size: 2rem;
  
}

h1.ty-title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #005151;
  font-weight: 600;
}

p.ty-copy {
  margin: 0 0 20px;
  color: #005151;
  line-height: 1.2;

  font-size: 0.7rem;
}

.ty-cta {
  margin: 0;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--gold);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(11,34,51,0.12);
  outline: none;
}

/* Right column (image framed) */
.ty-visual {
  margin: 0;
  justify-self: end;
}

.ty-image {
  display: block;
  width: 85%;
  height: auto;
  border-radius: 15px;
  padding: 0;
  
  object-fit: cover;
}

/* Responsive: stack, image below text on small screens */
@media (max-width: 860px) {
  .card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ty-visual {
    order: 2;
    justify-self: center;
  }
  .ty-left {
    order: 1;
    margin-right: 1.6rem;
    padding-right: 1.6rem;
  }
  .ty-image {
    max-width: 520px;
  }
}

@media (max-width: 420px) {
  h1.ty-title {
    font-size: 1.4rem;
	  margin-top: 2.2rem;
  }
  p.ty-copy {
    font-size: 0.8rem;
  }
  .ty-icon {
    width: 40px;
    height: 40px;
  }
  .ty-icon svg {
    font-size: 20px;
  }
}

/* Accessibility focus */
.btn-primary:focus {
  box-shadow: 0 0 0 4px rgba(11,42,73,0.12);
}


.creative-branding-agency-pill-link,
.creative-branding-agency-pill-link:visited,
.creative-branding-agency-pill-link:hover,
.creative-branding-agency-pill-link:focus,
.creative-branding-agency-pill-link:active {
  text-decoration: none !important;
  color: inherit !important; /* prevents blue default link color */
}


.fs-copy a {
  pointer-events: auto !important;
  text-decoration: none !important;
  color: inherit !important;
  cursor: pointer;
}


.stat-link {
  text-decoration: none;
  color: inherit;
  
  cursor: pointer;
  
}

.stat {
  pointer-events: none; /* ensures click passes to link */
}



.stat-link,
.stat-link:link,
.stat-link:visited,
.stat-link:hover,
.stat-link:active {
  color: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
  display: inline-block;
}


html {
  scrollbar-width: thin;
  scrollbar-color: #005151 #FFFFFF;
	
}


@media (min-width: 700px) {
	
	html {
  border-right:solid #D7D6BA 1px;
	
}
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-left: 1px solid #D7D6BA !important;
}

html::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

html::-webkit-scrollbar-track {
  background: #FFFFFF !important;
  border-radius: 8px;
	border-left: solid #D7D6BA 1px !important;
}

html::-webkit-scrollbar-thumb {
  background: #005151;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

html::-webkit-scrollbar-thumb:hover {
  background: #FF8E00;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
}

.audience-column {
  width: 100%;
}

/* Only for image columns: top-align on desktop */
.image-column {
  display: flex;
  align-items: flex-start;  /* top-align image */
  justify-content: center;  /* horizontal centering */
}

.image-column img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* MOBILE: stack columns, image first */
@media (max-width: 991px) {
  .audience-layout {
    grid-template-columns: 1fr; /* stack columns */
    gap: 0px;
  }
	.audience-column .work-paragraph {
    margin-bottom: 0;             /* remove extra paragraph spacing */
  }

  .image-column {
    order: -1;            /* image comes first */
    align-items: center;  
	  margin-top: 1rem;/* center horizontally */
  }
  
	.cba-gallery{
		margin-top: 1rem;
	}
	
  .text-column {
    order: 1;             /* text comes after image */
  }
}


/* Feedback Form Container */
.feedback-form {
 
  border-radius: 0;
  width: 60%;
  box-sizing: border-box;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
	margin: 1.6rem;
}

/* Form groups */
.feedback-form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.feedback-form-group label {
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #FF8E00;
	font-weight: 500;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}

.feedback-form-group input,
.feedback-form-group textarea,
.feedback-form-group select {
  padding: 0.5rem;
 
  border-radius: 15px;
  font-size: 0.7rem;
  box-sizing: border-box;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
border: solid #D7D6BA 1px;

}

/* Submit button â€” reusing existing styling */
.feedback-submit-btn {
   background-color: #FF8E00;
      color: #ffffff;
      border: none;
      padding: 0.8rem 1.5rem ;
      border-radius: 15px;
      cursor: pointer;
      display: inline-block;
		
		font-size: 0.65rem;
		font-weight: 600;
		font-family: "Zalando Sans SemiExpanded", sans-serif;
}
.feedback-submit-btn:hover {
  background-color: #F4A300; color:#ffffff;
}

/* Placeholder styles */
.feedback-form input::placeholder,
.feedback-form textarea::placeholder,
.feedback-form select::placeholder {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  color: #979797;
  opacity: 1;
}

/* Webkit */
.feedback-form input::-webkit-input-placeholder,
.feedback-form textarea::-webkit-input-placeholder,
.feedback-form select::-webkit-input-placeholder {
  color: #979797;
}

/* Firefox */
.feedback-form input::-moz-placeholder,
.feedback-form textarea::-moz-placeholder,
.feedback-form select::-moz-placeholder {
  color: #979797;
  opacity: 1;
}
.feedback-form input:-moz-placeholder,
.feedback-form textarea:-moz-placeholder,
.feedback-form select:-moz-placeholder {
  color: #505050;
  opacity: 1;
}

/* IE */
.feedback-form input:-ms-input-placeholder,
.feedback-form textarea:-ms-input-placeholder,
.feedback-form select:-ms-input-placeholder {
  color: #505050;
}

/* âœ… Optional: mobile spacing for small screens */
@media screen and (max-width: 750px) {
  .feedback-form { width: 80%; }
}


/* âœ… Gallery container */
.cba-gallery {
  padding: 1rem 0rem;
}

/* âœ… Grid layout */
.cba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 columns desktop */
  gap: 1rem;
}

/* âœ… Images scale while keeping aspect ratio */
.cba-grid img {
  width: 100%;
  height: auto; /* Preserves original resolution ratio */
  border-radius: 10px;
  display: block;
  object-fit: cover; /* Keeps visuals clean */
}

/* âœ… Responsive: Single column on mobile */
@media screen and (max-width: 750px) {
  .cba-grid {
    grid-template-columns: 1fr; /* 1 column */
  }
}


/* âœ… Gallery container */
.cba-gallery-1 {
  padding: 1rem 0rem;
}

/* âœ… Grid layout */
.cba-grid-1 {
  display: grid;
  grid-template-columns: 1fr; /* 3 columns desktop */
  gap: 1rem;
}

/* âœ… Images scale while keeping aspect ratio */
.cba-grid-1 img {
  width: 100%;
  height: auto; /* Preserves original resolution ratio */
  border-radius: 10px;
  display: block;
  object-fit: cover; /* Keeps visuals clean */
}

/* âœ… Responsive: Single column on mobile */
@media screen and (max-width: 750px) {
  .cba-grid-1 {
    grid-template-columns: 1fr; /* 1 column */
  }
}


/* FAQ Section */
.cba-faq-section {
  padding: 3rem 1.6rem 3rem 1.6rem;
  background-color: #FFFFFF;
}

.cba-faq-inner {
  max-width: 2400px;
  margin: 0 auto;
}

/* Pill â€“ matched to .news-pill */
.cba-faq-pill {
  background-color: transparent;
  color: #005151;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  width: fit-content;
  border: 2px solid #005151;
  font-size: 0.65rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Heading â€“ matched to .news-section-heading-2 */
.cba-faq-heading {
  margin: 1rem 0 0.5rem 0;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #005151;
}

/* Intro â€“ similar to .news-paragraph but wider text */
.cba-faq-intro {
  font-size: 0.7rem;
  color: #005151;
  margin-top: 0.3rem;
  
  font-weight: 500;
 
  line-height: 1.2;
}

/* Columns layout */
.cba-faq-columns {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.cba-faq-column {
  width: 50%;
}

/* FAQ item â€“ NO BOX, JUST DIVIDER */
.cba-faq-item {
  border-bottom: solid #D7D6BA 1px;
  padding: 0.8rem 0;
}

/* Question button */
.cba-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.cba-faq-question span:first-child {
  font-size: 0.8rem;
  font-weight: 600; /* like .news-section-heading-3 */
  color: #005151;
  line-height: 1.2;
}

.cba-faq-icon {
  font-size: 1.2rem;
  margin-left: 1rem;
	font-weight: 600;
  transition: 0.25s ease;
  color: #FF8E00;
}

/* Open state */
.cba-faq-item.is-open .cba-faq-icon {
  transform: rotate(45deg);
}

/* Answer text */
.cba-faq-answer {
  padding-top: 0.6rem;
}

.cba-faq-answer p {
  margin: 0;
  font-size: 0.75rem; /* match .news-paragraph size */
  color: #005151;
  line-height: 1.45;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 900px) {
  .cba-faq-columns {
    flex-direction: column;
    gap: 0rem;
  }

  .cba-faq-column {
    width: 100%;
  }
}


.download-btn {
  background-color: #FF8E00;
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 15px;
  text-decoration: none;     /* Removes underline */
  font-weight: 600;
  display: inline-block;
	font-size: 0.7rem;
}
.download-btn:hover {
  background-color: #F4A300;
  text-decoration: none;     /* Stays clean */
}



.brand-color-table {
  width: 100%;
  border-collapse: collapse;
  color: #005151;
  font-size: 0.8rem;
  font-weight: 600;
}

.brand-color-table th,
.brand-color-table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}

.brand-color-table thead {
  background: #FFFFFF;
}

.brand-color-table .swatch {
  width: 100%;
  height: 28px;
  border-radius: 4px;
}

/* --------- MOBILE STACKED VIEW --------- */
@media (max-width: 640px) {

  .brand-color-table thead {
    display: none;
  }

  .brand-color-table tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
  }

  .brand-color-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .brand-color-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #005151;
    margin-right: 12px;
    white-space: nowrap;
  }

  .brand-color-table td:last-child {
    border-bottom: none;
  }
}


@media (max-width: 640px) {
  /* Hide label text for swatch only */
  .brand-color-table td[data-label="Swatch"]::before {
    display: none;
  }
}

@media (min-width: 640px) {
/* --------- DESKTOP FIX --------- */
.brand-color-table {
  table-layout: fixed;
}

.brand-color-table .swatch-col {
  width: 200px;          /* adjust: 56pxâ€“80px sweet spot */
}

/* Ensure swatch cell doesnâ€™t stretch */
.brand-color-table td[data-label="Swatch"] {
  width: 200px;
  padding: 0px;
}
}

@media (max-width: 1378px) {
  .hide-on-mobile {
    display: none !important;
  }
}



/* SECTION */
.cba-packages-section {
  background: #FFFFFF;
  padding: 3rem 1.5rem;
}

/* GRID */
.cba-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

/* CARD */
.cba-package-card {
  border: 1px solid #D7D6BA;
  background: #FFFFFF;
  padding: 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}

/* CONTENT & FOOTER */
.cba-package-content {
  flex-grow: 1;
}

.cba-package-footer {
  margin-top: auto;
}

/* TITLE */
.cba-package-title {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FF8E00;
  margin: -0.2rem 0 0.4rem 0;
}

/* TAGLINE */
.cba-package-tagline {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #005151;
  margin: 0 0 1rem;
}

/* PRICE */
.cba-package-price {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #005151;
  margin: 0 0 0.4rem;
}

.cba-package-price span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
	font-style: italic;
	margin-top: 0.3rem;
}

/* BEST FOR */
.cba-package-bestfor {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  color: #005151;
  margin-bottom: 1.2rem;
	text-transform: uppercase;
}

/* LIST */
.cba-package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}

.cba-package-list li {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #005151;
  margin-bottom: 0.35rem;
  padding-left: 0.9rem;
  position: relative;
}

.cba-package-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  color: #FF8E00;
	
}

/* OUTCOME */
.cba-package-outcome {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #005151;
  margin-bottom: 1.4rem;
}

/* BUTTON */
.cba-package-btn {
  background-color: #FF8E00;
  color: #FFFFFF;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 15px;
  cursor: pointer;
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.cba-package-btn:hover {
  background-color: #F4A300;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cba-packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 750px) {
  .cba-package-card {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 1rem;
    padding: 1rem 0.8rem;
  }
}

@media (max-width: 560px) {
  .cba-packages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

/* ===== SECTION ===== */
.logo-section {
  padding: 1rem 1.6rem 2.7rem 1.6rem;
	border-top: solid #D7D6BA 1px;
}

/* Disable marquee behaviour */
.marquee {
  overflow: hidden;           /* safe to keep */
}

/* Stop movement and center content */
.marquee-track {
  display: flex;
  justify-content: center;    /* horizontal centering */
  align-items: center;
  transform: none !important;
  animation: none !important;
	margin-bottom: 1rem;
	margin-top: 1rem;
}

/* Center text itself */
.marquee-text {
  display: inline-block;
  text-align: center;
  white-space: nowrap;  
	font-size: 0.7rem;
	color: #005151; font-weight: 700;
}


.marquee-star {
  color: #FF8E00; /* or your accent colour */
	padding: 0 1rem;
}

.marquee-track::before,
.marquee-track::after {
  content: "";
  flex: 1;                     /* stretch lines */
  height: 1px;
  background-color: #D7D6BA;   /* line color */
  opacity: 1;
  max-width: 210px;            /* prevents over-stretching */
}

/* ===== LOGO GRID ===== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.logo-item {
  border: 1px solid #D7D6BA;
  border-radius: 16px;
  overflow:hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  display: block;
	max-width: 100%;
  max-height: 60px;
  object-fit: contain;
	
}

@media (min-width: 850px) {
  .logo-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 750px) {
  .logo-grid {
  
  gap: 0.5rem;
}
	
	.logo-item {
  
  border-radius: 10px;
  
}
	.logo-section {
  padding: 1rem 1.6rem 2rem 1.6rem;
}
}



/* =========================
   Full-width video section
========================= */
.brand-video-section {
  width: 100%;
  padding: 0 1.6rem 3rem 1.6rem;
  box-sizing: border-box;
	 
}

/* =========================
   Video wrapper
========================= */
.brand-video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

/* =========================
   Video behaves like background
========================= */
.brand-video {
  position: absolute;      
  inset: 0;               
  width: 100%;
  height: 100%;            
  display: block;
  object-fit: cover;
  object-position: bottom; 
  z-index: 0;
	background-color: #007575;
}


/* =========================
   Dark overlay (0.3 opacity)
========================= */
.brand-video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* =========================
   Logo overlay
========================= */
.brand-video-logo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
	padding: 0 7rem;
}

.brand-video-logo img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

@media (max-width: 750px) {
	
	.brand-video-logo img {
  max-width: 450px;
  width: 100%;
  height: auto;
		
}
	
	.brand-video-logo {
  padding: 0 3rem;
	
}
	
	.brand-video-wrapper {
  
  height: 300px;
  
}
}


.brand-image {
  position: absolute;      
  inset: 0;               
  width: 100%;
  height: 100%;            
  display: block;
  object-fit: cover;
  
  z-index: 0;
}



/* WORK USPS GRID STYLES — corrected to match HTML class names */
.work-usps-grid-container {
  display: grid;
  gap: 20px;
  padding: 1.5rem 1.6rem 1.5rem 1.6rem;
  background-color: #FFFFFF;
  grid-template-columns: repeat(4, 1fr);
}

.work-usps-tile {
  border-radius: 15px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border: solid #D7D6BA 1px;
}

/* Icon wrapper for inline SVG */
.work-usp-pointer-icon {
  width: 36px;
  height: 36px;
  display: flex;
  
  justify-content: left;
}



/* Headline */
.work-usps-headline {
  margin: 5px 0 10px 0;
  color: #005151;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Paragraph */
.work-usps-paragraph {
  margin: 0 0 15px 0;
  color: #005151;
  font-size: 0.7rem;
  flex-grow: 1;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

/* Responsive: Grid Layout */
@media (max-width: 750px) {
  .work-usps-grid-container {
    gap: 11px;
    grid-template-columns: repeat(2, 1fr);
  }

  .work-usps-headline {
    font-size: 0.9rem;
  }
}

