

.custom-banner {
     min-height: 500px;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Responsive for laptops */
@media (max-width: 1024px) {
  .custom-banner {
    height: 60vh;
  }
}

/* Responsive for tablets and mobiles */
@media (max-width: 768px) {
  .custom-banner {
    height: 50vh;
  }
}





.firstsecbrand_container {
  width: 100%;
  background-color:white;
  padding: 90px 20px 20px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #31496B;
}

.firstsecbrand_heading_wrapper {
  max-width: 1070px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}
.firstsecbrand_heading_wrapper {
  max-width: 1070px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;

  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s ease, transform 1s ease;
}

.firstsecbrand_heading_wrapper.in-view {
  opacity: 1;
  transform: translateY(0px);
}

.firstsecbrand_superheading {
  font-family: 'Gothic A1', sans-serif !important;
  font-weight: 300;
  font-size: 45px;
  margin: 0 0 15px 0;
  color: black;
  text-transform: uppercase !important;
  text-transform: none;
}

.firstsecbrand_superparagraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 18px;
  line-height: 1.6;
  max-width: 965px;
  margin: 0 auto;
  color: #5a5a5a;
}
.firstsecbrand_subheading{
    font-size: 21px !important;
    text-transform: capitalize !important;
        margin: 17px 0 12px 0;
        color: #000;
}

.firstsecbrand_inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.firstsecbrand_left {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: start;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.firstsecbrand_right {
  flex: 1 1 56%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.firstsecbrand_heading {
  font-family: 'Gothic A1', sans-serif !important;
  font-weight: 300;
  font-size: 40px;
  margin: 0 0 24px 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.firstsecbrand_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.7;
  color: #5a5a5a;
  margin-bottom: 50px;
}

.firstsecbrand_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
   transition: color 0.3s ease, border-color 0.3s ease;
   background-color: #0f0e9f;
   padding: 15.79px 19.5px;
   border-radius: 4px;
}

.firstsecbrand_link:hover {
 
  transform: translateY(-2px) ;
    transition: transform 0.3s ease;
}

/* Animate in view - only horizontal translate */
.firstsecbrand_container.in-view .firstsecbrand_inner {
  opacity: 1;
  /* no translateY here */
  transform: none;
}

.firstsecbrand_container.in-view .firstsecbrand_left {
  opacity: 1;
  transform: translateX(0);
}

.firstsecbrand_container.in-view .firstsecbrand_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .firstsecbrand_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .firstsecbrand_left,
  .firstsecbrand_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .firstsecbrand_heading {
    font-size: 28px;
    text-transform: none;
  }

  .firstsecbrand_superheading {
    font-size: 28px;
  }

  .firstsecbrand_superparagraph {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .firstsecbrand_heading {
    font-size: 24px;
  }

  .firstsecbrand_superheading {
    font-size: 24px;
  }

  .firstsecbrand_superparagraph,
  .firstsecbrand_paragraph {
    font-size: 14px;
  }
}









.captain_container {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px 0px 20px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #31496B;
}

.captain_inner {
  max-width: 1070px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 84px;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: translateY(50px);
}

.captain_left {
  flex: 1 1 61%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.captain_right {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.captain_heading {
  font-family: 'Gothic A1', sans-serif !important;
  font-weight: 300;
  font-size: 45px;
  margin: 0 0 0 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.captain_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 57px;
}

.captain_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
   transition: color 0.3s ease, border-color 0.3s ease;
   background-color: #0f0e9f;
   padding: 15.79px 19.5px;
   border-radius: 4px;
}
 

/* Animate in view */
.captain_container.in-view .captain_inner {
  opacity: 1;
  transform: translateY(0);
}

.captain_container.in-view .captain_left {
  opacity: 1;
  transform: translateX(0);
}

.captain_container.in-view .captain_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .captain_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .captain_left,
  .captain_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .captain_heading {
    font-size: 28px;
    text-transform: none;
  }
}

@media (max-width: 480px) {
  .captain_heading {
    font-size: 24px;
  }

  .captain_paragraph {
    font-size: 14px;
  }
}






.blackcat_container {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px 0px 20px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #31496B;
}

.blackcat_inner {
  max-width: 1070px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 70px;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: translateY(50px);
}

.blackcat_left {
  flex: 1 1 45%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.blackcat_right {
  flex: 1 1 18%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.blackcat_heading {
  font-family: 'Gothic A1', sans-serif !important;
  font-weight: 300;
  font-size: 45px;
  margin: 0 0 16px 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.blackcat_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 60px;
}

.blackcat_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
   transition: color 0.3s ease, border-color 0.3s ease;
   background-color: #0f0e9f;
   padding: 15.79px 19.5px;
   border-radius: 4px;
}
 

.blackcat_link ,.captain_link{
  transition: transform 0.3s ease; /* Put transition here */
}

.blackcat_link ,.captain_link:hover {
  /* color: #514BB0;
  border-color: #514BB0; */
  transform: translateY(-3px);
}






/* Animate in view */
.blackcat_container.in-view .blackcat_inner {
  opacity: 1;
  transform: translateY(0);
}

.blackcat_container.in-view .blackcat_left {
  opacity: 1;
  transform: translateX(0);
}

.blackcat_container.in-view .blackcat_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .blackcat_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .blackcat_left,
  .blackcat_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .blackcat_heading {
    font-size: 28px;
    text-transform: none;
  }
}

@media (max-width: 480px) {
  .blackcat_heading {
    font-size: 24px;
  }

  .blackcat_paragraph {
    font-size: 14px;
  }
}














.commander_container {
  width: 100%;
  background-color: #f5f5f5;
  padding: 20px 0px 20px 0px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #31496B;
}

.commander_inner {
  max-width: 1070px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: translateY(50px);
}

.commander_left {
  flex: 1 1 86%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.commander_right {
  flex: 1 1 37%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.commander_heading {
  font-family: 'Gothic A1', sans-serif !important;
  font-weight: 300;
  font-size: 45px;
  margin: 0 0 25px 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.commander_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 50px;
}

.commander_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
   transition: color 0.3s ease, border-color 0.3s ease;
   background-color: #0f0e9f;
   padding: 15.79px 19.5px;
   border-radius: 4px;
}

.commander_link {
  transition: transform 0.3s ease; /* Put transition here */
}

.commander_link:hover {
  /* color: #514BB0;
  border-color: #514BB0; */
  transform: translateY(-3px);
}


/* Animate in view */
.commander_container.in-view .commander_inner {
  opacity: 1;
  transform: translateY(0);
}

.commander_container.in-view .commander_left {
  opacity: 1;
  transform: translateX(0);
}

.commander_container.in-view .commander_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .commander_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .commander_left,
  .commander_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .commander_heading {
    font-size: 28px;
    text-transform: none;
  }
}

@media (max-width: 480px) {
  .commander_heading {
    font-size: 24px;
  }

  .commander_paragraph {
    font-size: 14px;
  }
}






section.diamond_container.in-view{
    display: flex;
    justify-content: center;
    padding: 20px 0;
}



.diamond_inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.diamond_left {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: start;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.diamond_right {
  flex:1 1 67%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.diamond_heading {
  font-family: 'Gothic A1', sans-serif  !important;
  font-weight: 300;
  font-size: 45px;
  margin: 0 0 32px 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.diamond_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 55px;
      padding-top: 13px;
}

.diamond_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  background-color: #0f0e9f;
  padding: 15.79px 19.5px;
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.diamond_link:hover {
  transform: translateY(-2px);
}

/* Animate in view - only horizontal translate */
.diamond_container.in-view .diamond_inner {
  opacity: 1;
  transform: none;
}

.diamond_container.in-view .diamond_left {
  opacity: 1;
  transform: translateX(0);
}

.diamond_container.in-view .diamond_right {
  opacity: 1;
  transform: translateX(0);
}
.diamond_subheading{
    font-size: 21px !important;
    text-transform: capitalize !important;
         color: #000;
}

/* Responsive */
@media (max-width: 1024px) {
  .diamond_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .diamond_left,
  .diamond_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .diamond_heading {
    font-size: 28px;
    text-transform: none;
  }
}

@media (max-width: 480px) {
  .diamond_heading {
    font-size: 24px;
  }

  .diamond_paragraph {
    font-size: 14px;
  }
}




.marshal_inner {
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;

  /* Initial animation state */
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.marshal_left {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: start;

  /* Animation initial state - from left */
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 1.2s ease, transform 1.5s ease;
}
.marshal_subheading{
    font-size: 21px !important;
    text-transform: capitalize !important;
         color: #000;
}

.marshal_right {
  flex: 1 1 62%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;

  /* Animation initial state - from right */
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.marshal_heading {
  font-family: 'Gothic A1', sans-serif  !important;
  font-weight: 300;
  font-size: 40px;
  margin: 0 0 32px 0;
  color: black;
  line-height: 1.2;
  text-transform: uppercase;
}

.marshal_paragraph {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.6;
  color: #5a5a5a;
  margin-bottom: 50px;
  margin-top: 27px;
}

.marshal_link {
  font-family: 'Gothic A1', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  background-color: #0f0e9f;
  padding: 15.79px 19.5px;
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.marshal_link:hover {
  transform: translateY(-2px);
}
.marshal_container{
    display: flex;
    justify-content: center;

}

/* Animate in view - only horizontal translate */
.marshal_container.in-view .marshal_inner {
  opacity: 1;
  transform: none;
}

.marshal_container.in-view .marshal_left {
  opacity: 1;
  transform: translateX(0);
}

.marshal_container.in-view .marshal_right {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .marshal_inner {
    flex-direction: column;
    opacity: 1 !important;
    transform: none !important;
  }

  .marshal_left,
  .marshal_right {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    opacity: 1 !important;
    transform: none !important;
  }

  .marshal_heading {
    font-size: 28px;
    text-transform: none;
  }
}

@media (max-width: 480px) {
  .marshal_heading {
    font-size: 24px;
  }

  .marshal_paragraph {
    font-size: 14px;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
      .firstsecbrand_left, .firstsecbrand_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;

    }
      .blackcat_left, .blackcat_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;

        padding: 0 20px;
    }    .captain_left, .captain_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;

    }
      .diamond_left, .diamond_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;
    }
      .blackcat_left, .blackcat_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;
    }
      .marshal_left, .marshal_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;
    }
  .commander_left, .commander_right {
        flex: 1 1 100%;
        text-align: center;
        margin-bottom: 30px;
        opacity: 1 !important;
        transform: none !important;
        justify-content: center  !important;
        text-align: center  !important;
        align-items: center  !important;
        padding: 0 20px  !important;
    }
  
  
  
}
