* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero-image img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

p a {
	color:#fff;
	font-weight:bold;
	text-decoration:none;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background-color: #041220;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #111;
  font-size: 1rem;
}

.btn-primary, .btn-secondary {
  padding: 15px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
}

.btn-primary,
.btn-secondary {
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.9;
}

@media(max-width:1024px){
  .btn-primary,.btn-secondary {
    display: block;
    text-align: center;
}  
}

.btn-primary {
      background: #111;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
}

.btn-secondary {
  background: #e0004d;
  color: #111;
  font-weight: 500;
  border-radius: 0;
    text-decoration: none;
    color:#fff;
}

.btn-primary:after, .btn-secondary:after {
    content: url("data:image/svg+xml;charset=utf-8,%3Csvg width='21' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.707 8.448a1 1 0 0 0 0-1.415L14.343.67a1 1 0 1 0-1.414 1.415l5.657 5.656-5.657 5.657a1 1 0 0 0 1.414 1.415l6.364-6.364ZM0 8.74h20v-2H0v2Z' fill='%23fff'/%3E%3C/svg%3E");
    padding:0 0 0 10px;
}

.hero {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero p {
  color: #555;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.hero-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companies {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  flex-wrap: wrap;
  gap: 20px;
  filter: grayscale(100%);
  opacity: 0.5;
}

h4 {
    font-size:1.5rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 60px 0 30px;
}

.section-header h2 {
  background: #e0004d;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 1.6rem;
}

.section-header p {
  color: #555;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 60px;
}

.service-card {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 200px;
}

.service-card.green {
  background: #e0004d;
}

.service-card.dark {
  background: #111;
  color: #fff;
}

.service-card.white {
  background: #FAFAFA;
}

.service-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.case-studies h2{
        margin-bottom: 15px;
}

.service-link,
.case-study a,
.process-description {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: inherit;
  text-decoration: none;
  font-size: 1rem;
}

.service-link::before {
  content: '→';
  font-size: 1.3rem;
}

.service-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
}

.cta-section {
  background: #e5e5e5;
  border-radius: 0;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin: 60px 0;
}

.cta-section h2 {
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 15px;
}



.case-studies {
  background: #111;
  color: #fff;
  border-radius: 0;
  padding: 50px;
  margin: 60px 0;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.case-study {
  border-top: 1px solid #333;
  padding-top: 15px;
}

.process-section {
  margin: 70px 0;
}

.process-item {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 25px 30px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.process-item:hover {
  background: #f8f8f8;
}

.process-item.active {
  background: #e0004d;
}

.process-number {
  font-size: 1.8rem;
  font-weight: 600;
  margin-right: 15px;
}

.process-title {
  font-size: 1.2rem;
  flex-grow: 1;
}

.process-item.active span.icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.process-description {
  display: none;
  margin-top: 8px;
  color: #333;
}

.process-item.active .process-description {
  display: block;
}

.team-section {
  margin: 70px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.team-card {
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 25px;
}

.team-avatar {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.testimonials {
  background: #111;
  color: #fff;
  border-radius: 0;
  padding: 50px;
  margin: 70px 0;
}

.testimonial-slider {
  display: flex;
  gap: 25px;
  margin-top: 30px;
  overflow-x: auto;
}

.testimonial {
  min-width: 280px;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
}

.contact-section {
  margin: 70px 0;
}

.contact-form {
  background: #FAFAFA;
  border-radius: 0;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
}

footer {
  background: #111;
  color: #fff;
  padding: 40px 0 20px;
  border-radius: 0 16px 0 0;
}

footer p{
    font-size:1.2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 12px;
}

@media (max-width: 1024px) {


.case-studies, .cta-section{
    padding:20px;
}

.cta-section img{
    width: 100%;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero-slide .container > div{
    grid-template-columns: 1fr !important;
}

  .hero,
  .services-grid,
  .cta-section,
  .case-studies-grid,
  .team-grid,
  .contact-form,
  .footer-content {
    grid-template-columns: 1fr !important;
  }

  nav ul {
    display: none;
  }
}

.hero-slider {
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
}

.flickity-slider {
  display: flex;
}

.flickity-viewport {
  overflow: hidden !important;
}

#wcb_p{
	text-align: left;
    margin-top: 20px;
}

#wcb_p *{
	border:0 !important;
	border-radius:0 !important;
	font-family: 'Poppins', sans-serif !important;
}

#wcb_a{
	background: #e0004d !important;
}

#wcb_g{
	color:#000;	
}
