*{
    margin: 0;padding: 0;
    box-sizing: border-box;
}
.rights-info{
    display: flex;flex-direction: column;
    align-items: center;
    gap: 38px;
    width: 100%;
    padding: 48px 0 64px 0;
    background: #181c24;
}
.own-rights h2{
      font-family: Roboto, serif;
  font-size: 3.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  position: relative;
}

.own-rights h2 span {
  background: linear-gradient(90deg, #FFD000, #1db954, #2310ce, #e96c05, #FFD000);
  background-size: 300% 100%;
  font-size: 3.4rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 3s linear infinite;
}

@keyframes gradient-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.own-rights-description {
  margin: 0 auto 18px auto;
  max-width: 80vw;
  text-align: center;
  font-family: Roboto, serif;
  font-size: 1.25rem;
  color: #FFD000;
  letter-spacing: 1px;
  line-height: 1.6;
  /* background: rgba(35, 37, 38, 0.10); */
  border-radius: 14px;
  padding: 1px 28px;
  /* box-shadow: 0 2px 16px rgba(30,185,84,0.08); */
}
.own-rights-platform {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 32px;
  margin: 32px 0 0 0;
  width: 100%;

}

.own-rights-platform i {
  font-size: 2.2rem;
  color: #1d34b9;
  background: linear-gradient(120deg, #FFD000 0%, #1db954 100%);
  border-radius: 50%;
  padding: 14px;
  margin: 0 8px;
  box-shadow: 0 2px 12px #FFD00044, 0 1px 4px #1db95433;
  transition: transform 0.2s, box-shadow 0.2s;
}

.own-rights-platform i:hover {
  transform: scale(1.18) rotate(-8deg);
  box-shadow: 0 4px 24px #1db95488, 0 2px 8px #FFD00066;
}
.own-rights-platform .platform,
.own-rights-platform .radio,
.own-rights-platform .social-media,
.own-rights-platform .print {
  /* background: rgba(35, 37, 38, 0.10); */
  flex: 1 1 0;
  border: 2px solid transparent;
  border-radius: 18px;
  height: 320px;
  padding: 28px 18px 18px 18px;
  min-width: 240px;
  max-width: 280px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.4s, transform 0.3s, border 0.2s;
  margin: 0 10px;
}

.own-rights-platform h1 {
  font-family:  Roboto, serif;
  font-size: 1.18rem;
  color: #FFD000;
  text-align: center;
  margin: 12px 0 10px 0;
  text-shadow: 1px 2px 8px #1db95499, 0 1px 2px #2310ce66;
  letter-spacing: 1px;
  font-weight: 600;
}

.own-rights-platform p {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin: 0;
  text-shadow: 0 1px 6px #1db95455;
  line-height: 1.5;
  letter-spacing: 0.5px;
}

.own-rights-platform .platform:hover,
.own-rights-platform .radio:hover,
.own-rights-platform .social-media:hover,
.own-rights-platform .print:hover {
  box-shadow: 0 4px 24px #FFD00055, 0 2px 8px #1db95466;
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 1024px){
  .own-rights-platform {
    flex-direction: column;
    align-items: center; /* Center the cards when they stack */
    gap: 40px; /* Increase gap for vertical stacking */
}

.own-rights-platform .platform,
.own-rights-platform .radio,
.own-rights-platform .social-media,
.own-rights-platform .print {
    max-width: 400px; /* Allow cards to be a bit wider */
    width: 80%;
}

}
@media (max-width: 768px){
  .own-rights h2 {
    font-size: 2.5rem; /* Reduce heading font size */
}
.own-rights h2 span {
    font-size: 2.7rem; /* Adjust span font size accordingly */
}

.own-rights-description {
    font-size: 1.1rem; /* Reduce description font size */
    max-width: 90vw;
}
.own-rights-platform{
    align-items: center;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 30px;
    width: 90%;
    
}
.own-rights-platform > div {
    max-width: none;
    padding: 30px;
}


.own-rights-platform .platform,
.own-rights-platform .radio,
.own-rights-platform .social-media,
.own-rights-platform .print {
    
    height: auto; /* Allow height to adjust to content */
    min-height: 280px;
     font-size: 3rem;
}
.own-rights-platform .platform:hover,
.own-rights-platform .radio:hover,
.own-rights-platform .social-media:hover,
.own-rights-platform .print:hover {
  box-shadow: 0 4px 24px #FFD00055, 0 2px 8px #1db95466;
  transform: translateY(-6px) scale(1.03);
}
.miss, .splits{
    flex-direction: column;
}

}


.miss {
    background-image: url(/Source/main-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    gap: 50px; /* Space between content and image */
    background-color: #f8f9fa;
    /* margin: 80px 0; */
    overflow: hidden;
}

.miss-content {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.miss-head {
    font-size: 2.8rem;
    font-family: Roboto, serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.miss-head span {
     background: linear-gradient(90deg, #FFD000, #1db954, #2310ce, #e96c05, #FFD000);
  background-size: 300% 100%;
  font-size: 3.4rem;
  font-family: Roboto, serif;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 3s linear infinite;
}

.miss-description {
    font-size: 1.5rem;
    font-family: Roboto, serif;
    color: #bbb4b4;
    line-height: 1.7;
    margin-bottom: 35px;
}

.miss-content button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #FFD000, #1db954);
    border: none;
    border-radius: 50px; /* Pill-shaped button */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(129, 103, 229, 0.3);
}

.miss-content button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px #FFD000 /* Enhanced glow effect */
}

.miss-image {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.miss-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}


@media (max-width: 992px) {
  .splits {
        flex-direction: column-reverse; /* Puts the image on top on mobile */
        padding: 60px 30px;
        gap: 40px;
    }

    .splits-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .splits-image {
        max-width: 80%;
        margin-bottom: 0;
    }

    .miss {
        flex-direction: column;
        padding: 60px 30px;
    }

    .miss-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .miss-image {
        max-width: 70%;
        margin-top: 40px;
    }
    .splits-content button{
        align-self: center;
    }
}
@media (max-width: 480px) {
    .own-rights h2 {
        font-size: 2rem;
    }
    .own-rights h2 span {
        font-size: 2.2rem;
    }
    .own-rights-platform{
        padding: 30px;
    }
    .own-rights-description {
        font-size: 1rem;
       
    }
    .miss-head, .splits-heading {
        font-size: 1.8rem; /* Even smaller for very small screens */
    }
}


.splits {
     background-image: url(/Source/main-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    gap: 50px; /* Space between content and image */
    background-color: #f8f9fa;
    /* margin: 80px 0; */
    overflow: hidden;
}

.splits-content {
      flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.splits-heading {
    font-size: 3.8rem;
    font-weight: 700;
    color: #b4bfca;
    margin-bottom: 20px;
    line-height: 1.3;
}

.splits-heading span {
     background: linear-gradient(90deg, #FFD000, #1db954, #2310ce, #e96c05, #FFD000);
  background-size: 300% 100%;
  font-size: 3.4rem;
  font-family: Roboto, serif;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-move 3s linear infinite;
    display: block;
}

.splits-content p {
    font-size: 1.6rem;
    color: #c4b2b2;
    line-height: 1.7;
    margin-bottom: 40px;
}

.splits-content button {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #8167E5, #626AFA);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.splits-content button:hover {
    transform: translateY(-5px);
    /* Glossy box shadow effect */
    box-shadow: 0 12px 28px rgba(129, 103, 229, 0.4);
}

.splits-image {
    flex: 1;
    max-width: 45%;
}

.splits-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}


   
    