
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: sans-serif;
      }
 
      .carousel {
        position: relative;
        width: 100%;
        height: 750px; 
        overflow: hidden;
      }

      .carousel-track {
        display: flex;
        transition: transform 1.5s ease;
        width: 100%;
      }


      .slide {
        position: relative;
        min-width: 100%;
        height: 650px;
        overflow: hidden;
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        pointer-events: none; 
      }
  
      .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
      }

      /* Centered text */
		.slide .text {
			position: absolute;
			top: 50%;
			right: 11%;
			transform: translateY( -50%);	
			width: 37%;
			text-align: right;
			
		}
		.slide .text h2{
		  font-size: 3.7rem;
		  line-height: 1;
		  margin-bottom: 0;
		  font-family: "SourceSansPro", sans-serif;
		  font-weight: 700;
		  color: #8E001C;		 
          background-color: rgba(255, 255, 255, 0.9);
		  display: inline-block;
		  padding: 2rem;
		  border-radius: 8px;
			
		}
		.slide .text p {
		font-size: 1.5rem;
		line-height: 1;
		font-family: "SourceSansPro", sans-serif;
		font-weight: 900;
		color: #000000;
		
		  background-color: rgba(0, 0, 0, 0.3);
		  display: inline-block;
		  padding: 1rem 0.7rem;
		  border-radius: 8px;
		}

	   .slide .text span {
		font-size: 1.8rem;
		line-height: 1;
		font-family: "SourceSansPro", sans-serif;
		font-weight: 600;
		color: #000000;
		  
		display: inline-block;
		padding: 1rem 0;
		border-radius: 8px;
		}

      /* Dots */
      .dots {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
      }

      .dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 5px;
        background: #bbb;
        border-radius: 50%;
        cursor: pointer;
      }

      .dot.active {
        background: #333;
      }

      /* Buttons */
      .btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 10;
        font-size: 18px;
        border-radius: 50%;
      }

      .btn:hover {
        background: rgba(0, 0, 0, 0.8);
      }

      .btn-prev {
        left: 10px;
      }
      .btn-next {
        right: 10px;
      }

  @media (max-width: 768px) {
        .carousel {
          height: 400px;
        }
        .slide {
          height: 400px;
        }
        .slide .text {
          top: 50%;
          left: 50%;
          width: 80%;
        }
        .slide .text h2 {
          font-size: 2.8rem;
        }
        .slide .text p {
          font-size: 1.2rem;
          line-height: 1.2;
        }
	  
      }
