:root {
      --accent-color: #ee5454;
      --accent-hover: #ff7676;
      --dark-bg: #000;
      --light-text: #fff;
      --muted-text: #ccc;
      --navbar-bg: #111;
    }

    body {
      background-color: var(--dark-bg);
      color: var(--light-text);
      font-family: 'Poppins', sans-serif;
    }
	
	/*Buttons*/
	button{
		background:var(--accent-color);
		color:white !important;
	}
	
	.text-accent{
		color:var(--accent-color);
	}
	
	.bg-accent{
		background:var(--accent-color);
	}

    /* Navbar */
    .navbar {
      background-color: var(--navbar-bg);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      padding: 1rem 3rem;
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.3rem;
      color: var(--light-text) !important;
    }

    .navbar-brand span {
      color: var(--accent-color);
    }

    .navbar-nav .nav-link {
      color: var(--light-text) !important;
      margin-right: 1rem;
      font-weight: 500;
    }

    .btn-quote {
      background-color: var(--accent-color);
      color: var(--light-text);
      border-radius: 30px;
      font-weight: 600;
      padding: 0.5rem 1.5rem;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-quote:hover {
      background-color: var(--accent-hover);
      color: var(--light-text);
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .hero h1 span {
      color: var(--accent-color);
    }

    .hero p {
      color: var(--muted-text);
      margin-top: 1rem;
      max-width: 700px;
      font-size: 1.1rem;
    }

    .hero .btn-quote {
      margin-top: 2rem;
      padding: 0.8rem 2rem;
      font-size: 1rem;
    }

    /* Showcase Section */
    .showcase {
      background-color: var(--dark-bg);
      padding: 100px 0;
    }

    .showcase img {
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
      width: 100%;
      max-width: 250px;
      transition: transform 0.3s ease;
    }

    .showcase img:hover {
      transform: translateY(-5px);
    }
	
	/* Trusted Brand Section */
    .trusted {
      background-color: #111;
      color: var(--light-text);
      padding: 40px 0 20px;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .trusted h6 {
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      color: var(--muted-text);
    }

    .brand-track {
      display: flex;
      animation: scrollBrands 16s linear infinite;
      align-items: center;
    }

    .brand-track img {
      height: 45px;
      margin: 0 60px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
      transition: transform 0.3s ease;
    }

    .brand-track img:hover {
      opacity: 1;
      transform: scale(1.05);
    }

    @keyframes scrollBrands {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Challenges Section */
    .challenges {
      background-color: #fff;
      color: #000;
      text-align: center;
      padding: 100px 20px;
    }

    .challenges h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .challenges p {
      color: #555;
      max-width: 850px;
      margin: 0 auto;
      font-size: 1.1rem;
      line-height: 1.8;
    }
	
  /* Why Choose Us Section */
  .why-choose-us {
    background-color: #fff;
    color: #000;
  }

  .feature-box {
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100%;
  }

  .feature-box:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
  }

  .feature-box i {
    color: var(--accent-color);
  }

  .highlight {
    background-color: var(--accent-color); /* --accent-color highlight */
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .why-choose-us h2 {
    font-size: 2.5rem;
  }

  .why-choose-us p {
    line-height: 1.6;
  }
  
  /*Contact form with footer*/
  
  .collaborate-lsides{
	border-radius:0 0 40px 0;
  }
  .collaborate-rsides{
	border-radius:0 0 0 40px;
  }
  .collaborate-client-image{
    margin-top: -6rem;
}
  
  .collaborate-card {
    background-color: #000;
    border-radius: 40px 40px 0 0; /* top rounded only */
    margin-bottom: -1px; /* visually merges with footer */
  }

  .footer-section {
    background-color: #000;
    border-top: none;
    border-radius: 0 0 40px 40px; /* bottom rounded only */
    margin-top: -1px; /* seamless merge */
  }

  .dark-input {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
  }

  .dark-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .dark-input:focus {
    border-color: #fcd64a !important;
    box-shadow: 0 0 0 0.1rem rgba(252, 214, 74, 0.3) !important;
    outline: none !important;
  }

  .form-select.dark-input option {
    background-color: #111 !important;
    color: #fff !important;
  }

  @media (max-width: 768px) {
    .collaborate-card {
      border-radius: 30px 30px 0 0;
    }
    .footer-section {
      border-radius: 0 0 30px 30px;
    }
    .collaborate-client-image{
            margin-top: 20px;
    }
  }


    /* WhatsApp Floating Button */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      width: min-content;
    }

    .whatsapp-float img {
      width: 60px;
      height: 60px;
    }

    .custom-row{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
    }
	
	@media (max-width: 575px) {
		.showcase{
			display:none;
		}
        .collaborate-image{
            display: none;
        }
        .collaborate-client-image{
            margin-top: 20px;
        }
	
	}